From d3af4a58e87ce52256072ff9e47e9ed0c0e596c5 Mon Sep 17 00:00:00 2001 From: Montreal Date: Sat, 6 Apr 2024 05:30:20 +0300 Subject: [PATCH 1/3] Translate main pages --- frontend/src/components/Admonition.tsx | 9 +- frontend/src/components/Search.tsx | 8 +- frontend/src/components/forum/BackLink.tsx | 7 +- frontend/src/components/listing/ServerRow.tsx | 43 ++- frontend/src/components/site/Announcement.tsx | 44 ++- frontend/src/components/site/Footer.tsx | 24 +- .../src/components/site/LanguageSelect.tsx | 4 +- frontend/src/components/site/NavMenu.tsx | 26 +- .../src/components/translates/Translate.tsx | 28 ++ .../translates/translations/ar.json | 133 +++++++++ .../translates/translations/bn.json | 133 +++++++++ .../translates/translations/bs.json | 133 +++++++++ .../translates/translations/de.json | 133 +++++++++ .../translates/translations/el.json | 133 +++++++++ .../translates/translations/en.json | 133 +++++++++ .../translates/translations/es.json | 133 +++++++++ .../translates/translations/et.json | 133 +++++++++ .../translates/translations/fa.json | 133 +++++++++ .../translates/translations/fil.json | 133 +++++++++ .../translates/translations/fr.json | 133 +++++++++ .../translates/translations/hr.json | 133 +++++++++ .../translates/translations/hu.json | 133 +++++++++ .../translates/translations/id.json | 133 +++++++++ .../translates/translations/it.json | 133 +++++++++ .../translates/translations/ja.json | 133 +++++++++ .../translates/translations/ka.json | 133 +++++++++ .../translates/translations/lt.json | 133 +++++++++ .../translates/translations/nl.json | 133 +++++++++ .../translates/translations/no.json | 133 +++++++++ .../translates/translations/pl.json | 133 +++++++++ .../translates/translations/pt-BR.json | 133 +++++++++ .../translates/translations/ro.json | 133 +++++++++ .../translates/translations/ru.json | 133 +++++++++ .../translates/translations/sr.json | 133 +++++++++ .../translates/translations/th.json | 133 +++++++++ .../translates/translations/tr.json | 133 +++++++++ .../translates/translations/uk.json | 133 +++++++++ .../translates/translations/ur.json | 133 +++++++++ .../translates/translations/vi.json | 133 +++++++++ .../translates/translations/zh-cn.json | 133 +++++++++ .../translates/translations/zh-tw.json | 133 +++++++++ frontend/src/pages/docs/[[...path]].tsx | 32 +- frontend/src/pages/docs/search.tsx | 8 +- frontend/src/pages/index.tsx | 86 +++--- frontend/src/pages/partners.tsx | 36 ++- frontend/src/pages/servers/[ip].tsx | 274 ++++++++++-------- frontend/src/pages/servers/index.tsx | 78 +++-- 47 files changed, 4676 insertions(+), 287 deletions(-) create mode 100644 frontend/src/components/translates/Translate.tsx create mode 100644 frontend/src/components/translates/translations/ar.json create mode 100644 frontend/src/components/translates/translations/bn.json create mode 100644 frontend/src/components/translates/translations/bs.json create mode 100644 frontend/src/components/translates/translations/de.json create mode 100644 frontend/src/components/translates/translations/el.json create mode 100644 frontend/src/components/translates/translations/en.json create mode 100644 frontend/src/components/translates/translations/es.json create mode 100644 frontend/src/components/translates/translations/et.json create mode 100644 frontend/src/components/translates/translations/fa.json create mode 100644 frontend/src/components/translates/translations/fil.json create mode 100644 frontend/src/components/translates/translations/fr.json create mode 100644 frontend/src/components/translates/translations/hr.json create mode 100644 frontend/src/components/translates/translations/hu.json create mode 100644 frontend/src/components/translates/translations/id.json create mode 100644 frontend/src/components/translates/translations/it.json create mode 100644 frontend/src/components/translates/translations/ja.json create mode 100644 frontend/src/components/translates/translations/ka.json create mode 100644 frontend/src/components/translates/translations/lt.json create mode 100644 frontend/src/components/translates/translations/nl.json create mode 100644 frontend/src/components/translates/translations/no.json create mode 100644 frontend/src/components/translates/translations/pl.json create mode 100644 frontend/src/components/translates/translations/pt-BR.json create mode 100644 frontend/src/components/translates/translations/ro.json create mode 100644 frontend/src/components/translates/translations/ru.json create mode 100644 frontend/src/components/translates/translations/sr.json create mode 100644 frontend/src/components/translates/translations/th.json create mode 100644 frontend/src/components/translates/translations/tr.json create mode 100644 frontend/src/components/translates/translations/uk.json create mode 100644 frontend/src/components/translates/translations/ur.json create mode 100644 frontend/src/components/translates/translations/vi.json create mode 100644 frontend/src/components/translates/translations/zh-cn.json create mode 100644 frontend/src/components/translates/translations/zh-tw.json diff --git a/frontend/src/components/Admonition.tsx b/frontend/src/components/Admonition.tsx index f73657e44..998a2e4f9 100644 --- a/frontend/src/components/Admonition.tsx +++ b/frontend/src/components/Admonition.tsx @@ -1,4 +1,6 @@ import React from "react"; +import { useRouter } from 'next/router'; +const translateText = require('src/components/translates/Translate'); type AdType = { ifmClass: string; @@ -110,12 +112,15 @@ type Props = { const Admonition = ({ type, title, children }: Props) => { const adtype = types[type]; + const router = useRouter(); + const locale = router?.locale || "en"; // Use optional chaining to prevent accessing properties on null + return (
{adtype.svg} - {adtype.keyword} {title} + {translateText(locale, "Docs", adtype.keyword)} : {title}
{children}
@@ -123,4 +128,4 @@ const Admonition = ({ type, title, children }: Props) => { ); }; -export default Admonition; +export default Admonition; \ No newline at end of file diff --git a/frontend/src/components/Search.tsx b/frontend/src/components/Search.tsx index 377980913..8b78cee08 100644 --- a/frontend/src/components/Search.tsx +++ b/frontend/src/components/Search.tsx @@ -6,6 +6,9 @@ import { Hit, SearchResults } from "src/types/_generated_SearchResult"; const noExtension = (path: string) => path.replace(".md", ""); +import { useRouter } from 'next/router'; +const translateText = require('src/components/translates/Translate'); + const Search: FC = () => { const searchRef = useRef(null); const [query, setQuery] = useState(""); @@ -40,6 +43,9 @@ const Search: FC = () => { setActive(true); window.addEventListener("click", onClick); }, [onClick]); + + const router = useRouter(); + const locale = router?.locale || "en"; return ( <> @@ -48,7 +54,7 @@ const Search: FC = () => { className="search" onChange={onChange} onFocus={onFocus} - placeholder="Search..." + placeholder={translateText(locale, "Docs", "Search...")} type="text" value={query} /> diff --git a/frontend/src/components/forum/BackLink.tsx b/frontend/src/components/forum/BackLink.tsx index 9c2a2dc0d..7e52c2056 100644 --- a/frontend/src/components/forum/BackLink.tsx +++ b/frontend/src/components/forum/BackLink.tsx @@ -4,16 +4,21 @@ import { Link } from "@chakra-ui/layout"; import NextLink from "next/link"; import { FC } from "react"; +const translateText = require('src/components/translates/Translate'); +import { useRouter } from 'next/router'; + type Props = { to: string; }; const BackLink: FC = ({ to }) => { + const router = useRouter(); + const locale = router.locale || 'en'; return ( diff --git a/frontend/src/components/listing/ServerRow.tsx b/frontend/src/components/listing/ServerRow.tsx index 757099192..dfabe4611 100644 --- a/frontend/src/components/listing/ServerRow.tsx +++ b/frontend/src/components/listing/ServerRow.tsx @@ -17,23 +17,31 @@ import { useIsAdmin } from "src/auth/hooks"; import { useDeleteServer } from "src/components/listing/hooks"; import { Essential } from "src/types/_generated_Server"; +const translateText = require('src/components/translates/Translate'); +import { useRouter } from 'next/router'; + type CopyBadgeProps = { text: string }; const CopyBadge: FC = ({ text }) => { const { onCopy, hasCopied } = useClipboard(text); + + const router = useRouter(); + const locale = router.locale || 'en'; + return ( - - - {text} - - - - ); + + + {text} + + + +); + }; type ServerRowProps = { server: Essential }; @@ -45,6 +53,9 @@ const ServerRow: FC = ({ server, sx }) => { ); const admin = useIsAdmin(); + const router = useRouter(); + const locale = router.locale || 'en'; + return ( @@ -66,7 +77,7 @@ const ServerRow: FC = ({ server, sx }) => { partner server = ({ server, sx }) => { open.mp server = ({ server, sx }) => { > {server.pc}/{server.pm} - players + {translateText(locale, "Servers", "players")} diff --git a/frontend/src/components/site/Announcement.tsx b/frontend/src/components/site/Announcement.tsx index 659a42c3c..510ea33af 100644 --- a/frontend/src/components/site/Announcement.tsx +++ b/frontend/src/components/site/Announcement.tsx @@ -1,7 +1,14 @@ import { Box, Heading, Text, useColorModeValue } from "@chakra-ui/react"; import React, { FC } from "react"; +const translateText = require('src/components/translates/Translate'); +import { useRouter } from 'next/router'; + const Announcement: FC = () => { + + const router = useRouter(); + const locale = router.locale || 'en'; + return ( { borderRadius="0.5em" backgroundColor={useColorModeValue("blue.50", "gray.800")} > - - open.mp launcher is out now and open source! - - - - open.mp released its own launcher to browse servers using a reliable - internet list and join your favorite servers!{" "} - - check out our github repository - {" "} -
- - Download it from here. - {" "} -
+ + + + {translateText(locale, "Announcements", "open.mp launcher is out now and open source!")} + + + + {translateText(locale, "Announcements", `open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!`)} + {' '} + + {translateText(locale, "Announcements", "check out our github repository")} + + {' '} +
+ + {translateText(locale, "Announcements", "Download it from here.")} + + {' '} +
+ + +
); diff --git a/frontend/src/components/site/Footer.tsx b/frontend/src/components/site/Footer.tsx index de86e657c..f54c5d347 100644 --- a/frontend/src/components/site/Footer.tsx +++ b/frontend/src/components/site/Footer.tsx @@ -1,6 +1,10 @@ import { Box, useColorModeValue } from "@chakra-ui/react"; import { useEffect, useState } from "react"; +const translateText = require('src/components/translates/Translate'); +import { useRouter } from 'next/router'; + + interface FooterItem { url?: string; imageUrl?: string; @@ -81,6 +85,9 @@ const Footer: React.FC = () => { setFormattedItems(updatedItems); }, []); + const router = useRouter(); + const locale = router.locale || 'en'; + return (
@@ -97,8 +104,10 @@ const Footer: React.FC = () => { }} /> fully backwards compatible with San Andreas Multiplayer." }]} + heading={translateText(locale, "Footer", "About us")} + items={[ + { text: translateText(locale, "Footer", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.") } + ]} alignment="center" maxWidth={'390px'} // Max width conditionally applied style={{ @@ -112,9 +121,10 @@ const Footer: React.FC = () => { {!isMobile && (
fully backwards compatible with San Andreas Multiplayer." }]} - alignment="center" + heading={translateText(locale, "Footer", "About us")} + items={[ + { text: translateText(locale, "Footer", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.") } + ]} alignment="center" maxWidth={'390px'} // Max width conditionally applied style={{ whiteSpace: 'normal', @@ -142,12 +152,12 @@ const Footer: React.FC = () => { )}
{ const { locale, locales, pathname, asPath, query, push } = useRouter(); const { isOpen, onOpen, onClose } = useDisclosure(); @@ -81,7 +83,7 @@ const LanguageSelect = forwardRef(({ title }: Props, ref) => { - Change language from {getLanguageName(locale)} + {translateText(locale, "General", `Change language from ${getLanguageName(locale)}`)} {/* Conditionally apply flexbox layout for mobile screens */} diff --git a/frontend/src/components/site/NavMenu.tsx b/frontend/src/components/site/NavMenu.tsx index cfffd9fd4..0eee35365 100644 --- a/frontend/src/components/site/NavMenu.tsx +++ b/frontend/src/components/site/NavMenu.tsx @@ -11,6 +11,8 @@ import { useRouter } from "next/router"; import NextLink from "next/link"; import LanguageSelect from "./LanguageSelect"; +const translateText = require('src/components/translates/Translate'); + export type NavItem = { name: string; path: string; @@ -124,14 +126,20 @@ const NavMenu: FC = ({ items, route }) => { type NavLinkProps = { item: NavItem; current: boolean }; -const NavLink: FC = ({ item, current }) => ( - - - - - -); +const NavLink: FC = ({ item, current }) => { + const router = useRouter(); + const locale = router.locale || 'en'; // Define locale using useRouter + + return ( + + + + + + ); +}; export default NavMenu; diff --git a/frontend/src/components/translates/Translate.tsx b/frontend/src/components/translates/Translate.tsx new file mode 100644 index 000000000..e25c47a38 --- /dev/null +++ b/frontend/src/components/translates/Translate.tsx @@ -0,0 +1,28 @@ +const translateText = (locale, group, key, placeholders) => { + if (locale === 'en' && !placeholders) { + return key; + } + + const plainText = key.replace(/<[^>]+>/g, ''); + + let translation = {}; + try { + translation = require(`./translations/${locale}.json`); + } catch (error) { + return translateText('en', group, key, placeholders); + } + + const translatedText = translation[group]?.[plainText] || plainText; + + // Replace placeholders with corresponding params if placeholders are provided + let replacedText = translatedText; + if (placeholders && typeof placeholders === 'object') { + Object.entries(placeholders).forEach(([placeholder, value]) => { + replacedText = replacedText.replace(new RegExp(`{${placeholder}}`, 'g'), value); + }); + } + + return replacedText; +}; + +module.exports = translateText; diff --git a/frontend/src/components/translates/translations/ar.json b/frontend/src/components/translates/translations/ar.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/ar.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/bn.json b/frontend/src/components/translates/translations/bn.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/bn.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/bs.json b/frontend/src/components/translates/translations/bs.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/bs.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/de.json b/frontend/src/components/translates/translations/de.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/de.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/el.json b/frontend/src/components/translates/translations/el.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/el.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/en.json b/frontend/src/components/translates/translations/en.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/en.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/es.json b/frontend/src/components/translates/translations/es.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/es.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/et.json b/frontend/src/components/translates/translations/et.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/et.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/fa.json b/frontend/src/components/translates/translations/fa.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/fa.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/fil.json b/frontend/src/components/translates/translations/fil.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/fil.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/fr.json b/frontend/src/components/translates/translations/fr.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/fr.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/hr.json b/frontend/src/components/translates/translations/hr.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/hr.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/hu.json b/frontend/src/components/translates/translations/hu.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/hu.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/id.json b/frontend/src/components/translates/translations/id.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/id.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/it.json b/frontend/src/components/translates/translations/it.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/it.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/ja.json b/frontend/src/components/translates/translations/ja.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/ja.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/ka.json b/frontend/src/components/translates/translations/ka.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/ka.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/lt.json b/frontend/src/components/translates/translations/lt.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/lt.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/nl.json b/frontend/src/components/translates/translations/nl.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/nl.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/no.json b/frontend/src/components/translates/translations/no.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/no.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/pl.json b/frontend/src/components/translates/translations/pl.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/pl.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/pt-BR.json b/frontend/src/components/translates/translations/pt-BR.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/pt-BR.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/ro.json b/frontend/src/components/translates/translations/ro.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/ro.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/ru.json b/frontend/src/components/translates/translations/ru.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/ru.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/sr.json b/frontend/src/components/translates/translations/sr.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/sr.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/th.json b/frontend/src/components/translates/translations/th.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/th.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/tr.json b/frontend/src/components/translates/translations/tr.json new file mode 100644 index 000000000..5235df8ed --- /dev/null +++ b/frontend/src/components/translates/translations/tr.json @@ -0,0 +1,133 @@ +{ + "General": { + "Back": "Geri", + "second": "saniye", + "seconds": "saniye", + "hour": "saat", + "hours": "saniye", + "minute": "dakika", + "minutes": "dakika", + "day": "gün", + "days": "gün", + "month": "ay", + "months": "ay", + "year": "yıl", + "years": "yıl", + "Recently": "Yakın zaman", + + "search-results": "{total} arama sonucu", + "Change language from Türkçe": "Dili Türkçe dilinden değiştir", + + "404 - Page Not Found" : "404 - Sayfa Bulunamadı" + }, + + "Index": { + "Getting Started": "Hemen başla", + "Fully backwards compatible with existing scripts and clients": "Mevcut scriptler ve istemcilerle tamamen geriye dönük uyumludur", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Elinizde eski bir AMX var mı? Hemen open.mp sunucusuna yükleyin ve SA:MP istemcisinde arkadaşlarınızla oynamaya katılın. Kodunuzu geliştirmek istediğinizde ise bizimkini deneyin...", + "New and improved scripting system": "Yeni ve geliştirilmiş komut dosyası sistemi", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "Pawn ile devam ettik, ancak kodunuzu daha sağlam hale getirmek için tasarlanmış yeni bir derleyici ve sunucuyu ve istemciyi manipüle etmek için daha fazla işlev var. Eğer bu yeterli değilse...", + "Extensible C++ API": "Genişletilebilir C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Pawn'da mevcut olan tüm sunucu özelliklerine ve C++ kütüphane ve çatıları evrenine erişim sağlayın. Bunu öğrendikten sonra, sunucuyu geliştirmeye neden yardımcı olmayasınız?", + "Community driven development": "Topluluk odaklı geliştirme", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "Sunucu tamamen açık kaynaklıdır ve büyük veya küçük tüm katkıları memnuniyetle karşılıyoruz. Bir sonraki sürümü yazmaya yardımcı olun veya bulduğunuz herhangi bir sorunu paylaşın; bizim çabalarımıza rağmen...", + "Age old SAMP bugs fixed": "Eskiden beri bilinen SAMP hataları düzeltildi", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Birçok SA:MP hatası, iyi bilinen ve belirsiz olan, düzeltildi. Artık hantal çözümler yok; artık topluluk hata düzeltme projeleri yok; şimdi tüm uygun araçlar elinizde.", + "Learn about the improvements": "Geliştirmeleri öğrenin", + "Visit the GitHub repo": "GitHub deposunu ziyaret edin", + "Read the blog post": "Blog yazısını okuyun", + "Download open.mp launcher": "open.mp istemcisini indir", + "Download open.mp (server)": "open.mp indir (sunucu)", + "Ready to get started?": "Başlamaya hazır mısınız?", + "open.mp is released!": "open.mp yayınlandı!", + "Updates & Features" : "Güncellemeler ve Özellikler", + "What is improved and new?" : "Neler iyileştirildi ve ne yenilikler var?", + "Documentation": "Dokümasyon", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "Grand Theft Auto: San Andreas için tamamen geriye dönük ve San Andreas Multiplayer ile uyumlu çok oyunculu mod." + }, + + "NavBar": { + "FAQ": "SSS", + "Home": "Ana sayfa", + "Forums": "Forum", + "Servers": "Sunucular", + "Partners": "Partnerler", + "Docs": "Dokümasyonlar" + }, + + "Footer": { + "About us": "Hakkımızda", + "More": "Daha fazla", + "Community": "Topluluk", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "Grand Theft Auto: San Andreas için tamamen geriye dönük ve San Andreas Multiplayer ile uyumlu çok oyunculu mod." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "open.mp başlatıcısı şimdi kullanımda ve açık kaynak halde!", + "check out our github repository": "GitHub deposuna göz atın", + "Download it from here.": "Buradan indir.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp, güvenilir bir internet listesini kullanarak sunucuları göz atmanızı ve favori sunucularınıza katılmanızı sağlayan kendi başlatıcısını piyasaya sürdü!" + }, + + "Servers": { + "Servers": "Sunucular", + "Relevance": "Uygunluk", + "Players": "Oyuncu ", + "Sort by": "Sırala", + "Search by IP or Name": "İsme veya IP'ye göre ara", + "Add server": "Sunucu ekle", + "IP or Domain": "Alan adı veya IP", + "IP/Domain": "Alan adı/IP", + "Add": "Ekle", + "IP must be in format ip:port": "ip:port formatında olmalıdır.", + "Show empty servers": "Boş sunucuları göster", + "Show only open.mp servers": "Sadece open.mp sunucularını göster", + "Show only partners": "Sadece partnerleri göster", + "servers-stats": "sunucu başına ortalama {averagePlayers} oyuncu ile {serverCount} sunucuda {totalPlayers} oyuncu.", + "server-sumbitted": "{serverCodeHn} şu anda bekleme listemize eklendi. Eğer maksimum 48 saat sonra kullanılabilir hale gelmezse, Discord üzerinden bizimle iletişime geçebilirsiniz!", + "server-submissionfail": "Açıklama: {responseStatusText} : {responseError}", + "Server Submitted!": "Sunucu alındı!", + "Submission failed!": "Sunucu alınamadı!", + "The specified IP did not resolve to a SA-MP server.": "Belirtilen IP, SA-MP sunucusuna çözümlenemedi.", + "no address specified": "Adres belirtilmemiş.", + "failed to upsert server information": "Sunucu bilgilerini güncelleme başarısız oldu.", + "Has partnership!": "Bu sunucu partner!", + "open.mp server": "open.mp sunucusu", + "COPY": "KOPYALA", + "COPIED": "KOPYALANDI", + "players": "oyuncu", + "This server has no description": "Bu sunucunun bir açıklaması yok.", + "Players Online": "Aktif Oyuncular", + "Mod version": "Mod Sürümü", + "Language": "Dil", + "Rule": "Kural", + "Value": "Değer", + "Quick Join": "Katıl", + "server-lastupdate": "{lastUpdateAmount} {lastUpdateUnit} önce güncellendi" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "open.mp beta testinde bize yardımcı olan ve hataları bildiren sunucular burada listelenmektedir. Sizde kendi sunucunuzu kullanarak bize yardımcı olabilir ve hataları bulma konusunda yardımcı olabilirsiniz; Sunucularınızı discord'umuzda bize bildirin, böylece burada listeleriz.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Topluluğumuza katkıda bulunanlar, gelecekte hizmetimizi halka açık hale getirdiğimizde ve sunucu listemiz hazır olduğunda kalıcı avantajlara sahip olacaklar.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Not: Partner programı, söz verdiğimiz gibi geçici olarak kapalıdır. Bir slot ayıran sunucular hala katılabilir, ancak şu anda yeni başvuruları kabul etmiyoruz. Hala ilgileniyorsanız, sorularınızı discord kanalımızda sorabilirsiniz, ancak listeye yeni giriş yollarıyla ilgili bir soruysa, henüz bir planımız yok." + }, + + "Docs": { + "Not Translated" : "Henüz çevirilmedi", + "Help Needed" : "Yardım edebilirsin", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "Bu sayfa tarayıcınız için istenen dilde çevrilmedi. İngilizce içeriği gösteriliyor.", + "If you want to contribute a translation for this page then please click here." : "Eğer bu sayfaya bir çeviri katkısı yapmak istiyorsanız lütfen buraya tıklayın.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "Bu wiki, devam eden bir topluluk çabasının sonucudur — yardım ettiğiniz için hepinize teşekkür ederiz!", + "If you want to provide changes to this page then please click here." : "Bu sayfada değişiklik yapmak istiyorsanız lütfen buraya tıklayın.", + + "Search..." : "Ara...", + + "note" : "not", + "tip" : "ipucu", + "warning" : "uyarı", + "caution" : "dikkat", + "important" : "önemli" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/uk.json b/frontend/src/components/translates/translations/uk.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/uk.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/ur.json b/frontend/src/components/translates/translations/ur.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/ur.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/vi.json b/frontend/src/components/translates/translations/vi.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/vi.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/zh-cn.json b/frontend/src/components/translates/translations/zh-cn.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/zh-cn.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/components/translates/translations/zh-tw.json b/frontend/src/components/translates/translations/zh-tw.json new file mode 100644 index 000000000..c71afa1f7 --- /dev/null +++ b/frontend/src/components/translates/translations/zh-tw.json @@ -0,0 +1,133 @@ +{ + "Index": { + "Getting Started": "Getting started", + "Fully backwards compatible with existing scripts and clients": "Fully backwards compatible with existing scripts and clients", + "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...": "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + "New and improved scripting system": "New and improved scripting system", + "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...": "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", + "Extensible C++ API": "Extensible C++ API", + "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...": "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + "Community driven development": "Community driven development", + "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...": "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + "Age old SAMP bugs fixed": "Age old SAMP bugs fixed", + "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.": "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + "Learn about the improvements": "Learn about the improvements", + "Visit the GitHub repo": "Visit the GitHub repo", + "Read the blog post": "Read the blog post", + "Download open.mp launcher": "Download open.mp launcher", + "Download open.mp (server)": "Download open.mp (server)", + "Ready to get started?": "Ready to get started?", + "open.mp is released!": "open.mp is released!", + "Updates & Features" : "Updates & Features", + "What is improved and new?" : "What is improved and new?", + "Documentation": "Documentatio", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "NavBar": { + "FAQ": "FAQ", + "Home": "Home", + "Forums": "Forums", + "Servers": "Servers", + "Partners": "Partners", + "Docs": "Docs" + }, + + "Footer": { + "About us": "About us", + "More": "More", + "Community": "Community", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + }, + + "Announcements": { + "The open.mp launcher is out now and open source!": "The open.mp launcher is out now and open source!", + "check out our github repository": "check out our github repository", + "Download it from here.": "Download it from here.", + "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!": "open.mp released its own launcher to browse servers using a reliable internet list and join your favorite servers!" + }, + + "Servers": { + "Servers": "Servers", + "Relevance": "Relevance", + "Players": "Players ", + "Sort by": "Sort by", + "Search by IP or Name": "Search by IP or Name", + "Add server": "Add server", + "IP or Domain": "IP or Domain", + "IP/Domain": "AIP/Domain", + "Add": "Add", + "IP must be in format ip:port": "IP must be in format ip:port", + "Show empty servers": "Show empty servers", + "Show only open.mp servers": "Show only open.mp servers", + "Show only partners": "Show only partners", + "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", + "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-submissionfail": "Status: {responseStatusText} : {responseError}", + "Server Submitted!": "Server Submitted!", + "Submission failed!": "Submission failed!", + "The specified IP did not resolve to a SA-MP server.": "The specified IP did not resolve to a SA-MP server.", + "no address specified": "no address specified", + "failed to upsert server information": "failed to upsert server information", + "Has partnership!": "Has partnership!", + "open.mp server": "open.mp server", + "COPY": "COPY", + "COPIED": "COPIED", + "players": "players", + "This server has no description": "This server has no description.", + "Players Online": "Players Online", + "Mod version": "Mod version", + "Language": "Language", + "Rule": "Rule", + "Value": "Value", + "Quick Join": "Quick Join", + "server-lastupdate": "Last updated {lastUpdateAmount} {lastUpdateUnit} ago" + }, + + "Partners": { + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", + "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", + "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." + }, + + "Docs": { + "Not Translated" : "Not Translated", + "Help Needed" : "Help Needed", + "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback." : "This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.", + "If you want to contribute a translation for this page then please click here." : "If you want to contribute a translation for this page then please click here.", + "This wiki is the result of an ongoing community effort — thank you all for helping!" : "This wiki is the result of an ongoing community effort — thank you all for helping!", + "If you want to provide changes to this page then please click here." : " If you want to provide changes to this page then please click here.", + + "Search..." : "Search...", + + "note" : "note", + "tip" : "tip", + "warning" : "warning", + "caution" : "caution", + "important" : "important" + }, + + "General": { + "Back": "Back", + "second": "second", + "seconds": "seconds", + "hour": "hour", + "hours": "hours", + "minute": "minute", + "minutes": "minutes", + "day": "day", + "days": "days", + "month": "month", + "months": "months", + "year": "year", + "years": "years", + "Recently": "Recently", + + "search-results": "{total} search results", + "Change language from English": "Change language from English", + + "404 - Page Not Found" : "404 - Page Not Found" + } + } + \ No newline at end of file diff --git a/frontend/src/pages/docs/[[...path]].tsx b/frontend/src/pages/docs/[[...path]].tsx index 94b6d398a..504b291e4 100644 --- a/frontend/src/pages/docs/[[...path]].tsx +++ b/frontend/src/pages/docs/[[...path]].tsx @@ -13,6 +13,9 @@ import { hydrate } from "src/mdx-helpers/csr"; import { DocsSidebar } from "src/components/Sidebar"; import Admonition from "src/components/Admonition"; +import { useRouter } from 'next/router'; +const translateText = require('src/components/translates/Translate'); + type Props = { source?: any; error?: string; @@ -53,31 +56,22 @@ const Page = (props: Props) => { ); } + const router = useRouter(); + const locale = router?.locale || "en"; + const contributeCallToAction = props.fallback ? ( - -

- This page has not been translated into the language that your browser - requested yet. The English content is being shown as a fallback. -

-

- If you want to contribute a translation for this page then please click{" "} - here. -

+ +

+

here.`, { editLink: props.ghUrl }) }}>

) : ( - // TODO: would we want to translate this into the locale selected? - -

- This wiki is the result of an ongoing community effort — thank you all - for helping! -

-

- If you want to provide changes to this page then please click{" "} - here. -

+ +

+

here.`, { editLink: props.ghUrl }) }}>

); + return (
= (props) => { const { query, results } = props.data; + const router = useRouter(); + const locale = router.locale || "en"; + return (
{query && ( <> -

{results?.total} Search Results

+

{translateText(locale, "Search", "search-results", { total: results?.total })}

)} diff --git a/frontend/src/pages/index.tsx b/frontend/src/pages/index.tsx index 283775ca6..50843751a 100644 --- a/frontend/src/pages/index.tsx +++ b/frontend/src/pages/index.tsx @@ -29,6 +29,9 @@ import React from "react"; import Roads from "src/components/icons/Roads"; import heroStyles from "../styles/Hero.module.css"; +import { useRouter } from 'next/router'; +const translateText = require('src/components/translates/Translate'); + const DownloadButton = (props: { link: string; title: string; tooltip: string}) => { return ( @@ -55,6 +58,10 @@ const DownloadButton = (props: { link: string; title: string; tooltip: string}) }; const DocumentationButton = () => { + + const router = useRouter(); + const locale = router.locale || "en"; + return ( @@ -74,7 +81,7 @@ const DocumentationButton = () => { transition: "outline 0.3s", }} > - Documentation + {translateText(locale, "Index", "Documentation")} @@ -84,50 +91,50 @@ const DocumentationButton = () => { const Home = () => { const { colorMode } = useColorMode(); + const router = useRouter(); + const locale = router.locale || "en"; + const features = [ { - heading: "Fully backwards compatible with existing scripts and clients", - bodyText: - "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our...", + heading: translateText(locale, "Index", "Fully backwards compatible with existing scripts and clients"), + bodyText: translateText(locale, "Index", "Got an old AMX lying about? Load it up on the open.mp server straight out of the box and join your friends playing on the SA:MP client. Then when you want to enhance your code try our..."), buttonLink: "/docs", - buttonText: "Getting Started", + buttonText: translateText(locale, "Index", "Getting Started"), img: "/images/assets/f1.png", imgAlt: "open.mp logo", }, { - heading: "New and improved scripting system", - bodyText: - "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an...", - buttonLink: - "https://github.com/openmultiplayer/omp-stdlib/#openmp-includes", - buttonText: "Learn about the improvements", + heading: translateText(locale, "Index", "New and improved scripting system"), + bodyText:translateText(locale, "Index", "We've stuck with pawn, but with a new compiler engineered to make your code more robust, and more functions to manipulate the server and client. If that's still not enough there's an..."), + buttonLink:"https://github.com/openmultiplayer/omp-stdlib/#openmp-includes", + buttonText: translateText(locale, "Index", "Learn about the improvements"), img: "/images/assets/f5.png", imgAlt: "pawn logo", }, { - heading: "Extensible C++ API", + heading: translateText(locale, "Index", "Extensible C++ API"), bodyText: - "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our...", + translateText(locale, "Index", "Get access to all the server features available in pawn, plus the universe of C++ libraries and frameworks. Once you've mastered this why not help improve the server via our..."), buttonLink: "/docs", - buttonText: "Getting Started", + buttonText: translateText(locale, "Index", "Getting Started"), img: "/images/assets/f4.png", imgAlt: "C++ logo", }, { - heading: "Community driven development", + heading: translateText(locale, "Index", "Community driven development"), bodyText: - "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have...", + translateText(locale, "Index", "The server is fully open source, and we welcome all contributions big or small. Help write the next version, or just post about any problems you find; despite our attempts to have..."), buttonLink: "https://github.com/openmultiplayer/open.mp", - buttonText: "Visit the GitHub repo", + buttonText: translateText(locale, "Index", "Visit the GitHub repo"), img: "/images/assets/f2.png", imgAlt: "Github stats illustration", }, { - heading: "Age old SAMP bugs fixed", + heading: translateText(locale, "Index", "Age old SAMP bugs fixed"), bodyText: - "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now.", + translateText(locale, "Index", "Many SA:MP bugs, well known and obscure, have been fixed. No more hacky work-arounds; no more community bug-fix projects; you have all the proper tools in your hands now."), buttonLink: "/blog", - buttonText: "Read the blog post", + buttonText: translateText(locale, "Index", "Read the blog post"), img: "/images/assets/f3.png", imgAlt: "pawn code screen", }, @@ -174,6 +181,7 @@ const Home = () => { ]; return ( + open.mp | Open Multiplayer @@ -217,25 +225,22 @@ const Home = () => { fontWeight="500" textAlign={{ base: "center", md: "left" }} maxW="30em" - > - A multiplayer mod for Grand Theft Auto: San Andreas that is{" "} - - fully backwards compatible - {" "} - with{" "} - San Andreas Multiplayer - . - + dangerouslySetInnerHTML={{ __html: translateText( + locale, + "Index", + "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." + ) }} + /> @@ -294,30 +299,29 @@ const Home = () => { - Updates & Features + {translateText(locale, "Index", "Updates & Features")} - What is improved and new? + {translateText(locale, "Index", "What is improved and new?")} {features.map((feature, index) => ( ))} - - Ready to get started? + {translateText(locale, "Index", "Ready to get started?")} > => { @@ -29,6 +32,10 @@ const List = ({ data }: { data: Array }) => { }; const Page = () => { + + const router = useRouter(); + const locale = router.locale || "en"; + const { data, error } = useSWR, TypeError>( API_SERVERS, getServers @@ -47,28 +54,19 @@ const Page = () => { description="open.mp partners and beta testers" /> - Partners (BETA TESTERS) + {translateText(locale, "Partners", "Partners (BETA TESTERS)")} +
+ discord so we can list them here.") }} /> +
+

+ {translateText(locale, "Partners", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.")} +

- Servers helping us in beta testing by running open.mp and reporting - bugs and issues are listed here. You can do the same by running your - server using open.mp and help us with finding bugs and issues; Then - tell us about your servers on{" "} - our discord so we can list them - here. -

-

- Those who are contributing to our community will have permanent perks - in future when we are releasing for public use and when our server - listing is ready. -

-

- - Note: Partnership program is temporarily closed as we promised. - Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, - you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet. - + + {translateText(locale, "Partners", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet.")} +

diff --git a/frontend/src/pages/servers/[ip].tsx b/frontend/src/pages/servers/[ip].tsx index 0866c904a..6ec2306c5 100644 --- a/frontend/src/pages/servers/[ip].tsx +++ b/frontend/src/pages/servers/[ip].tsx @@ -38,8 +38,14 @@ type Props = { initialData?: All; }; +const translateText = require('src/components/translates/Translate'); + type ServerLinkProps = { address: string }; const ServerLink: FC = ({ address }) => { + + const router = useRouter(); + const locale = router.locale || "en"; + return ( ); }; -const Info = ({ data }: { data: All }) => ( -
- - - - - - - - {data.core.gm} - - - {data.dm ?? data.ip} - - - - - { + const router = useRouter(); + const locale = router.locale || "en"; + + const distance = formatDistance(new Date(data.lastUpdated), Date.now()); + const [amount, unit] = distance.split(' '); + + let lastUpdateUnitTranslation; + if (['second', 'seconds', 'minute', 'minutes', 'day', 'days', 'hour', 'hours', 'months', 'month', 'years', 'year'].includes(unit.toLowerCase())) { + lastUpdateUnitTranslation = translateText(locale, 'General', unit.toLowerCase()); + } else { + lastUpdateUnitTranslation = translateText(locale, 'General', 'Recently'); + } + + return ( +
+ + + + + + - {data.core.hn} - - - - - {data.description ? ( - {data.description} - ) : ( - This server has no description - )} - - - - - - Players Online - - {data.core.pc}/{data.core.pm} - - - - - Mod Version - {data.core.vn} - - - - Language - {data.core.la} - - + + {data.core.gm} + + + {data.dm ?? data.ip} + + + + {data.core.hn} + + + - {data.ru !== undefined ? ( - - - - - - - - - {Object.keys(data.ru).map((v: string) => ( - - - - - ))} - -
RuleValue
{v}{(data.ru as any)[v]}
- ) : null} + {data.description ? ( + {data.description} + ) : ( + {translateText(locale, "Servers", "This server has no description.")} + )}
-
- - - + + + + + {translateText(locale, "Servers", "Players Online")} + + {data.core.pc}/{data.core.pm} + + + + + {translateText(locale, "Servers", "Mod Version")} + {data.core.vn} + + + + {translateText(locale, "Servers", "Language")} + {data.core.la} + + + + + + {data.ru !== undefined ? ( + + + + + + + + + {Object.keys(data.ru).map((v: string) => ( + + + + + ))} + +
{translateText(locale, "Servers", "Rule")}{translateText(locale, "Servers", "Value")}
{v}{(data.ru as any)[v]}
+ ) : null} +
+
+ + + - - - - -
-
-); + +
+ + + +
+ ); +}; const Content = ({ ip, initialData }: Props) => { const { data, error } = useSWR(ip, getServer, { diff --git a/frontend/src/pages/servers/index.tsx b/frontend/src/pages/servers/index.tsx index 6bdd4bf5d..c06460263 100644 --- a/frontend/src/pages/servers/index.tsx +++ b/frontend/src/pages/servers/index.tsx @@ -34,6 +34,9 @@ import { API_ADDRESS } from "src/config"; import { All, Essential } from "src/types/_generated_Server"; import useSWR from "swr"; +const translateText = require('src/components/translates/Translate'); +import { useRouter } from 'next/router'; + const API_SERVERS = `${API_ADDRESS}/servers/`; const getServers = async (): Promise> => { @@ -88,18 +91,18 @@ const dataToList = (data: Essential[], q: Query) => { )(items); }; -const Stats = ({ stats: { players, servers } }: { stats: Stats }) => { +const Stats = ({ stats: { players, servers }, locale }: { stats: Stats, locale: string }) => { return (
- {players} players on {servers} servers - with an average of {(players / servers).toFixed(1)}{" "} - players per server. + {translateText(locale, "Servers", "servers-stats", { averagePlayers: (players / servers).toFixed(1), serverCount: servers, totalPlayers: players })}
); }; + + const AddServer = ({ onAdd }: { onAdd: (server: All) => void }) => { const [value, setValue] = useState(""); @@ -115,25 +118,34 @@ const AddServer = ({ onAdd }: { onAdd: (server: All) => void }) => { body: JSON.stringify({ ip: value }), }); NProgress.inc(); + if (response.status === 200) { const server = (await response.json()) as All; onAdd(server); toast.notify( - `${server.core.hn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!`, + translateText(locale, 'Servers', 'server-sumbitted', { serverCodeHn: server.core.hn }), + { + title: translateText(locale, 'Servers', 'Server Submitted!') + } + ); + + } else { + const error = (await response.json()) as { error: string }; + toast.notify( + translateText(locale, 'Servers', 'server-submissionfail', { responseStatusText: translateText(locale, 'Servers', response.statusText), responseError: translateText(locale, 'Servers', error?.error) }), { - title: "Server Submitted!", + title: translateText(locale, 'Servers', 'Submission failed!'), + type: "error", } ); - } else { - const error = (await response.json()) as { error: string }; - toast.notify(`Status ${response.statusText}: ${error?.error}`, { - title: "Submission failed!", - type: "error", - }); } NProgress.done(); + }; + const router = useRouter(); + const locale = router.locale || 'en'; + return ( void }) => { setValue(e.target.value)} />
@@ -171,26 +183,30 @@ const List = ({ const [sort, setSort] = useState("relevance"); const { isOpen, onOpen, onClose } = useDisclosure(); + const router = useRouter(); + const locale = router.locale || 'en'; + return ( <>
} > - Add server + {translateText(locale, "Servers", "Add server")} - Add a server + {translateText(locale, "Servers", "Add server")} - IP or Domain + {translateText(locale, "Servers", "IP or Domain")} { onAdd(server); onClose(); }} /> - - IP must be in format ip:port - + ip:port") }}/> @@ -234,23 +249,24 @@ const List = ({ isChecked={showEmpty} onChange={(e) => setShowEmpty(e.target.checked)} > - Show empty servers + {translateText(locale, "Servers", "Show empty servers")} setShowOmpOnly(e.target.checked)} > - Show only open.mp servers + {translateText(locale, "Servers", "Show only open.mp servers")} setShowPartnersOnly(e.target.checked)} > - Show only partners + {translateText(locale, "Servers", "Show only partners")}
- + + {dataToList(data, { @@ -266,6 +282,10 @@ const List = ({ }; const Page = () => { + + const router = useRouter(); + const locale = router.locale || 'en'; + const { data, error, mutate } = useSWR, TypeError>( API_SERVERS, getServers @@ -284,7 +304,7 @@ const Page = () => { description="Live indexing and data for all SA-MP servers." /> - Servers + {translateText(locale, "Servers", "Servers")} Date: Sun, 7 Apr 2024 16:48:24 +0300 Subject: [PATCH 2/3] Fix JSON File --- frontend/src/components/translates/translations/ar.json | 8 ++++---- frontend/src/components/translates/translations/bn.json | 8 ++++---- frontend/src/components/translates/translations/bs.json | 8 ++++---- frontend/src/components/translates/translations/de.json | 8 ++++---- frontend/src/components/translates/translations/el.json | 8 ++++---- frontend/src/components/translates/translations/en.json | 8 ++++---- frontend/src/components/translates/translations/es.json | 8 ++++---- frontend/src/components/translates/translations/et.json | 8 ++++---- frontend/src/components/translates/translations/fa.json | 8 ++++---- frontend/src/components/translates/translations/fil.json | 8 ++++---- frontend/src/components/translates/translations/fr.json | 8 ++++---- frontend/src/components/translates/translations/hr.json | 8 ++++---- frontend/src/components/translates/translations/hu.json | 8 ++++---- frontend/src/components/translates/translations/id.json | 8 ++++---- frontend/src/components/translates/translations/it.json | 8 ++++---- frontend/src/components/translates/translations/ja.json | 8 ++++---- frontend/src/components/translates/translations/ka.json | 8 ++++---- frontend/src/components/translates/translations/lt.json | 8 ++++---- frontend/src/components/translates/translations/nl.json | 8 ++++---- frontend/src/components/translates/translations/no.json | 8 ++++---- frontend/src/components/translates/translations/pl.json | 8 ++++---- .../src/components/translates/translations/pt-BR.json | 8 ++++---- frontend/src/components/translates/translations/ro.json | 8 ++++---- frontend/src/components/translates/translations/ru.json | 8 ++++---- frontend/src/components/translates/translations/sr.json | 8 ++++---- frontend/src/components/translates/translations/th.json | 8 ++++---- frontend/src/components/translates/translations/tr.json | 4 ++-- frontend/src/components/translates/translations/uk.json | 8 ++++---- frontend/src/components/translates/translations/ur.json | 8 ++++---- frontend/src/components/translates/translations/vi.json | 8 ++++---- .../src/components/translates/translations/zh-cn.json | 8 ++++---- .../src/components/translates/translations/zh-tw.json | 8 ++++---- 32 files changed, 126 insertions(+), 126 deletions(-) diff --git a/frontend/src/components/translates/translations/ar.json b/frontend/src/components/translates/translations/ar.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/ar.json +++ b/frontend/src/components/translates/translations/ar.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/bn.json b/frontend/src/components/translates/translations/bn.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/bn.json +++ b/frontend/src/components/translates/translations/bn.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/bs.json b/frontend/src/components/translates/translations/bs.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/bs.json +++ b/frontend/src/components/translates/translations/bs.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/de.json b/frontend/src/components/translates/translations/de.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/de.json +++ b/frontend/src/components/translates/translations/de.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/el.json b/frontend/src/components/translates/translations/el.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/el.json +++ b/frontend/src/components/translates/translations/el.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/en.json b/frontend/src/components/translates/translations/en.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/en.json +++ b/frontend/src/components/translates/translations/en.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/es.json b/frontend/src/components/translates/translations/es.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/es.json +++ b/frontend/src/components/translates/translations/es.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/et.json b/frontend/src/components/translates/translations/et.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/et.json +++ b/frontend/src/components/translates/translations/et.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/fa.json b/frontend/src/components/translates/translations/fa.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/fa.json +++ b/frontend/src/components/translates/translations/fa.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/fil.json b/frontend/src/components/translates/translations/fil.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/fil.json +++ b/frontend/src/components/translates/translations/fil.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/fr.json b/frontend/src/components/translates/translations/fr.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/fr.json +++ b/frontend/src/components/translates/translations/fr.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/hr.json b/frontend/src/components/translates/translations/hr.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/hr.json +++ b/frontend/src/components/translates/translations/hr.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/hu.json b/frontend/src/components/translates/translations/hu.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/hu.json +++ b/frontend/src/components/translates/translations/hu.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/id.json b/frontend/src/components/translates/translations/id.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/id.json +++ b/frontend/src/components/translates/translations/id.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/it.json b/frontend/src/components/translates/translations/it.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/it.json +++ b/frontend/src/components/translates/translations/it.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/ja.json b/frontend/src/components/translates/translations/ja.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/ja.json +++ b/frontend/src/components/translates/translations/ja.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/ka.json b/frontend/src/components/translates/translations/ka.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/ka.json +++ b/frontend/src/components/translates/translations/ka.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/lt.json b/frontend/src/components/translates/translations/lt.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/lt.json +++ b/frontend/src/components/translates/translations/lt.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/nl.json b/frontend/src/components/translates/translations/nl.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/nl.json +++ b/frontend/src/components/translates/translations/nl.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/no.json b/frontend/src/components/translates/translations/no.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/no.json +++ b/frontend/src/components/translates/translations/no.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/pl.json b/frontend/src/components/translates/translations/pl.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/pl.json +++ b/frontend/src/components/translates/translations/pl.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/pt-BR.json b/frontend/src/components/translates/translations/pt-BR.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/pt-BR.json +++ b/frontend/src/components/translates/translations/pt-BR.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/ro.json b/frontend/src/components/translates/translations/ro.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/ro.json +++ b/frontend/src/components/translates/translations/ro.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/ru.json b/frontend/src/components/translates/translations/ru.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/ru.json +++ b/frontend/src/components/translates/translations/ru.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/sr.json b/frontend/src/components/translates/translations/sr.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/sr.json +++ b/frontend/src/components/translates/translations/sr.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/th.json b/frontend/src/components/translates/translations/th.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/th.json +++ b/frontend/src/components/translates/translations/th.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/tr.json b/frontend/src/components/translates/translations/tr.json index 5235df8ed..acf523e91 100644 --- a/frontend/src/components/translates/translations/tr.json +++ b/frontend/src/components/translates/translations/tr.json @@ -84,7 +84,7 @@ "Show only open.mp servers": "Sadece open.mp sunucularını göster", "Show only partners": "Sadece partnerleri göster", "servers-stats": "sunucu başına ortalama {averagePlayers} oyuncu ile {serverCount} sunucuda {totalPlayers} oyuncu.", - "server-sumbitted": "{serverCodeHn} şu anda bekleme listemize eklendi. Eğer maksimum 48 saat sonra kullanılabilir hale gelmezse, Discord üzerinden bizimle iletişime geçebilirsiniz!", + "server-sumbitted": "{{serverCodeHn} şu anda bekleme listemize eklendi. Eğer maksimum 48 saat sonra kullanılabilir hale gelmezse, Discord üzerinden bizimle iletişime geçebilirsiniz!", "server-submissionfail": "Açıklama: {responseStatusText} : {responseError}", "Server Submitted!": "Sunucu alındı!", "Submission failed!": "Sunucu alınamadı!", @@ -107,7 +107,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLARI)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "open.mp beta testinde bize yardımcı olan ve hataları bildiren sunucular burada listelenmektedir. Sizde kendi sunucunuzu kullanarak bize yardımcı olabilir ve hataları bulma konusunda yardımcı olabilirsiniz; Sunucularınızı discord'umuzda bize bildirin, böylece burada listeleriz.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Topluluğumuza katkıda bulunanlar, gelecekte hizmetimizi halka açık hale getirdiğimizde ve sunucu listemiz hazır olduğunda kalıcı avantajlara sahip olacaklar.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Not: Partner programı, söz verdiğimiz gibi geçici olarak kapalıdır. Bir slot ayıran sunucular hala katılabilir, ancak şu anda yeni başvuruları kabul etmiyoruz. Hala ilgileniyorsanız, sorularınızı discord kanalımızda sorabilirsiniz, ancak listeye yeni giriş yollarıyla ilgili bir soruysa, henüz bir planımız yok." diff --git a/frontend/src/components/translates/translations/uk.json b/frontend/src/components/translates/translations/uk.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/uk.json +++ b/frontend/src/components/translates/translations/uk.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/ur.json b/frontend/src/components/translates/translations/ur.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/ur.json +++ b/frontend/src/components/translates/translations/ur.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/vi.json b/frontend/src/components/translates/translations/vi.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/vi.json +++ b/frontend/src/components/translates/translations/vi.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/zh-cn.json b/frontend/src/components/translates/translations/zh-cn.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/zh-cn.json +++ b/frontend/src/components/translates/translations/zh-cn.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." diff --git a/frontend/src/components/translates/translations/zh-tw.json b/frontend/src/components/translates/translations/zh-tw.json index c71afa1f7..d8ae7b1e3 100644 --- a/frontend/src/components/translates/translations/zh-tw.json +++ b/frontend/src/components/translates/translations/zh-tw.json @@ -20,7 +20,7 @@ "open.mp is released!": "open.mp is released!", "Updates & Features" : "Updates & Features", "What is improved and new?" : "What is improved and new?", - "Documentation": "Documentatio", + "Documentation": "Documentation", "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer.": "A multiplayer mod for Grand Theft Auto: San Andreas that is fully backwards compatible with San Andreas Multiplayer." }, @@ -55,14 +55,14 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "AIP/Domain", + "IP/Domain": "IP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", "Show only open.mp servers": "Show only open.mp servers", "Show only partners": "Show only partners", "servers-stats": "{totalPlayers} players on {serverCount} servers with an average of {averagePlayers} players per server.", - "server-sumbitted": "serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", + "server-sumbitted": "{serverCodeHn} is added to our pending list. If it's not available after maximum 48 hours, you can contact us on Discord!", "server-submissionfail": "Status: {responseStatusText} : {responseError}", "Server Submitted!": "Server Submitted!", "Submission failed!": "Submission failed!", @@ -85,7 +85,7 @@ }, "Partners": { - "Partners (BETA TESTERS)" : "Partnerler (BETA TESTERLER)", + "Partners (BETA TESTERS)" : "Partners (BETA TESTERS)", "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here." : "Servers helping us in beta testing by running open.mp and reporting bugs and issues are listed here. You can do the same by running your server using open.mp and help us with finding bugs and issues; Then tell us about your servers on our discord so we can list them here.", "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready." : "Those who are contributing to our community will have permanent perks in future when we are releasing for public use and when our server listing is ready.", "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." : "Note: Partnership program is temporarily closed as we promised. Servers reserving a slot can still join, but we do not take any new requests for now, if you are still interested, you can ask your questions on our discord, but if it's about new ways of getting into the list, we do not have plans yet." From 1ea32056aaf7582c5a294f98e2d2178c12fe6c89 Mon Sep 17 00:00:00 2001 From: Montreal Date: Sun, 7 Apr 2024 17:07:18 +0300 Subject: [PATCH 3/3] "Change language from" JSON Key Edit --- frontend/src/components/site/LanguageSelect.tsx | 2 +- frontend/src/components/translates/translations/ar.json | 2 +- frontend/src/components/translates/translations/bn.json | 4 ++-- frontend/src/components/translates/translations/bs.json | 2 +- frontend/src/components/translates/translations/de.json | 2 +- frontend/src/components/translates/translations/el.json | 2 +- frontend/src/components/translates/translations/en.json | 2 +- frontend/src/components/translates/translations/es.json | 2 +- frontend/src/components/translates/translations/et.json | 2 +- frontend/src/components/translates/translations/fa.json | 2 +- frontend/src/components/translates/translations/fil.json | 2 +- frontend/src/components/translates/translations/fr.json | 2 +- frontend/src/components/translates/translations/hr.json | 2 +- frontend/src/components/translates/translations/hu.json | 2 +- frontend/src/components/translates/translations/id.json | 2 +- frontend/src/components/translates/translations/it.json | 2 +- frontend/src/components/translates/translations/ja.json | 2 +- frontend/src/components/translates/translations/ka.json | 2 +- frontend/src/components/translates/translations/lt.json | 2 +- frontend/src/components/translates/translations/nl.json | 2 +- frontend/src/components/translates/translations/no.json | 2 +- frontend/src/components/translates/translations/pl.json | 2 +- frontend/src/components/translates/translations/pt-BR.json | 2 +- frontend/src/components/translates/translations/ro.json | 2 +- frontend/src/components/translates/translations/ru.json | 2 +- frontend/src/components/translates/translations/sr.json | 2 +- frontend/src/components/translates/translations/th.json | 2 +- frontend/src/components/translates/translations/tr.json | 2 +- frontend/src/components/translates/translations/uk.json | 2 +- frontend/src/components/translates/translations/ur.json | 2 +- frontend/src/components/translates/translations/vi.json | 2 +- frontend/src/components/translates/translations/zh-cn.json | 2 +- frontend/src/components/translates/translations/zh-tw.json | 2 +- 33 files changed, 34 insertions(+), 34 deletions(-) diff --git a/frontend/src/components/site/LanguageSelect.tsx b/frontend/src/components/site/LanguageSelect.tsx index 9e57a1fd5..084d7b4fd 100644 --- a/frontend/src/components/site/LanguageSelect.tsx +++ b/frontend/src/components/site/LanguageSelect.tsx @@ -83,7 +83,7 @@ const LanguageSelect = forwardRef(({ title }: Props, ref) => { - {translateText(locale, "General", `Change language from ${getLanguageName(locale)}`)} + {translateText(locale, "General", `Change language from`)} {/* Conditionally apply flexbox layout for mobile screens */} diff --git a/frontend/src/components/translates/translations/ar.json b/frontend/src/components/translates/translations/ar.json index d8ae7b1e3..874dc63fb 100644 --- a/frontend/src/components/translates/translations/ar.json +++ b/frontend/src/components/translates/translations/ar.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from اللغة العرب", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/bn.json b/frontend/src/components/translates/translations/bn.json index d8ae7b1e3..593b8af1d 100644 --- a/frontend/src/components/translates/translations/bn.json +++ b/frontend/src/components/translates/translations/bn.json @@ -55,7 +55,7 @@ "Search by IP or Name": "Search by IP or Name", "Add server": "Add server", "IP or Domain": "IP or Domain", - "IP/Domain": "IP/Domain", + "IP/Domain": "AIP/Domain", "Add": "Add", "IP must be in format ip:port": "IP must be in format ip:port", "Show empty servers": "Show empty servers", @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from বাংলা", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/bs.json b/frontend/src/components/translates/translations/bs.json index d8ae7b1e3..71a30a4f3 100644 --- a/frontend/src/components/translates/translations/bs.json +++ b/frontend/src/components/translates/translations/bs.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from bosanski jezik", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/de.json b/frontend/src/components/translates/translations/de.json index d8ae7b1e3..037c32e4e 100644 --- a/frontend/src/components/translates/translations/de.json +++ b/frontend/src/components/translates/translations/de.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from Deutsch", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/el.json b/frontend/src/components/translates/translations/el.json index d8ae7b1e3..2fbc88cbe 100644 --- a/frontend/src/components/translates/translations/el.json +++ b/frontend/src/components/translates/translations/el.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from Ελληνικά", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/en.json b/frontend/src/components/translates/translations/en.json index d8ae7b1e3..bf620ea79 100644 --- a/frontend/src/components/translates/translations/en.json +++ b/frontend/src/components/translates/translations/en.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from English", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/es.json b/frontend/src/components/translates/translations/es.json index d8ae7b1e3..2648be026 100644 --- a/frontend/src/components/translates/translations/es.json +++ b/frontend/src/components/translates/translations/es.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from Español", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/et.json b/frontend/src/components/translates/translations/et.json index d8ae7b1e3..6e679de37 100644 --- a/frontend/src/components/translates/translations/et.json +++ b/frontend/src/components/translates/translations/et.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from eesti", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/fa.json b/frontend/src/components/translates/translations/fa.json index d8ae7b1e3..f177e7a02 100644 --- a/frontend/src/components/translates/translations/fa.json +++ b/frontend/src/components/translates/translations/fa.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from فارسی", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/fil.json b/frontend/src/components/translates/translations/fil.json index d8ae7b1e3..f5569f0e2 100644 --- a/frontend/src/components/translates/translations/fil.json +++ b/frontend/src/components/translates/translations/fil.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from fil", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/fr.json b/frontend/src/components/translates/translations/fr.json index d8ae7b1e3..9f1dd9d48 100644 --- a/frontend/src/components/translates/translations/fr.json +++ b/frontend/src/components/translates/translations/fr.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from Français", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/hr.json b/frontend/src/components/translates/translations/hr.json index d8ae7b1e3..be0839a61 100644 --- a/frontend/src/components/translates/translations/hr.json +++ b/frontend/src/components/translates/translations/hr.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from Hrvatski", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/hu.json b/frontend/src/components/translates/translations/hu.json index d8ae7b1e3..65d00a2bb 100644 --- a/frontend/src/components/translates/translations/hu.json +++ b/frontend/src/components/translates/translations/hu.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from magyar", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/id.json b/frontend/src/components/translates/translations/id.json index d8ae7b1e3..be29bdc4c 100644 --- a/frontend/src/components/translates/translations/id.json +++ b/frontend/src/components/translates/translations/id.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from Bahasa Indonesia", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/it.json b/frontend/src/components/translates/translations/it.json index d8ae7b1e3..099f5b970 100644 --- a/frontend/src/components/translates/translations/it.json +++ b/frontend/src/components/translates/translations/it.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from Italiano", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/ja.json b/frontend/src/components/translates/translations/ja.json index d8ae7b1e3..25abf6635 100644 --- a/frontend/src/components/translates/translations/ja.json +++ b/frontend/src/components/translates/translations/ja.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from 日本語", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/ka.json b/frontend/src/components/translates/translations/ka.json index d8ae7b1e3..38d0b4cc5 100644 --- a/frontend/src/components/translates/translations/ka.json +++ b/frontend/src/components/translates/translations/ka.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from ქართული", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/lt.json b/frontend/src/components/translates/translations/lt.json index d8ae7b1e3..2055c5413 100644 --- a/frontend/src/components/translates/translations/lt.json +++ b/frontend/src/components/translates/translations/lt.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from lietuvių kalba", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/nl.json b/frontend/src/components/translates/translations/nl.json index d8ae7b1e3..b80711e29 100644 --- a/frontend/src/components/translates/translations/nl.json +++ b/frontend/src/components/translates/translations/nl.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from Nederlands", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/no.json b/frontend/src/components/translates/translations/no.json index d8ae7b1e3..5ce25ab71 100644 --- a/frontend/src/components/translates/translations/no.json +++ b/frontend/src/components/translates/translations/no.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from Norsk", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/pl.json b/frontend/src/components/translates/translations/pl.json index d8ae7b1e3..2ec62444b 100644 --- a/frontend/src/components/translates/translations/pl.json +++ b/frontend/src/components/translates/translations/pl.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from język polski", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/pt-BR.json b/frontend/src/components/translates/translations/pt-BR.json index d8ae7b1e3..aace67edc 100644 --- a/frontend/src/components/translates/translations/pt-BR.json +++ b/frontend/src/components/translates/translations/pt-BR.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from Português do Brasil", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/ro.json b/frontend/src/components/translates/translations/ro.json index d8ae7b1e3..9b7b62ee8 100644 --- a/frontend/src/components/translates/translations/ro.json +++ b/frontend/src/components/translates/translations/ro.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from Română", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/ru.json b/frontend/src/components/translates/translations/ru.json index d8ae7b1e3..1cef3b8b0 100644 --- a/frontend/src/components/translates/translations/ru.json +++ b/frontend/src/components/translates/translations/ru.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from Русский", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/sr.json b/frontend/src/components/translates/translations/sr.json index d8ae7b1e3..fec81851f 100644 --- a/frontend/src/components/translates/translations/sr.json +++ b/frontend/src/components/translates/translations/sr.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from српски језик", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/th.json b/frontend/src/components/translates/translations/th.json index d8ae7b1e3..542854ca6 100644 --- a/frontend/src/components/translates/translations/th.json +++ b/frontend/src/components/translates/translations/th.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from ไทย", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/tr.json b/frontend/src/components/translates/translations/tr.json index acf523e91..990e1eddf 100644 --- a/frontend/src/components/translates/translations/tr.json +++ b/frontend/src/components/translates/translations/tr.json @@ -16,7 +16,7 @@ "Recently": "Yakın zaman", "search-results": "{total} arama sonucu", - "Change language from Türkçe": "Dili Türkçe dilinden değiştir", + "Change language from": "Dili Türkçe dilinden değiştir", "404 - Page Not Found" : "404 - Sayfa Bulunamadı" }, diff --git a/frontend/src/components/translates/translations/uk.json b/frontend/src/components/translates/translations/uk.json index d8ae7b1e3..29042f94a 100644 --- a/frontend/src/components/translates/translations/uk.json +++ b/frontend/src/components/translates/translations/uk.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from Українська", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/ur.json b/frontend/src/components/translates/translations/ur.json index d8ae7b1e3..ddbfed6c7 100644 --- a/frontend/src/components/translates/translations/ur.json +++ b/frontend/src/components/translates/translations/ur.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from اردو", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/vi.json b/frontend/src/components/translates/translations/vi.json index d8ae7b1e3..5c6997397 100644 --- a/frontend/src/components/translates/translations/vi.json +++ b/frontend/src/components/translates/translations/vi.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from Tiếng Việt", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/zh-cn.json b/frontend/src/components/translates/translations/zh-cn.json index d8ae7b1e3..54b5a8a09 100644 --- a/frontend/src/components/translates/translations/zh-cn.json +++ b/frontend/src/components/translates/translations/zh-cn.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from 简体中文", "404 - Page Not Found" : "404 - Page Not Found" } diff --git a/frontend/src/components/translates/translations/zh-tw.json b/frontend/src/components/translates/translations/zh-tw.json index d8ae7b1e3..047714230 100644 --- a/frontend/src/components/translates/translations/zh-tw.json +++ b/frontend/src/components/translates/translations/zh-tw.json @@ -125,7 +125,7 @@ "Recently": "Recently", "search-results": "{total} search results", - "Change language from English": "Change language from English", + "Change language from": "Change language from 繁體中文", "404 - Page Not Found" : "404 - Page Not Found" }