mirror of
https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server.git
synced 2025-10-20 00:00:39 +00:00
API update to 1.6.3 stable
This commit is contained in:
parent
463bae3913
commit
fcd8a94e81
146 changed files with 2254 additions and 510 deletions
18
README.txt
18
README.txt
|
|
@ -1,18 +0,0 @@
|
||||||
To run this, simply cd into this directory and run ./ballisticacore_server
|
|
||||||
(on mac or linux) or launch_ballisticacore_server.bat (on windows).
|
|
||||||
You'll need to open a UDP port (43210 by default) so that the world can
|
|
||||||
communicate with your server.
|
|
||||||
You can configure your server by editing the config.yaml file.
|
|
||||||
(if you only see config_template.yaml, you can copy/rename that to config.yaml)
|
|
||||||
|
|
||||||
-Add your account-id in dist/ba_root/mods/privateserver.py -> admin[]
|
|
||||||
-Restart server twice
|
|
||||||
-Add players account-id (pb-id) in whitelist.json manually or use chat command while whitelist is off.
|
|
||||||
-Use "/whitelist" to turn on/off whitelist.
|
|
||||||
-Use "/spectators" to turn on/off lobby kick.
|
|
||||||
-Use "/add <client-id>" to whitelist player (turn off whitelist or spectators mode first).
|
|
||||||
-In config.yaml set party type to PUBLIC ; party will be PRIVATE automatically by smoothy haxx
|
|
||||||
-Increased Kickvote cooldown
|
|
||||||
-Kickvote logs with be logged in terminal (who kicking whom).
|
|
||||||
-player joined the party/player left the party message removed
|
|
||||||
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env python3.8
|
#!/usr/bin/env -S python3.8 -O
|
||||||
# Released under the MIT License. See LICENSE for details.
|
# Released under the MIT License. See LICENSE for details.
|
||||||
#
|
#
|
||||||
"""BallisticaCore server manager."""
|
"""BombSquad server manager."""
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import json
|
import json
|
||||||
|
|
@ -23,7 +23,7 @@ sys.path += [
|
||||||
]
|
]
|
||||||
|
|
||||||
from bacommon.servermanager import ServerConfig, StartServerModeCommand
|
from bacommon.servermanager import ServerConfig, StartServerModeCommand
|
||||||
from efro.dataclasses import dataclass_from_dict, dataclass_validate
|
from efro.dataclassio import dataclass_from_dict, dataclass_validate
|
||||||
from efro.error import CleanError
|
from efro.error import CleanError
|
||||||
from efro.terminal import Clr
|
from efro.terminal import Clr
|
||||||
|
|
||||||
|
|
@ -32,14 +32,19 @@ if TYPE_CHECKING:
|
||||||
from types import FrameType
|
from types import FrameType
|
||||||
from bacommon.servermanager import ServerCommand
|
from bacommon.servermanager import ServerCommand
|
||||||
|
|
||||||
VERSION_STR = '1.2'
|
VERSION_STR = '1.3'
|
||||||
|
|
||||||
# Version history:
|
# Version history:
|
||||||
|
# 1.3:
|
||||||
|
# Added show_tutorial config option
|
||||||
|
# Added team_names config option
|
||||||
|
# Added team_colors config option
|
||||||
|
# Added playlist_inline config option
|
||||||
# 1.2:
|
# 1.2:
|
||||||
# Added optional --help arg
|
# Added optional --help arg
|
||||||
# Added --config arg for setting config path and --root for ba_root path
|
# Added --config arg for specifying config file and --root for ba_root path
|
||||||
# Added noninteractive mode and --interactive/--noninteractive args to
|
# Added noninteractive mode and --interactive/--noninteractive args to
|
||||||
# explicitly specify
|
# explicitly enable/disable it (it is autodetected by default)
|
||||||
# Added explicit control for auto-restart: --no-auto-restart
|
# Added explicit control for auto-restart: --no-auto-restart
|
||||||
# Config file is now reloaded each time server binary is restarted; no more
|
# Config file is now reloaded each time server binary is restarted; no more
|
||||||
# need to bring down server wrapper to pick up changes
|
# need to bring down server wrapper to pick up changes
|
||||||
|
|
@ -56,10 +61,10 @@ VERSION_STR = '1.2'
|
||||||
|
|
||||||
|
|
||||||
class ServerManagerApp:
|
class ServerManagerApp:
|
||||||
"""An app which manages BallisticaCore server execution.
|
"""An app which manages BombSquad server execution.
|
||||||
|
|
||||||
Handles configuring, launching, re-launching, and otherwise
|
Handles configuring, launching, re-launching, and otherwise
|
||||||
managing BallisticaCore operating in server mode.
|
managing BombSquad operating in server mode.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# How many seconds we wait after asking our subprocess to do an immediate
|
# How many seconds we wait after asking our subprocess to do an immediate
|
||||||
|
|
@ -119,7 +124,7 @@ class ServerManagerApp:
|
||||||
|
|
||||||
dbgstr = 'debug' if __debug__ else 'opt'
|
dbgstr = 'debug' if __debug__ else 'opt'
|
||||||
print(
|
print(
|
||||||
f'{Clr.CYN}{Clr.BLD}BallisticaCore server manager {VERSION_STR}'
|
f'{Clr.CYN}{Clr.BLD}BombSquad server manager {VERSION_STR}'
|
||||||
f' starting up ({dbgstr} mode)...{Clr.RST}',
|
f' starting up ({dbgstr} mode)...{Clr.RST}',
|
||||||
flush=True)
|
flush=True)
|
||||||
|
|
||||||
|
|
@ -396,7 +401,7 @@ class ServerManagerApp:
|
||||||
out = (
|
out = (
|
||||||
f'{Clr.BLD}{filename} usage:{Clr.RST}\n' + cls._par(
|
f'{Clr.BLD}{filename} usage:{Clr.RST}\n' + cls._par(
|
||||||
'This script handles configuring, launching, re-launching,'
|
'This script handles configuring, launching, re-launching,'
|
||||||
' and otherwise managing BallisticaCore operating'
|
' and otherwise managing BombSquad operating'
|
||||||
' in server mode. It can be run with no arguments, but'
|
' in server mode. It can be run with no arguments, but'
|
||||||
' accepts the following optional ones:') + f'\n'
|
' accepts the following optional ones:') + f'\n'
|
||||||
f'{Clr.BLD}--help:{Clr.RST}\n'
|
f'{Clr.BLD}--help:{Clr.RST}\n'
|
||||||
|
|
@ -413,7 +418,7 @@ class ServerManagerApp:
|
||||||
f'{Clr.BLD}--root [path]{Clr.RST}\n' + cls._par(
|
f'{Clr.BLD}--root [path]{Clr.RST}\n' + cls._par(
|
||||||
'Set the ballistica root directory. This is where the server'
|
'Set the ballistica root directory. This is where the server'
|
||||||
' binary will read and write its caches, state files,'
|
' binary will read and write its caches, state files,'
|
||||||
' downloaded assets, etc. It needs to be a writable'
|
' downloaded assets to, etc. It needs to be a writable'
|
||||||
' directory. If not specified, the script will use the'
|
' directory. If not specified, the script will use the'
|
||||||
' \'dist/ba_root\' directory relative to itself.') + '\n'
|
' \'dist/ba_root\' directory relative to itself.') + '\n'
|
||||||
f'{Clr.BLD}--interactive{Clr.RST}\n'
|
f'{Clr.BLD}--interactive{Clr.RST}\n'
|
||||||
|
|
@ -549,6 +554,7 @@ class ServerManagerApp:
|
||||||
|
|
||||||
def _run_server_cycle(self) -> None:
|
def _run_server_cycle(self) -> None:
|
||||||
"""Spin up the server subprocess and run it until exit."""
|
"""Spin up the server subprocess and run it until exit."""
|
||||||
|
# pylint: disable=consider-using-with
|
||||||
|
|
||||||
# Reload our config, and update our overall behavior based on it.
|
# Reload our config, and update our overall behavior based on it.
|
||||||
# We do non-strict this time to give the user repeated attempts if
|
# We do non-strict this time to give the user repeated attempts if
|
||||||
|
|
@ -567,8 +573,8 @@ class ServerManagerApp:
|
||||||
os.environ['BA_SERVER_WRAPPER_MANAGED'] = '1'
|
os.environ['BA_SERVER_WRAPPER_MANAGED'] = '1'
|
||||||
|
|
||||||
print(f'{Clr.CYN}Launching server subprocess...{Clr.RST}', flush=True)
|
print(f'{Clr.CYN}Launching server subprocess...{Clr.RST}', flush=True)
|
||||||
binary_name = ('ballisticacore_headless.exe'
|
binary_name = ('bombsquad_headless.exe'
|
||||||
if os.name == 'nt' else './ballisticacore_headless')
|
if os.name == 'nt' else './bombsquad_headless')
|
||||||
assert self._ba_root_path is not None
|
assert self._ba_root_path is not None
|
||||||
self._subprocess = None
|
self._subprocess = None
|
||||||
|
|
||||||
|
|
@ -644,10 +650,21 @@ class ServerManagerApp:
|
||||||
bincfg = {}
|
bincfg = {}
|
||||||
|
|
||||||
# Some of our config values translate directly into the
|
# Some of our config values translate directly into the
|
||||||
# ballisticacore config file; the rest we pass at runtime.
|
# bombsquad config file; the rest we pass at runtime.
|
||||||
bincfg['Port'] = self._config.port
|
bincfg['Port'] = self._config.port
|
||||||
bincfg['Auto Balance Teams'] = self._config.auto_balance_teams
|
bincfg['Auto Balance Teams'] = self._config.auto_balance_teams
|
||||||
bincfg['Show Tutorial'] = False
|
bincfg['Show Tutorial'] = self._config.show_tutorial
|
||||||
|
|
||||||
|
if self._config.team_names is not None:
|
||||||
|
bincfg['Custom Team Names'] = self._config.team_names
|
||||||
|
elif 'Custom Team Names' in bincfg:
|
||||||
|
del bincfg['Custom Team Names']
|
||||||
|
|
||||||
|
if self._config.team_colors is not None:
|
||||||
|
bincfg['Custom Team Colors'] = self._config.team_colors
|
||||||
|
elif 'Custom Team Colors' in bincfg:
|
||||||
|
del bincfg['Custom Team Colors']
|
||||||
|
|
||||||
bincfg['Idle Exit Minutes'] = self._config.idle_exit_minutes
|
bincfg['Idle Exit Minutes'] = self._config.idle_exit_minutes
|
||||||
with open(cfgpath, 'w') as outfile:
|
with open(cfgpath, 'w') as outfile:
|
||||||
outfile.write(json.dumps(bincfg))
|
outfile.write(json.dumps(bincfg))
|
||||||
|
|
@ -714,8 +731,11 @@ class ServerManagerApp:
|
||||||
# alive.
|
# alive.
|
||||||
if (self._subprocess_force_kill_time is not None
|
if (self._subprocess_force_kill_time is not None
|
||||||
and time.time() > self._subprocess_force_kill_time):
|
and time.time() > self._subprocess_force_kill_time):
|
||||||
print(f'{Clr.CYN}Force-killing subprocess...{Clr.RST}',
|
print(
|
||||||
flush=True)
|
f'{Clr.CYN}Immediate shutdown time limit'
|
||||||
|
f' ({self.IMMEDIATE_SHUTDOWN_TIME_LIMIT:.1f} seconds)'
|
||||||
|
f' expired; force-killing subprocess...{Clr.RST}',
|
||||||
|
flush=True)
|
||||||
break
|
break
|
||||||
|
|
||||||
# Watch for the server process exiting..
|
# Watch for the server process exiting..
|
||||||
|
|
@ -833,7 +853,7 @@ class ServerManagerApp:
|
||||||
|
|
||||||
|
|
||||||
def main() -> None:
|
def main() -> None:
|
||||||
"""Run the BallisticaCore server manager."""
|
"""Run the BombSquad server manager."""
|
||||||
try:
|
try:
|
||||||
ServerManagerApp().run()
|
ServerManagerApp().run()
|
||||||
except CleanError as exc:
|
except CleanError as exc:
|
||||||
54
config.yaml
54
config.yaml
|
|
@ -1,27 +1,27 @@
|
||||||
# To configure your server, create a config.yaml file in the same directory
|
# To configure your server, create a config.yaml file in the same directory
|
||||||
# as the ballisticacore_server script. The config_template.yaml file can be
|
# as the bombsquad_server script. The config_template.yaml file can be
|
||||||
# copied or renamed as a convenient starting point.
|
# copied or renamed as a convenient starting point.
|
||||||
|
|
||||||
# Uncomment any of these values to override defaults.
|
# Uncomment any of these values to override defaults.
|
||||||
|
|
||||||
# Name of our server in the public parties list.
|
# Name of our server in the public parties list.
|
||||||
party_name: Smoothy PRIVATE PARTY
|
#party_name: FFA
|
||||||
|
|
||||||
|
# If true, your party will show up in the global public party list
|
||||||
# KEEP THIS TRUE .... DONT WORRY PARTY WILL BE PRIVATE ONLY .. LET IT BE TRUE FOR NOW.
|
# Otherwise it will still be joinable via LAN or connecting by IP address.
|
||||||
party_is_public: true
|
#party_is_public: true
|
||||||
|
|
||||||
# If true, all connecting clients will be authenticated through the master
|
# If true, all connecting clients will be authenticated through the master
|
||||||
# server to screen for fake account info. Generally this should always
|
# server to screen for fake account info. Generally this should always
|
||||||
# be enabled unless you are hosting on a LAN with no internet connection.
|
# be enabled unless you are hosting on a LAN with no internet connection.
|
||||||
authenticate_clients: true
|
#authenticate_clients: true
|
||||||
|
|
||||||
# IDs of server admins. Server admins are not kickable through the default
|
# IDs of server admins. Server admins are not kickable through the default
|
||||||
# kick vote system and they are able to kick players without a vote. To get
|
# kick vote system and they are able to kick players without a vote. To get
|
||||||
# your account id, enter 'getaccountid' in settings->advanced->enter-code.
|
# your account id, enter 'getaccountid' in settings->advanced->enter-code.
|
||||||
admins:
|
#admins:
|
||||||
- pb-yOuRAccOuNtIdHErE
|
#- pb-yOuRAccOuNtIdHErE
|
||||||
- pb-aNdMayBeAnotherHeRE
|
#- pb-aNdMayBeAnotherHeRE
|
||||||
|
|
||||||
# Whether the default kick-voting system is enabled.
|
# Whether the default kick-voting system is enabled.
|
||||||
#enable_default_kick_voting: true
|
#enable_default_kick_voting: true
|
||||||
|
|
@ -30,18 +30,17 @@ admins:
|
||||||
# servers on one machine.
|
# servers on one machine.
|
||||||
# 43210 is the default and the only port that will show up in the LAN
|
# 43210 is the default and the only port that will show up in the LAN
|
||||||
# browser tab.
|
# browser tab.
|
||||||
port: 43210
|
#port: 43210
|
||||||
|
|
||||||
# Max devices in the party. Note that this does *NOT* mean max players.
|
# Max devices in the party. Note that this does *NOT* mean max players.
|
||||||
# Any device in the party can have more than one player on it if they have
|
# Any device in the party can have more than one player on it if they have
|
||||||
# multiple controllers. Also, this number currently includes the server so
|
# multiple controllers. Also, this number currently includes the server so
|
||||||
# generally make it 1 bigger than you need. Max-players is not currently
|
# generally make it 1 bigger than you need. Max-players is not currently
|
||||||
# exposed but I'll try to add that soon.
|
# exposed but I'll try to add that soon.
|
||||||
max_party_size: 8
|
#max_party_size: 6
|
||||||
|
|
||||||
# Options here are 'ffa' (free-for-all) and 'teams'
|
# Options here are 'ffa' (free-for-all) and 'teams'
|
||||||
# This value is only used if you do not supply a playlist_code (see below).
|
# This value is ignored if you supply a playlist_code (see below).
|
||||||
# In that case the default teams or free-for-all playlist gets used.
|
|
||||||
#session_type: ffa
|
#session_type: ffa
|
||||||
|
|
||||||
# To host your own custom playlists, use the 'share' functionality in the
|
# To host your own custom playlists, use the 'share' functionality in the
|
||||||
|
|
@ -50,6 +49,10 @@ max_party_size: 8
|
||||||
# playlist.
|
# playlist.
|
||||||
#playlist_code: 12345
|
#playlist_code: 12345
|
||||||
|
|
||||||
|
# Alternately, you can embed playlist data here instead of using codes.
|
||||||
|
# Make sure to set session_type to the correct type for the data here.
|
||||||
|
#playlist_inline: []
|
||||||
|
|
||||||
# Whether to shuffle the playlist or play its games in designated order.
|
# Whether to shuffle the playlist or play its games in designated order.
|
||||||
#playlist_shuffle: true
|
#playlist_shuffle: true
|
||||||
|
|
||||||
|
|
@ -73,12 +76,12 @@ max_party_size: 8
|
||||||
# performance)
|
# performance)
|
||||||
#ffa_series_length: 24
|
#ffa_series_length: 24
|
||||||
|
|
||||||
# If you provide a custom stats webpage for your server, you can use
|
# If you have a custom stats webpage for your server, you can use this
|
||||||
# this to provide a convenient in-game link to it in the server-browser
|
# to provide a convenient in-game link to it in the server-browser
|
||||||
# beside the server name.
|
# alongside the server name.
|
||||||
# if ${ACCOUNT} is present in the string, it will be replaced by the
|
# if ${ACCOUNT} is present in the string, it will be replaced by the
|
||||||
# currently-signed-in account's id. To fetch info about an account,
|
# currently-signed-in account's id. To fetch info about an account,
|
||||||
# your backend server can use the following url:
|
# your back-end server can use the following url:
|
||||||
# http://bombsquadgame.com/accountquery?id=ACCOUNT_ID_HERE
|
# http://bombsquadgame.com/accountquery?id=ACCOUNT_ID_HERE
|
||||||
#stats_url: https://mystatssite.com/showstats?player=${ACCOUNT}
|
#stats_url: https://mystatssite.com/showstats?player=${ACCOUNT}
|
||||||
|
|
||||||
|
|
@ -98,7 +101,20 @@ max_party_size: 8
|
||||||
|
|
||||||
# If present, the server subprocess will shut down immediately if this
|
# If present, the server subprocess will shut down immediately if this
|
||||||
# amount of time passes with no activity from any players. The server
|
# amount of time passes with no activity from any players. The server
|
||||||
# manager will then spin up a fresh server subprocess if
|
# manager will then spin up a fresh server subprocess if auto-restart is
|
||||||
# auto-restart is enabled (the default).
|
# enabled (the default).
|
||||||
#idle_exit_minutes: 20
|
#idle_exit_minutes: 20
|
||||||
|
|
||||||
|
# Should the tutorial be shown at the beginning of games?
|
||||||
|
#show_tutorial: false
|
||||||
|
|
||||||
|
# Team names (teams mode only).
|
||||||
|
#team_names:
|
||||||
|
#- Blue
|
||||||
|
#- Red
|
||||||
|
|
||||||
|
# Team colors (teams mode only).
|
||||||
|
#team_colors:
|
||||||
|
#- [0.1, 0.25, 1.0]
|
||||||
|
#- [1.0, 0.25, 0.2]
|
||||||
|
|
||||||
|
|
|
||||||
238
dist/ba_data/data/langdata.json
vendored
238
dist/ba_data/data/langdata.json
vendored
|
|
@ -1,77 +1,54 @@
|
||||||
{
|
{
|
||||||
"lang_names_translated": {
|
"lang_names_translated": {
|
||||||
"Turkish": "Türkçe",
|
"Arabic": "عربى",
|
||||||
"Hindi": "हिंदी",
|
"Belarussian": "Беларуская",
|
||||||
"Korean": "한국어",
|
"Chinese": "简体中文",
|
||||||
"Hungarian": "Magyar",
|
"ChineseTraditional": "繁體中文",
|
||||||
|
"Croatian": "Hrvatski",
|
||||||
|
"Czech": "Čeština",
|
||||||
|
"Danish": "Dansk",
|
||||||
|
"Dutch": "Nederlands",
|
||||||
|
"Esperanto": "Esperanto",
|
||||||
"French": "Français",
|
"French": "Français",
|
||||||
|
"German": "Deutsch",
|
||||||
|
"Gibberish": "Gibberish",
|
||||||
|
"Greek": "Ελληνικά",
|
||||||
|
"Hindi": "हिंदी",
|
||||||
|
"Hungarian": "Magyar",
|
||||||
|
"Indonesian": "Indonesia",
|
||||||
|
"Italian": "Italiano",
|
||||||
|
"Japanese": "日本語",
|
||||||
|
"Korean": "한국어",
|
||||||
|
"Persian": " فارسی",
|
||||||
|
"Polish": "Polski",
|
||||||
|
"Portuguese": "Português",
|
||||||
|
"Romanian": "Română",
|
||||||
"Russian": "Русский",
|
"Russian": "Русский",
|
||||||
"Serbian": "Српски",
|
"Serbian": "Српски",
|
||||||
"Gibberish": "Gibberish",
|
|
||||||
"Italian": "Italiano",
|
|
||||||
"German": "Deutsch",
|
|
||||||
"Czech": "Čeština",
|
|
||||||
"Persian": " فارسی",
|
|
||||||
"Slovak": "Slovenčina ",
|
"Slovak": "Slovenčina ",
|
||||||
"Polish": "Polski",
|
|
||||||
"Swedish": "Svenska",
|
|
||||||
"Vietnamese": "Tiếng Việt ",
|
|
||||||
"Romanian": "Română",
|
|
||||||
"Belarussian": "Беларуская",
|
|
||||||
"Dutch": "Nederlands",
|
|
||||||
"Danish": "Dansk",
|
|
||||||
"Indonesian": "Indonesia",
|
|
||||||
"Ukrainian": "Українська",
|
|
||||||
"ChineseTraditional": "繁體中文",
|
|
||||||
"Venetian": "Veneto",
|
|
||||||
"Greek": "Ελληνικά",
|
|
||||||
"Arabic": "عربى",
|
|
||||||
"Croatian": "Hrvatski",
|
|
||||||
"Portuguese": "Português",
|
|
||||||
"Chinese": "简体中文",
|
|
||||||
"Japanese": "日本語",
|
|
||||||
"Spanish": "Español",
|
"Spanish": "Español",
|
||||||
"Esperanto": "Esperanto"
|
"Swedish": "Svenska",
|
||||||
|
"Turkish": "Türkçe",
|
||||||
|
"Ukrainian": "Українська",
|
||||||
|
"Venetian": "Veneto",
|
||||||
|
"Vietnamese": "Tiếng Việt "
|
||||||
},
|
},
|
||||||
"translation_contributors": [
|
"translation_contributors": [
|
||||||
"!ParkuristTurist!",
|
"!ParkuristTurist!",
|
||||||
"Даниил Рахов \"DaNiiRuSPlay\"",
|
|
||||||
"Ярослав \"Noiseaholic\"",
|
|
||||||
"Cristian Bote \"ZZAZZ\"",
|
|
||||||
"Muhammad Faqih ''None''",
|
|
||||||
"GG (9.2)",
|
|
||||||
"Rudransh Joshi (FireHead)",
|
|
||||||
"Spielfreake (Garke)",
|
|
||||||
"Tódor Gábor (Joshua)",
|
|
||||||
"Артём Зобков (KoLenka)",
|
|
||||||
"Андрей (Krays)",
|
|
||||||
"Kamil (Limak09)",
|
|
||||||
"Kamil Barański (Limak09)",
|
|
||||||
"Syed Fahrin (Mr.Lemoyne)",
|
|
||||||
"OyUnBoZaN (NEMUTLUTURKUMDİYENE)",
|
|
||||||
"Joel RG (Plar&Teporingo)",
|
|
||||||
"*** Adel NZ. ***",
|
|
||||||
"/in/dev/",
|
"/in/dev/",
|
||||||
"1.4.139",
|
"1.4.139",
|
||||||
"123",
|
"123",
|
||||||
"123123123",
|
"123123123",
|
||||||
"Abdullatif Badinjki ExPeRt 1420",
|
|
||||||
"Mac 143338",
|
|
||||||
"233",
|
"233",
|
||||||
"26885",
|
"26885",
|
||||||
"43210",
|
"43210",
|
||||||
"5PH3X",
|
"5PH3X",
|
||||||
"99",
|
"99",
|
||||||
"Ivan Santos :)",
|
|
||||||
"Ромашка :3",
|
|
||||||
"Roma :D",
|
|
||||||
"Ihsan Maulana ( @ihsanm27)",
|
|
||||||
"@sametsunal",
|
"@sametsunal",
|
||||||
"_Fami",
|
"_Fami",
|
||||||
"Omar a",
|
"Omar a",
|
||||||
"Bruno A.",
|
"Bruno A.",
|
||||||
"aaalligator",
|
"aaalligator",
|
||||||
"aaalligator",
|
|
||||||
"aadesh",
|
"aadesh",
|
||||||
"Aaron",
|
"Aaron",
|
||||||
"Erik Abbevik",
|
"Erik Abbevik",
|
||||||
|
|
@ -88,8 +65,8 @@
|
||||||
"Roman Abramov",
|
"Roman Abramov",
|
||||||
"AC",
|
"AC",
|
||||||
"adan",
|
"adan",
|
||||||
|
"Adeel (AdeZ {@adez_})",
|
||||||
"Adel",
|
"Adel",
|
||||||
"Rio Adi",
|
|
||||||
"Rio adi",
|
"Rio adi",
|
||||||
"Rayhan Adiansyah",
|
"Rayhan Adiansyah",
|
||||||
"Yonas Adiel",
|
"Yonas Adiel",
|
||||||
|
|
@ -118,11 +95,10 @@
|
||||||
"Berk Akkaya",
|
"Berk Akkaya",
|
||||||
"AKYG",
|
"AKYG",
|
||||||
"mohammed al-abri",
|
"mohammed al-abri",
|
||||||
"Mohammed al-abri",
|
|
||||||
"Ali Al-Gattan",
|
"Ali Al-Gattan",
|
||||||
"alaa",
|
"alaa",
|
||||||
"Manuel Alanis",
|
|
||||||
"Anna Alanis",
|
"Anna Alanis",
|
||||||
|
"Manuel Alanis",
|
||||||
"alanjijuoo7fudu@gmail.com",
|
"alanjijuoo7fudu@gmail.com",
|
||||||
"Alej0hio",
|
"Alej0hio",
|
||||||
"Pedro Alejandro",
|
"Pedro Alejandro",
|
||||||
|
|
@ -133,13 +109,11 @@
|
||||||
"Alexey",
|
"Alexey",
|
||||||
"Alexgmihai",
|
"Alexgmihai",
|
||||||
"Alexis",
|
"Alexis",
|
||||||
"Alexis",
|
|
||||||
"Alexistb2904",
|
"Alexistb2904",
|
||||||
"Alexyze",
|
"Alexyze",
|
||||||
"Algene123456",
|
"Algene123456",
|
||||||
"Ali",
|
|
||||||
"Shadiq Ali",
|
|
||||||
"ALI",
|
"ALI",
|
||||||
|
"Shadiq Ali",
|
||||||
"alireza",
|
"alireza",
|
||||||
"alirezaalidokht",
|
"alirezaalidokht",
|
||||||
"ALISSON",
|
"ALISSON",
|
||||||
|
|
@ -190,7 +164,6 @@
|
||||||
"Anmol",
|
"Anmol",
|
||||||
"anonymous",
|
"anonymous",
|
||||||
"Antonio",
|
"Antonio",
|
||||||
"Antonio",
|
|
||||||
"Antoniom",
|
"Antoniom",
|
||||||
"Lucas Antunes",
|
"Lucas Antunes",
|
||||||
"wassim aoufi",
|
"wassim aoufi",
|
||||||
|
|
@ -216,7 +189,6 @@
|
||||||
"Avamander",
|
"Avamander",
|
||||||
"awase2020@gmail.com",
|
"awase2020@gmail.com",
|
||||||
"sev alaslam Awd",
|
"sev alaslam Awd",
|
||||||
"sev alaslam awd",
|
|
||||||
"Axel",
|
"Axel",
|
||||||
"ayub",
|
"ayub",
|
||||||
"masoud azad(fireboy)",
|
"masoud azad(fireboy)",
|
||||||
|
|
@ -253,6 +225,7 @@
|
||||||
"Wojtek Bałut",
|
"Wojtek Bałut",
|
||||||
"Eduardo Beascochea",
|
"Eduardo Beascochea",
|
||||||
"Eduan Bekker",
|
"Eduan Bekker",
|
||||||
|
"бравлер Андрей Belarus",
|
||||||
"ben",
|
"ben",
|
||||||
"Mohamed benchrifa",
|
"Mohamed benchrifa",
|
||||||
"Bendy",
|
"Bendy",
|
||||||
|
|
@ -267,23 +240,27 @@
|
||||||
"Felix Bernhard",
|
"Felix Bernhard",
|
||||||
"Davide Bigotto",
|
"Davide Bigotto",
|
||||||
"Bima",
|
"Bima",
|
||||||
|
"Biytremni",
|
||||||
"Blackcat2960",
|
"Blackcat2960",
|
||||||
"BlackShadowQ",
|
"BlackShadowQ",
|
||||||
"Daniel Block",
|
"Daniel Block",
|
||||||
"BlueBlur",
|
"BlueBlur",
|
||||||
|
"The Bomboler 💣",
|
||||||
"bombsquad",
|
"bombsquad",
|
||||||
"Bomby",
|
"Bomby",
|
||||||
"Book",
|
"Book",
|
||||||
"Lucas Borges",
|
"Lucas Borges",
|
||||||
|
"Gianfranco Del Borrello",
|
||||||
"Abel Borso",
|
"Abel Borso",
|
||||||
"Plasma Boson",
|
"Plasma Boson",
|
||||||
"Cristián Bote",
|
|
||||||
"Cristian Bote",
|
"Cristian Bote",
|
||||||
|
"Cristián Bote",
|
||||||
"botris",
|
"botris",
|
||||||
"Botte",
|
"Botte",
|
||||||
"bouabdellah",
|
"bouabdellah",
|
||||||
"Antoine Boulanger",
|
"Antoine Boulanger",
|
||||||
"Thomas Bouwmeester",
|
"Thomas Bouwmeester",
|
||||||
|
"Ali x boy",
|
||||||
"Bořivoj",
|
"Bořivoj",
|
||||||
"Paul braga",
|
"Paul braga",
|
||||||
"Sammy Braun",
|
"Sammy Braun",
|
||||||
|
|
@ -293,7 +270,6 @@
|
||||||
"Broi",
|
"Broi",
|
||||||
"Brojas",
|
"Brojas",
|
||||||
"BrotheRuzz11",
|
"BrotheRuzz11",
|
||||||
"Bsam",
|
|
||||||
"bsam",
|
"bsam",
|
||||||
"Bsamhero",
|
"Bsamhero",
|
||||||
"BSODPK",
|
"BSODPK",
|
||||||
|
|
@ -344,7 +320,6 @@
|
||||||
"crac",
|
"crac",
|
||||||
"CrazyBear",
|
"CrazyBear",
|
||||||
"Frederick Cretton",
|
"Frederick Cretton",
|
||||||
"Crisroco10",
|
|
||||||
"crisroco10",
|
"crisroco10",
|
||||||
"Cristian",
|
"Cristian",
|
||||||
"Cristóbal",
|
"Cristóbal",
|
||||||
|
|
@ -358,8 +333,10 @@
|
||||||
"Daivaras",
|
"Daivaras",
|
||||||
"Dakkat",
|
"Dakkat",
|
||||||
"Mikkel Damgaard",
|
"Mikkel Damgaard",
|
||||||
|
"Danco",
|
||||||
"Daniel",
|
"Daniel",
|
||||||
"Daniel3505",
|
"Daniel3505",
|
||||||
|
"Dančo",
|
||||||
"Iman Darius",
|
"Iman Darius",
|
||||||
"DarkAnarcy",
|
"DarkAnarcy",
|
||||||
"DarkEnergon8",
|
"DarkEnergon8",
|
||||||
|
|
@ -371,8 +348,6 @@
|
||||||
"Die or Dead",
|
"Die or Dead",
|
||||||
"Привет от детей DeadLine",
|
"Привет от детей DeadLine",
|
||||||
"deepjith",
|
"deepjith",
|
||||||
"Gianfranco Del Borrello",
|
|
||||||
"Gabriel Del Nero",
|
|
||||||
"delshe",
|
"delshe",
|
||||||
"Denis",
|
"Denis",
|
||||||
"Dennis",
|
"Dennis",
|
||||||
|
|
@ -411,6 +386,7 @@
|
||||||
"Paul Duvernay",
|
"Paul Duvernay",
|
||||||
"Edson",
|
"Edson",
|
||||||
"Glen Edwards",
|
"Glen Edwards",
|
||||||
|
"Amr Wassiem Eessa",
|
||||||
"ef",
|
"ef",
|
||||||
"Ali ehs",
|
"Ali ehs",
|
||||||
"Eiva",
|
"Eiva",
|
||||||
|
|
@ -433,12 +409,12 @@
|
||||||
"enzo",
|
"enzo",
|
||||||
"Erick",
|
"Erick",
|
||||||
"Jonas Ernst",
|
"Jonas Ernst",
|
||||||
|
"NO es",
|
||||||
"Shayan Eskandari",
|
"Shayan Eskandari",
|
||||||
"ESMAEL",
|
|
||||||
"esmael",
|
|
||||||
"Esmael",
|
"Esmael",
|
||||||
"Jose espinoza",
|
"Jose espinoza",
|
||||||
"ethanmigueltrinidad",
|
"ethanmigueltrinidad",
|
||||||
|
"Abdullatif Badinjki ExPeRt 1420",
|
||||||
"ExplosiveDinosaurs.com",
|
"ExplosiveDinosaurs.com",
|
||||||
"EXTENDOO",
|
"EXTENDOO",
|
||||||
"Eyder",
|
"Eyder",
|
||||||
|
|
@ -447,9 +423,11 @@
|
||||||
"Luca Facchinetti",
|
"Luca Facchinetti",
|
||||||
"Facundo",
|
"Facundo",
|
||||||
"Jakub Fafek",
|
"Jakub Fafek",
|
||||||
|
"Syed Fahrin (Mr.Lemoyne)",
|
||||||
"faizal.faiz.ms@gmail.com",
|
"faizal.faiz.ms@gmail.com",
|
||||||
"FanDolz.",
|
"FanDolz.",
|
||||||
"Faqih",
|
"Faqih",
|
||||||
|
"Muhammad Faqih ''None''",
|
||||||
"Luiz Henrique Faria",
|
"Luiz Henrique Faria",
|
||||||
"FaultyAdventure",
|
"FaultyAdventure",
|
||||||
"Putra Riski Fauzi",
|
"Putra Riski Fauzi",
|
||||||
|
|
@ -465,10 +443,8 @@
|
||||||
"FerranC",
|
"FerranC",
|
||||||
"FertileChannelHD",
|
"FertileChannelHD",
|
||||||
"FightBiscuit",
|
"FightBiscuit",
|
||||||
"Filip",
|
|
||||||
"filip",
|
"filip",
|
||||||
"Filip117",
|
"Filip117",
|
||||||
"Filip117",
|
|
||||||
"Firdaus",
|
"Firdaus",
|
||||||
"Daffa Firdaus",
|
"Daffa Firdaus",
|
||||||
"Aldereus Fire",
|
"Aldereus Fire",
|
||||||
|
|
@ -488,6 +464,7 @@
|
||||||
"Roberto G",
|
"Roberto G",
|
||||||
"Fabian G.L.",
|
"Fabian G.L.",
|
||||||
"G192",
|
"G192",
|
||||||
|
"MZ G4MES",
|
||||||
"Gabriel",
|
"Gabriel",
|
||||||
"João Gabriel",
|
"João Gabriel",
|
||||||
"Gabriele",
|
"Gabriele",
|
||||||
|
|
@ -503,6 +480,7 @@
|
||||||
"krish gator",
|
"krish gator",
|
||||||
"gene.mTs",
|
"gene.mTs",
|
||||||
"GeoMatHeo",
|
"GeoMatHeo",
|
||||||
|
"GG (9.2)",
|
||||||
"GHAIS",
|
"GHAIS",
|
||||||
"Omar Ghali",
|
"Omar Ghali",
|
||||||
"GhostGamer",
|
"GhostGamer",
|
||||||
|
|
@ -520,14 +498,12 @@
|
||||||
"God丶烛龙",
|
"God丶烛龙",
|
||||||
"박준서(PJS GoodNews)",
|
"박준서(PJS GoodNews)",
|
||||||
"Nicola Grassi",
|
"Nicola Grassi",
|
||||||
"Nicola Grassi",
|
|
||||||
"Gerrit Grobler",
|
"Gerrit Grobler",
|
||||||
"Oliver Grosskloss",
|
"Oliver Grosskloss",
|
||||||
"Alexis Guijarro",
|
"Alexis Guijarro",
|
||||||
"Guilherme",
|
"Guilherme",
|
||||||
"Victor Guillemot",
|
"Victor Guillemot",
|
||||||
"Guillermo",
|
"Guillermo",
|
||||||
"Guillermo",
|
|
||||||
"SHOBHIT GUPTA",
|
"SHOBHIT GUPTA",
|
||||||
"Gurad",
|
"Gurad",
|
||||||
"Max Guskov",
|
"Max Guskov",
|
||||||
|
|
@ -541,20 +517,22 @@
|
||||||
"hadi",
|
"hadi",
|
||||||
"hafzanpajan",
|
"hafzanpajan",
|
||||||
"Haidar",
|
"Haidar",
|
||||||
"جود حيدر/joud haidar",
|
|
||||||
"Joud haidar",
|
"Joud haidar",
|
||||||
|
"جود حيدر/joud haidar",
|
||||||
|
"Halox",
|
||||||
"HamCam1015",
|
"HamCam1015",
|
||||||
"hamed",
|
"hamed",
|
||||||
"Zulfikar Hanif",
|
"Zulfikar Hanif",
|
||||||
"Happaphus",
|
"Happaphus",
|
||||||
"Hariq",
|
"Hariq",
|
||||||
|
"harojan",
|
||||||
"Abdi Haryadi",
|
"Abdi Haryadi",
|
||||||
"Mohammad hasan",
|
|
||||||
"Hasan",
|
"Hasan",
|
||||||
|
"Mohammad hasan",
|
||||||
"Emil Hauge",
|
"Emil Hauge",
|
||||||
|
"Arian Haxhijaj",
|
||||||
"Ergin Haxhijaj",
|
"Ergin Haxhijaj",
|
||||||
"Florian Haxhijaj",
|
"Florian Haxhijaj",
|
||||||
"Arian Haxhijaj",
|
|
||||||
"Hayate",
|
"Hayate",
|
||||||
"Hayate16",
|
"Hayate16",
|
||||||
"Lukas Heim",
|
"Lukas Heim",
|
||||||
|
|
@ -583,11 +561,11 @@
|
||||||
"hola",
|
"hola",
|
||||||
"Sebasian Varela Holguin",
|
"Sebasian Varela Holguin",
|
||||||
"Jeremy Horbul",
|
"Jeremy Horbul",
|
||||||
"hosein",
|
|
||||||
"Hosein",
|
"Hosein",
|
||||||
"hoseinا",
|
"hoseinا",
|
||||||
"Phan Lê Minh Hoàng",
|
"Phan Lê Minh Hoàng",
|
||||||
"Jorge Isaac Huertero",
|
"Jorge Isaac Huertero",
|
||||||
|
"Hussain",
|
||||||
"Umair Hussain",
|
"Umair Hussain",
|
||||||
"Hussam",
|
"Hussam",
|
||||||
"Adrian Höfer",
|
"Adrian Höfer",
|
||||||
|
|
@ -607,6 +585,7 @@
|
||||||
"IlyxaGold",
|
"IlyxaGold",
|
||||||
"d imitris",
|
"d imitris",
|
||||||
"Nik ali imran",
|
"Nik ali imran",
|
||||||
|
"IND_PIYUSH",
|
||||||
"Indecisive",
|
"Indecisive",
|
||||||
"indieGEARgames",
|
"indieGEARgames",
|
||||||
"Indohuman",
|
"Indohuman",
|
||||||
|
|
@ -616,7 +595,6 @@
|
||||||
"Tobias Dencker Israelsen",
|
"Tobias Dencker Israelsen",
|
||||||
"Kegyes István",
|
"Kegyes István",
|
||||||
"Itamar",
|
"Itamar",
|
||||||
"ivan",
|
|
||||||
"Ivan",
|
"Ivan",
|
||||||
"iViietZ",
|
"iViietZ",
|
||||||
"Al jabbar",
|
"Al jabbar",
|
||||||
|
|
@ -635,7 +613,6 @@
|
||||||
"Jeemboo",
|
"Jeemboo",
|
||||||
"Jembhut",
|
"Jembhut",
|
||||||
"CrackerKSR (Kishor Jena)",
|
"CrackerKSR (Kishor Jena)",
|
||||||
"CrackerKSR (Kishor Jena)",
|
|
||||||
"CrackerKSR (Kishor Jena))",
|
"CrackerKSR (Kishor Jena))",
|
||||||
"Jeroen",
|
"Jeroen",
|
||||||
"Jetty",
|
"Jetty",
|
||||||
|
|
@ -650,15 +627,17 @@
|
||||||
"JoaoVitorBF",
|
"JoaoVitorBF",
|
||||||
"joaquin",
|
"joaquin",
|
||||||
"Lex Johannes",
|
"Lex Johannes",
|
||||||
"Steven john",
|
|
||||||
"Ksteven john",
|
|
||||||
"John",
|
"John",
|
||||||
|
"Ksteven john",
|
||||||
|
"Steven john",
|
||||||
"Johnny",
|
"Johnny",
|
||||||
"joke",
|
"joke",
|
||||||
"Jonatas",
|
"Jonatas",
|
||||||
"Jop",
|
"Jop",
|
||||||
|
"Joseetion",
|
||||||
"Joseph",
|
"Joseph",
|
||||||
"Joshep",
|
"Joshep",
|
||||||
|
"Rudransh Joshi (FireHead)",
|
||||||
"joshuapiper",
|
"joshuapiper",
|
||||||
"Jossiney",
|
"Jossiney",
|
||||||
"juanramirez",
|
"juanramirez",
|
||||||
|
|
@ -677,13 +656,12 @@
|
||||||
"KalakCZ",
|
"KalakCZ",
|
||||||
"Adam Kalousek",
|
"Adam Kalousek",
|
||||||
"kalpesh",
|
"kalpesh",
|
||||||
"kalyan",
|
|
||||||
"Kalyan",
|
"Kalyan",
|
||||||
"Kamal",
|
"Kamal",
|
||||||
|
"Kamil (Limak09)",
|
||||||
"Smurfit Kappa",
|
"Smurfit Kappa",
|
||||||
"Mustafa Karabacak",
|
"Mustafa Karabacak",
|
||||||
"karabin",
|
"karabin",
|
||||||
"Burak Karadeniz",
|
|
||||||
"Burak karadeniz",
|
"Burak karadeniz",
|
||||||
"Burak Karadeniz(MythB)",
|
"Burak Karadeniz(MythB)",
|
||||||
"Daniel Karami",
|
"Daniel Karami",
|
||||||
|
|
@ -699,6 +677,7 @@
|
||||||
"Khaild1717",
|
"Khaild1717",
|
||||||
"muh khairul",
|
"muh khairul",
|
||||||
"Khalid",
|
"Khalid",
|
||||||
|
"KhalidPlaysYT",
|
||||||
"khalio",
|
"khalio",
|
||||||
"$RICO$ KhevenMito",
|
"$RICO$ KhevenMito",
|
||||||
"Khwezi",
|
"Khwezi",
|
||||||
|
|
@ -729,12 +708,12 @@
|
||||||
"kroш)",
|
"kroш)",
|
||||||
"Patel krumil",
|
"Patel krumil",
|
||||||
"Krunal",
|
"Krunal",
|
||||||
"sarath kumar",
|
|
||||||
"Alok Kumar",
|
"Alok Kumar",
|
||||||
|
"sarath kumar",
|
||||||
"Aapeli Kumpulainen",
|
"Aapeli Kumpulainen",
|
||||||
"Aldhiza Kurniawan",
|
"Aldhiza Kurniawan",
|
||||||
"Rasyid Kurniawan",
|
|
||||||
"Arif Kurniawan",
|
"Arif Kurniawan",
|
||||||
|
"Rasyid Kurniawan",
|
||||||
"Wahyu Kurniawan",
|
"Wahyu Kurniawan",
|
||||||
"KurtWagner",
|
"KurtWagner",
|
||||||
"Daanii Kusnanta",
|
"Daanii Kusnanta",
|
||||||
|
|
@ -743,8 +722,8 @@
|
||||||
"L_JK",
|
"L_JK",
|
||||||
"John Patrick Lachica",
|
"John Patrick Lachica",
|
||||||
"m a lakum",
|
"m a lakum",
|
||||||
"Nicklas Larsen",
|
|
||||||
"K. Larsen",
|
"K. Larsen",
|
||||||
|
"Nicklas Larsen",
|
||||||
"Shin Lasung",
|
"Shin Lasung",
|
||||||
"Sampo Launonen",
|
"Sampo Launonen",
|
||||||
"Lazered",
|
"Lazered",
|
||||||
|
|
@ -753,8 +732,8 @@
|
||||||
"Mick Lemmens",
|
"Mick Lemmens",
|
||||||
"Leo",
|
"Leo",
|
||||||
"Lester",
|
"Lester",
|
||||||
"Szajkajó Levente",
|
|
||||||
"Szajkajkó Levente",
|
"Szajkajkó Levente",
|
||||||
|
"Szajkajó Levente",
|
||||||
"Johannes Lex",
|
"Johannes Lex",
|
||||||
"Gastón Lezcano",
|
"Gastón Lezcano",
|
||||||
"Shuaibing Li",
|
"Shuaibing Li",
|
||||||
|
|
@ -771,7 +750,6 @@
|
||||||
"Loex",
|
"Loex",
|
||||||
"Loko",
|
"Loko",
|
||||||
"Longkencok",
|
"Longkencok",
|
||||||
"Longkencok",
|
|
||||||
"looooooooou",
|
"looooooooou",
|
||||||
"LordHiohi",
|
"LordHiohi",
|
||||||
"Lordigno",
|
"Lordigno",
|
||||||
|
|
@ -792,11 +770,11 @@
|
||||||
"Luka",
|
"Luka",
|
||||||
"Luke",
|
"Luke",
|
||||||
"Lukman",
|
"Lukman",
|
||||||
"Lukman",
|
|
||||||
"Hermanni Luosujärvi",
|
"Hermanni Luosujärvi",
|
||||||
"Lurã",
|
"Lurã",
|
||||||
"Geogre Lyu",
|
"Geogre Lyu",
|
||||||
"M.R.T",
|
"M.R.T",
|
||||||
|
"Mac 143338",
|
||||||
"MaceracıMS",
|
"MaceracıMS",
|
||||||
"Samuel Maciel",
|
"Samuel Maciel",
|
||||||
"Djawad madi",
|
"Djawad madi",
|
||||||
|
|
@ -810,6 +788,7 @@
|
||||||
"Majestozão",
|
"Majestozão",
|
||||||
"Maks1212",
|
"Maks1212",
|
||||||
"Malaysian",
|
"Malaysian",
|
||||||
|
"EMILIO MALQUIN",
|
||||||
"MAMAD",
|
"MAMAD",
|
||||||
"Mani",
|
"Mani",
|
||||||
"Manimutharu",
|
"Manimutharu",
|
||||||
|
|
@ -827,7 +806,6 @@
|
||||||
"Stefan Markovic",
|
"Stefan Markovic",
|
||||||
"Marouene",
|
"Marouene",
|
||||||
"Marošsko",
|
"Marošsko",
|
||||||
"Martin",
|
|
||||||
"martin",
|
"martin",
|
||||||
"Philip Martin",
|
"Philip Martin",
|
||||||
"MartinZG007",
|
"MartinZG007",
|
||||||
|
|
@ -840,6 +818,7 @@
|
||||||
"Eduardo de Matos",
|
"Eduardo de Matos",
|
||||||
"Matteo",
|
"Matteo",
|
||||||
"Matthias",
|
"Matthias",
|
||||||
|
"Ihsan Maulana ( @ihsanm27)",
|
||||||
"Federico Mazzone",
|
"Federico Mazzone",
|
||||||
"Andrea Mazzucchelli",
|
"Andrea Mazzucchelli",
|
||||||
"Medic别闹我有药",
|
"Medic别闹我有药",
|
||||||
|
|
@ -872,14 +851,11 @@
|
||||||
"Moh",
|
"Moh",
|
||||||
"Mohamadali",
|
"Mohamadali",
|
||||||
"Mohamed",
|
"Mohamed",
|
||||||
"Mohamed",
|
|
||||||
"mohammad",
|
|
||||||
"Mohammad",
|
"Mohammad",
|
||||||
"Mohammad11dembele",
|
"Mohammad11dembele",
|
||||||
"Mohammed",
|
"Mohammed",
|
||||||
"1n Mohhaamad",
|
"1n Mohhaamad",
|
||||||
"MONIRIE",
|
"MONIRIE",
|
||||||
"carlos montalvo",
|
|
||||||
"Carlos Montalvo",
|
"Carlos Montalvo",
|
||||||
"Ederson Moraes",
|
"Ederson Moraes",
|
||||||
"Eduardo Moreira",
|
"Eduardo Moreira",
|
||||||
|
|
@ -893,19 +869,19 @@
|
||||||
"MrGlu10free",
|
"MrGlu10free",
|
||||||
"Mrmaxmeier",
|
"Mrmaxmeier",
|
||||||
"MrNexis",
|
"MrNexis",
|
||||||
|
"MrS0meone",
|
||||||
"Msta",
|
"Msta",
|
||||||
"Muhammed Muhsin",
|
"Muhammed Muhsin",
|
||||||
"MujtabaFR",
|
"MujtabaFR",
|
||||||
"Muni",
|
"Muni",
|
||||||
"Mohammed Musthafa",
|
|
||||||
"Hisham Musthafa",
|
"Hisham Musthafa",
|
||||||
|
"Mohammed Musthafa",
|
||||||
"MUZAMMIL",
|
"MUZAMMIL",
|
||||||
"Mwss",
|
"Mwss",
|
||||||
"mythbrk00@gmail.com",
|
"mythbrk00@gmail.com",
|
||||||
"Sajti Márk",
|
"Sajti Márk",
|
||||||
"Samuel Mörling",
|
"Samuel Mörling",
|
||||||
"Luca Müller",
|
"Luca Müller",
|
||||||
"Nacho",
|
|
||||||
"nacho",
|
"nacho",
|
||||||
"Nagaarjun(pongal)",
|
"Nagaarjun(pongal)",
|
||||||
"Nasser",
|
"Nasser",
|
||||||
|
|
@ -920,6 +896,8 @@
|
||||||
"NecroMeerkat",
|
"NecroMeerkat",
|
||||||
"Neel",
|
"Neel",
|
||||||
"Nemeil",
|
"Nemeil",
|
||||||
|
"Mattia Nepote",
|
||||||
|
"Gabriel Del Nero",
|
||||||
"nevergpdia",
|
"nevergpdia",
|
||||||
"Andrew Nevero",
|
"Andrew Nevero",
|
||||||
"Newt",
|
"Newt",
|
||||||
|
|
@ -929,7 +907,6 @@
|
||||||
"Nico",
|
"Nico",
|
||||||
"Nico-iVekko",
|
"Nico-iVekko",
|
||||||
"Nicola",
|
"Nicola",
|
||||||
"Nicola",
|
|
||||||
"Nicolas",
|
"Nicolas",
|
||||||
"Frederik Nielsen",
|
"Frederik Nielsen",
|
||||||
"Nikali2007",
|
"Nikali2007",
|
||||||
|
|
@ -950,6 +927,7 @@
|
||||||
"Ntinakos555",
|
"Ntinakos555",
|
||||||
"NullWizard",
|
"NullWizard",
|
||||||
"Dhimas Wildan Nz",
|
"Dhimas Wildan Nz",
|
||||||
|
"*** Adel NZ. ***",
|
||||||
"Ognjen",
|
"Ognjen",
|
||||||
"Bastián Olea",
|
"Bastián Olea",
|
||||||
"Nikita Oleshko",
|
"Nikita Oleshko",
|
||||||
|
|
@ -960,11 +938,13 @@
|
||||||
"Zangar Orynbetov",
|
"Zangar Orynbetov",
|
||||||
"Osmanlı2002",
|
"Osmanlı2002",
|
||||||
"Osmanys",
|
"Osmanys",
|
||||||
|
"OyUnBoZaN (NEMUTLUTURKUMDİYENE)",
|
||||||
"pack",
|
"pack",
|
||||||
"PALASH",
|
"PALASH",
|
||||||
"Giorgio Palmieri",
|
"Giorgio Palmieri",
|
||||||
"Abhinay Pandey",
|
"Abhinay Pandey",
|
||||||
"PangpondTH",
|
"PangpondTH",
|
||||||
|
"PantheRoP",
|
||||||
"Gavin Park",
|
"Gavin Park",
|
||||||
"Pastis69",
|
"Pastis69",
|
||||||
"Sagar patil",
|
"Sagar patil",
|
||||||
|
|
@ -975,6 +955,7 @@
|
||||||
"PC189085",
|
"PC189085",
|
||||||
"PC192082",
|
"PC192082",
|
||||||
"pc192089",
|
"pc192089",
|
||||||
|
"PC261133",
|
||||||
"Pedro",
|
"Pedro",
|
||||||
"Jiren/Juan Pedro",
|
"Jiren/Juan Pedro",
|
||||||
"Peque",
|
"Peque",
|
||||||
|
|
@ -984,7 +965,6 @@
|
||||||
"Khoi Pete",
|
"Khoi Pete",
|
||||||
"Kacper Petryczko",
|
"Kacper Petryczko",
|
||||||
"pett",
|
"pett",
|
||||||
"petulakulina",
|
|
||||||
"Petulakulina",
|
"Petulakulina",
|
||||||
"Pez",
|
"Pez",
|
||||||
"Đào Xuân Phi",
|
"Đào Xuân Phi",
|
||||||
|
|
@ -1005,9 +985,10 @@
|
||||||
"Pluisbaard",
|
"Pluisbaard",
|
||||||
"Jaideep Kumar PM",
|
"Jaideep Kumar PM",
|
||||||
"podolianyn",
|
"podolianyn",
|
||||||
|
"poggersCat",
|
||||||
"Pooya",
|
"Pooya",
|
||||||
"pouriya",
|
"pouriya",
|
||||||
"pranav",
|
"Pranav",
|
||||||
"Luca Preibsch",
|
"Luca Preibsch",
|
||||||
"Fabian Prinz",
|
"Fabian Prinz",
|
||||||
"Private0201",
|
"Private0201",
|
||||||
|
|
@ -1027,9 +1008,9 @@
|
||||||
"raghul",
|
"raghul",
|
||||||
"khaled rahma",
|
"khaled rahma",
|
||||||
"Rayhan Rahmats",
|
"Rayhan Rahmats",
|
||||||
"Ростислав RAMAGISTER",
|
|
||||||
"Rostislav RAMAGISTER",
|
|
||||||
"1. Ramagister",
|
"1. Ramagister",
|
||||||
|
"Rostislav RAMAGISTER",
|
||||||
|
"Ростислав RAMAGISTER",
|
||||||
"Lucas Ramalho",
|
"Lucas Ramalho",
|
||||||
"Rahul Raman",
|
"Rahul Raman",
|
||||||
"Vicente Ramirez",
|
"Vicente Ramirez",
|
||||||
|
|
@ -1062,6 +1043,7 @@
|
||||||
"rexKis",
|
"rexKis",
|
||||||
"Victor Jesus Arroyo Reyes",
|
"Victor Jesus Arroyo Reyes",
|
||||||
"Mohammad Reza",
|
"Mohammad Reza",
|
||||||
|
"Joel RG (Plar&Teporingo)",
|
||||||
"rian",
|
"rian",
|
||||||
"Bruno Ricardo",
|
"Bruno Ricardo",
|
||||||
"Riccardo",
|
"Riccardo",
|
||||||
|
|
@ -1079,12 +1061,13 @@
|
||||||
"rizaldy",
|
"rizaldy",
|
||||||
"Rodbert",
|
"Rodbert",
|
||||||
"Rodrigo",
|
"Rodrigo",
|
||||||
"Marco Rodríguez",
|
|
||||||
"Giovanni Rodríguez",
|
"Giovanni Rodríguez",
|
||||||
|
"Marco Rodríguez",
|
||||||
"Rohan",
|
"Rohan",
|
||||||
"Rohit",
|
"Rohit",
|
||||||
"Bihary Roland",
|
"Bihary Roland",
|
||||||
"Jericho roldan",
|
"Jericho roldan",
|
||||||
|
"Roma :D",
|
||||||
"Roman",
|
"Roman",
|
||||||
"Mathias Romano",
|
"Mathias Romano",
|
||||||
"Ronald",
|
"Ronald",
|
||||||
|
|
@ -1094,7 +1077,6 @@
|
||||||
"Mario Roveda",
|
"Mario Roveda",
|
||||||
"Roy",
|
"Roy",
|
||||||
"Rubanen",
|
"Rubanen",
|
||||||
"kaj rumpff",
|
|
||||||
"Kaj Rumpff",
|
"Kaj Rumpff",
|
||||||
"Dosta Rumson",
|
"Dosta Rumson",
|
||||||
"Hong Ruoyong",
|
"Hong Ruoyong",
|
||||||
|
|
@ -1110,7 +1092,9 @@
|
||||||
"Bsam bu salh",
|
"Bsam bu salh",
|
||||||
"M. Rizki Agus Salim",
|
"M. Rizki Agus Salim",
|
||||||
"Salted",
|
"Salted",
|
||||||
|
"Salvo04",
|
||||||
"Guilherme Santana",
|
"Guilherme Santana",
|
||||||
|
"Ivan Santos :)",
|
||||||
"Diamond Sanwich",
|
"Diamond Sanwich",
|
||||||
"SAO_OMH",
|
"SAO_OMH",
|
||||||
"Dimas Saptandi",
|
"Dimas Saptandi",
|
||||||
|
|
@ -1134,6 +1118,7 @@
|
||||||
"Sharvesh",
|
"Sharvesh",
|
||||||
"Nalam Shashwath",
|
"Nalam Shashwath",
|
||||||
"Haige Shi",
|
"Haige Shi",
|
||||||
|
"ShockedGaming",
|
||||||
"Shayan Shokry",
|
"Shayan Shokry",
|
||||||
"Dominik Sikora",
|
"Dominik Sikora",
|
||||||
"Sebastian Silva",
|
"Sebastian Silva",
|
||||||
|
|
@ -1151,10 +1136,12 @@
|
||||||
"sobhan",
|
"sobhan",
|
||||||
"Nikhil sohan",
|
"Nikhil sohan",
|
||||||
"SoK",
|
"SoK",
|
||||||
|
"SPT Sosat",
|
||||||
"Soto",
|
"Soto",
|
||||||
"SpacingBat3",
|
"SpacingBat3",
|
||||||
"Jack sparrow",
|
"Jack sparrow",
|
||||||
"speddy16",
|
"speddy16",
|
||||||
|
"Spielfreake (Garke)",
|
||||||
"Spielfream",
|
"Spielfream",
|
||||||
"Spy",
|
"Spy",
|
||||||
"sss",
|
"sss",
|
||||||
|
|
@ -1222,14 +1209,12 @@
|
||||||
"Thura Tint",
|
"Thura Tint",
|
||||||
"Nishant Tiwari",
|
"Nishant Tiwari",
|
||||||
"Toloche",
|
"Toloche",
|
||||||
"Toloche",
|
|
||||||
"Tom",
|
"Tom",
|
||||||
"Juan Pablo Montoya Tomalá",
|
"Juan Pablo Montoya Tomalá",
|
||||||
"TomasNoobCz",
|
"TomasNoobCz",
|
||||||
"tomo",
|
"tomo",
|
||||||
"tongtong",
|
"tongtong",
|
||||||
"Tory",
|
"Tory",
|
||||||
"tozeleal",
|
|
||||||
"TozeLeal",
|
"TozeLeal",
|
||||||
"Trung Hieu Le Tran",
|
"Trung Hieu Le Tran",
|
||||||
"Translator",
|
"Translator",
|
||||||
|
|
@ -1265,6 +1250,7 @@
|
||||||
"Vigosl",
|
"Vigosl",
|
||||||
"vijay",
|
"vijay",
|
||||||
"vinicius",
|
"vinicius",
|
||||||
|
"Robin Vinith",
|
||||||
"vinoth",
|
"vinoth",
|
||||||
"VTOR",
|
"VTOR",
|
||||||
"Fernando Véliz",
|
"Fernando Véliz",
|
||||||
|
|
@ -1277,8 +1263,8 @@
|
||||||
"Shaiful Nezan Bin Abdul Wahid",
|
"Shaiful Nezan Bin Abdul Wahid",
|
||||||
"wahyu",
|
"wahyu",
|
||||||
"Vaibhav Wakchaure",
|
"Vaibhav Wakchaure",
|
||||||
"Will Wang",
|
|
||||||
"Simon Wang",
|
"Simon Wang",
|
||||||
|
"Will Wang",
|
||||||
"Tilman Weber",
|
"Tilman Weber",
|
||||||
"webparham",
|
"webparham",
|
||||||
"Wesley",
|
"Wesley",
|
||||||
|
|
@ -1288,7 +1274,9 @@
|
||||||
"Will",
|
"Will",
|
||||||
"william",
|
"william",
|
||||||
"Windyy",
|
"Windyy",
|
||||||
|
"wither",
|
||||||
"Tobias Wohlfarth",
|
"Tobias Wohlfarth",
|
||||||
|
"wojtekpolska",
|
||||||
"Doni Wolf",
|
"Doni Wolf",
|
||||||
"Tommy Wong",
|
"Tommy Wong",
|
||||||
"WonkaWoe",
|
"WonkaWoe",
|
||||||
|
|
@ -1314,7 +1302,6 @@
|
||||||
"youcef",
|
"youcef",
|
||||||
"Yousuf",
|
"Yousuf",
|
||||||
"Yovan182Sunbreaker",
|
"Yovan182Sunbreaker",
|
||||||
"YRTKING",
|
|
||||||
"Yrtking",
|
"Yrtking",
|
||||||
"All Star YT",
|
"All Star YT",
|
||||||
"Yudhis",
|
"Yudhis",
|
||||||
|
|
@ -1323,11 +1310,11 @@
|
||||||
"NEEROOA Muhammad Yusuf",
|
"NEEROOA Muhammad Yusuf",
|
||||||
"Yuuki",
|
"Yuuki",
|
||||||
"yyr_rs",
|
"yyr_rs",
|
||||||
"Sam Z",
|
|
||||||
"z",
|
"z",
|
||||||
|
"Sam Z",
|
||||||
"Z@p€g@m€r",
|
"Z@p€g@m€r",
|
||||||
"Dawn Zac",
|
|
||||||
"Zac",
|
"Zac",
|
||||||
|
"Dawn Zac",
|
||||||
"Zaidan64GT",
|
"Zaidan64GT",
|
||||||
"Zain",
|
"Zain",
|
||||||
"Zajle",
|
"Zajle",
|
||||||
|
|
@ -1339,8 +1326,8 @@
|
||||||
"Daniele Zennaro",
|
"Daniele Zennaro",
|
||||||
"zfuw668",
|
"zfuw668",
|
||||||
"Alex Zhao",
|
"Alex Zhao",
|
||||||
"Riven Zhao",
|
|
||||||
"Doge Zhao",
|
"Doge Zhao",
|
||||||
|
"Riven Zhao",
|
||||||
"jim ZHOU",
|
"jim ZHOU",
|
||||||
"Mohammad ziar",
|
"Mohammad ziar",
|
||||||
"zJairO",
|
"zJairO",
|
||||||
|
|
@ -1348,47 +1335,49 @@
|
||||||
"Nagy Zoltán",
|
"Nagy Zoltán",
|
||||||
"Lukáš Zounek",
|
"Lukáš Zounek",
|
||||||
"ZpeedTube",
|
"ZpeedTube",
|
||||||
"Adeel (AdeZ {@adez_})",
|
|
||||||
"|_Jenqa_|",
|
"|_Jenqa_|",
|
||||||
"¥¥S.A.N.A¥",
|
"¥¥S.A.N.A¥",
|
||||||
"Danijel Ćelić",
|
"Danijel Ćelić",
|
||||||
"Štěpán",
|
"Štěpán",
|
||||||
"Cristian Țicu",
|
"Cristian Țicu",
|
||||||
"Cristian Țicu",
|
|
||||||
"Μπαρλάς Παύλος-Ιάσονας",
|
"Μπαρλάς Παύλος-Ιάσονας",
|
||||||
"Роман Абрамо",
|
"Роман Абрамо",
|
||||||
"Роман Абрамов",
|
"Роман Абрамов",
|
||||||
|
"Андрей (Krays)",
|
||||||
"Андрій",
|
"Андрій",
|
||||||
"Богдан",
|
"Богдан",
|
||||||
"Тот самый Вильян",
|
|
||||||
"опять Вильян",
|
"опять Вильян",
|
||||||
|
"Тот самый Вильян",
|
||||||
"Влад",
|
"Влад",
|
||||||
|
"данил",
|
||||||
|
"дибисяра",
|
||||||
"Евгений(Eugene)",
|
"Евгений(Eugene)",
|
||||||
|
"Артём Зобков (KoLenka)",
|
||||||
"Юстин Иглин",
|
"Юстин Иглин",
|
||||||
"Игор",
|
"Игор",
|
||||||
"Кирилл",
|
"Кирилл",
|
||||||
"Кирилл Климов",
|
|
||||||
"Климов",
|
"Климов",
|
||||||
|
"Кирилл Климов",
|
||||||
"Андрей Коваленко",
|
"Андрей Коваленко",
|
||||||
|
"куатжан",
|
||||||
"Ваня Марков",
|
"Ваня Марков",
|
||||||
"Игор Милановић",
|
|
||||||
"Драган Милановић",
|
"Драган Милановић",
|
||||||
"Снежана Милановић",
|
"Игор Милановић",
|
||||||
"Марко Милановић",
|
"Марко Милановић",
|
||||||
"Михаил",
|
"Снежана Милановић",
|
||||||
|
"михаил",
|
||||||
|
"boba (Бодік) доперекладав Укр мову",
|
||||||
"Арсений Мостовщиков",
|
"Арсений Мостовщиков",
|
||||||
"Принцип",
|
"Принцип",
|
||||||
|
"Пук-пук пук-пук",
|
||||||
"Михаил Радионов",
|
"Михаил Радионов",
|
||||||
|
"Даниил Рахов \"DaNiiRuSPlay\"",
|
||||||
"Рома",
|
"Рома",
|
||||||
|
"Ромашка :3",
|
||||||
"Кирилл Рябцев",
|
"Кирилл Рябцев",
|
||||||
"ZEPT\"Александр Фартунов\"",
|
"ZEPT\"Александр Фартунов\"",
|
||||||
"Өмүрзаков Эрсултан",
|
"Өмүрзаков Эрсултан",
|
||||||
"данил",
|
"Ярослав \"Noiseaholic\"",
|
||||||
"куатжан",
|
|
||||||
"михаил",
|
|
||||||
"boba (Бодік) доперекладав Укр мову",
|
|
||||||
"Пук-пук пук-пук",
|
|
||||||
"Қуатжан",
|
|
||||||
"қуатжан",
|
"қуатжан",
|
||||||
"اا",
|
"اا",
|
||||||
"احمد اسامه",
|
"احمد اسامه",
|
||||||
|
|
@ -1396,7 +1385,10 @@
|
||||||
"البطل",
|
"البطل",
|
||||||
"بسام البطل",
|
"بسام البطل",
|
||||||
"ابو العواصف2020",
|
"ابو العواصف2020",
|
||||||
|
"عبدالرحمن النجم",
|
||||||
|
"امیرعلی",
|
||||||
"اوتاكوDZ",
|
"اوتاكوDZ",
|
||||||
|
"ایلی",
|
||||||
"بساام",
|
"بساام",
|
||||||
"جود",
|
"جود",
|
||||||
"حسين حساني",
|
"حسين حساني",
|
||||||
|
|
@ -1413,12 +1405,11 @@
|
||||||
"محمد حسن عزیزی",
|
"محمد حسن عزیزی",
|
||||||
"علی",
|
"علی",
|
||||||
"سيد عمر",
|
"سيد عمر",
|
||||||
"امیر محمد",
|
|
||||||
"اللهم صل على محمد وآل محمد",
|
"اللهم صل على محمد وآل محمد",
|
||||||
|
"امیر محمد",
|
||||||
"سعید مهجوری",
|
"سعید مهجوری",
|
||||||
"مهدی",
|
"مهدی",
|
||||||
"سید احمد موسوی",
|
"سید احمد موسوی",
|
||||||
"سید احمد موسوی",
|
|
||||||
"عادل ن.",
|
"عادل ن.",
|
||||||
"عادل نوروزی",
|
"عادل نوروزی",
|
||||||
"ه۶۹",
|
"ه۶۹",
|
||||||
|
|
@ -1426,7 +1417,6 @@
|
||||||
"١٢٣٤٥",
|
"١٢٣٤٥",
|
||||||
"علیرضا پودینه",
|
"علیرضا پودینه",
|
||||||
"वेदाँश त्यागी",
|
"वेदाँश त्यागी",
|
||||||
"वेदाँश त्यागी",
|
|
||||||
"അർഷഖ് ഹസ്സൻ",
|
"അർഷഖ് ഹസ്സൻ",
|
||||||
"วีรภัทร",
|
"วีรภัทร",
|
||||||
"แมวผงาด(JuniorMeowMeow)",
|
"แมวผงาด(JuniorMeowMeow)",
|
||||||
|
|
@ -1454,7 +1444,6 @@
|
||||||
"神仙",
|
"神仙",
|
||||||
"鲲鹏元帅",
|
"鲲鹏元帅",
|
||||||
"꧁ℤephyro꧂",
|
"꧁ℤephyro꧂",
|
||||||
"꧁ℤephyro꧂",
|
|
||||||
"권찬근",
|
"권찬근",
|
||||||
"김원재",
|
"김원재",
|
||||||
"넌",
|
"넌",
|
||||||
|
|
@ -1465,7 +1454,6 @@
|
||||||
"이지민",
|
"이지민",
|
||||||
"일베저장소",
|
"일베저장소",
|
||||||
"전감호",
|
"전감호",
|
||||||
"BombsquadKorea 네이버 카페",
|
"BombsquadKorea 네이버 카페"
|
||||||
"The Bomboler 💣"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
74
dist/ba_data/data/languages/arabic.json
vendored
74
dist/ba_data/data/languages/arabic.json
vendored
|
|
@ -1,9 +1,9 @@
|
||||||
{
|
{
|
||||||
"accountSettingsWindow": {
|
"accountSettingsWindow": {
|
||||||
"accountNameRules": "لا يمكن لأسماء الحِسابَات ان تحتوي إيموجي أو حروف خاصة",
|
"accountNameRules": "لا يمكن لأسماء الحِسابَات ان تحتوي على إيموجي أو حروف خاصة",
|
||||||
"accountProfileText": "معلومات اللاعبين",
|
"accountProfileText": "معلومات اللاعبين",
|
||||||
"accountsText": "حسابات",
|
"accountsText": "حسابات",
|
||||||
"achievementProgressText": "${TOTAL} من اصل ${COUNT} انجازاتك:انجزت",
|
"achievementProgressText": "${TOTAL} من أصل ${COUNT} إنجازاتك: أنجزت",
|
||||||
"campaignProgressText": "تقدم الحملة [HARD]:${PROGRESS}",
|
"campaignProgressText": "تقدم الحملة [HARD]:${PROGRESS}",
|
||||||
"changeOncePerSeason": "يمكنك تغييره مرة واحدة في الموسم",
|
"changeOncePerSeason": "يمكنك تغييره مرة واحدة في الموسم",
|
||||||
"changeOncePerSeasonError": "يجب عليك الانتظار حتى الموسم القادم لتغيير هذا مجددا (${NUM} أيام )",
|
"changeOncePerSeasonError": "يجب عليك الانتظار حتى الموسم القادم لتغيير هذا مجددا (${NUM} أيام )",
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
"linkAccountsText": "ربط حساب",
|
"linkAccountsText": "ربط حساب",
|
||||||
"linkedAccountsText": ": حساباتي المرتبطة",
|
"linkedAccountsText": ": حساباتي المرتبطة",
|
||||||
"nameChangeConfirm": "?${NAME} هل تريد تغير اسم حسابك الى",
|
"nameChangeConfirm": "?${NAME} هل تريد تغير اسم حسابك الى",
|
||||||
"resetProgressConfirmNoAchievementsText": "سوف يحذف هذا الخيار تقدمك في الحملات التعاونية ولم يحذف تذاكرك\nلا يمكن إلغاء هذا الخيار\nهل أنت متأكد ؟",
|
"resetProgressConfirmNoAchievementsText": "سوف يحذف هذا الخيار تقدمك في الحملات التعاونية ولن يحذف تذاكرك\nلا يمكن إلغاء هذا الخيار\nهل أنت متأكد ؟",
|
||||||
"resetProgressConfirmText": ":عند موافقتك على هذا الاخيار سوف يتم\n(حذف انجازاتك وتقدمك الحالي(لكن لن تخسر تَذَاكِرك\nاذا وافقت على هذا القرار لا يمكنك تراجع عنه\nهل أنت متأكد؟",
|
"resetProgressConfirmText": ":عند موافقتك على هذا الاخيار سوف يتم\n(حذف انجازاتك وتقدمك الحالي(لكن لن تخسر تَذَاكِرك\nاذا وافقت على هذا القرار لا يمكنك تراجع عنه\nهل أنت متأكد؟",
|
||||||
"resetProgressText": "إمسح تقدمك",
|
"resetProgressText": "إمسح تقدمك",
|
||||||
"setAccountName": "حدد إسم للحساب",
|
"setAccountName": "حدد إسم للحساب",
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
"testAccountWarningOculusText": "تحذير: انت تقوم بتسجيل الدخول باستخدام حساب تجريبي.\nسيستبدل بحساب حقيقي خلال هذا العام الذي من خلاله\nسوف تقدر على شراء البطاقات ومزايا أخرى.\n\nإلى الان يمكنك الحصول على جميع البطافات في اللعبة.\n(على الرغم من ذلك، قم بالحصول على حساب متقدم مجانا)",
|
"testAccountWarningOculusText": "تحذير: انت تقوم بتسجيل الدخول باستخدام حساب تجريبي.\nسيستبدل بحساب حقيقي خلال هذا العام الذي من خلاله\nسوف تقدر على شراء البطاقات ومزايا أخرى.\n\nإلى الان يمكنك الحصول على جميع البطافات في اللعبة.\n(على الرغم من ذلك، قم بالحصول على حساب متقدم مجانا)",
|
||||||
"ticketsText": "بطاقاتك الحالية:${COUNT}",
|
"ticketsText": "بطاقاتك الحالية:${COUNT}",
|
||||||
"titleText": "الحساب",
|
"titleText": "الحساب",
|
||||||
"unlinkAccountsInstructionsText": "حدد حسابا لإلغاء ربطة",
|
"unlinkAccountsInstructionsText": "حدد حسابا لإلغاء ربطه",
|
||||||
"unlinkAccountsText": "إلغاء ربط الحسابات",
|
"unlinkAccountsText": "إلغاء ربط الحسابات",
|
||||||
"viaAccount": "(${NAME} عبر الحساب)",
|
"viaAccount": "(${NAME} عبر الحساب)",
|
||||||
"youAreSignedInAsText": ": قمت بتسجيل الدخول كـ"
|
"youAreSignedInAsText": ": قمت بتسجيل الدخول كـ"
|
||||||
|
|
@ -70,7 +70,7 @@
|
||||||
"name": "الفوز المستحق"
|
"name": "الفوز المستحق"
|
||||||
},
|
},
|
||||||
"Free Loader": {
|
"Free Loader": {
|
||||||
"descriptionFull": "إبدأ بلعب وضع الحر للجميع مع لاعبين أو أكثر",
|
"descriptionFull": "إبدأ بلعب الوضع الحر للجميع مع لاعبين أو أكثر",
|
||||||
"descriptionFullComplete": "تم بدء لعبة بوضع الحرية للجميع مع لاعِبَيْنْ أو أكثر",
|
"descriptionFullComplete": "تم بدء لعبة بوضع الحرية للجميع مع لاعِبَيْنْ أو أكثر",
|
||||||
"name": "الفريق المجاني"
|
"name": "الفريق المجاني"
|
||||||
},
|
},
|
||||||
|
|
@ -215,55 +215,55 @@
|
||||||
"Rookie Onslaught Victory": {
|
"Rookie Onslaught Victory": {
|
||||||
"description": "هزيمة كل الجولات",
|
"description": "هزيمة كل الجولات",
|
||||||
"descriptionComplete": "هزم كل الجولات",
|
"descriptionComplete": "هزم كل الجولات",
|
||||||
"descriptionFull": "${LEVEL} هزيمة كل الجولات في",
|
"descriptionFull": "${LEVEL} اكسب كل الجولات في",
|
||||||
"descriptionFullComplete": "${LEVEL} هزم كل الجولات في",
|
"descriptionFullComplete": "${LEVEL} هزم كل الجولات في",
|
||||||
"name": "${LEVEL} النصر"
|
"name": "${LEVEL} لقد انتصرت"
|
||||||
},
|
},
|
||||||
"Runaround God": {
|
"Runaround God": {
|
||||||
"description": "أحرز 2000 نقطة",
|
"description": "أحرز 2000 نقطة",
|
||||||
"descriptionComplete": "أحرز 2000 نقطة",
|
"descriptionComplete": "أحرزت 2000 نقطة",
|
||||||
"descriptionFull": "${LEVEL} أحرز 2000 نقطة في",
|
"descriptionFull": "${LEVEL} أحرز 2000 نقطة في",
|
||||||
"descriptionFullComplete": "${LEVEL} أحرز 2000 نقطة في",
|
"descriptionFullComplete": "${LEVEL} أحرزت 2000 نقطة في",
|
||||||
"name": "${LEVEL} خارق"
|
"name": "${LEVEL} ملك"
|
||||||
},
|
},
|
||||||
"Runaround Master": {
|
"Runaround Master": {
|
||||||
"description": "أحرز 500 نقطة",
|
"description": "أحرز 500 نقطة",
|
||||||
"descriptionComplete": "أحرز 500 نقطة",
|
"descriptionComplete": "أحرزت 500 نقطة",
|
||||||
"descriptionFull": "${LEVEL} أحرز 500 نقطة في",
|
"descriptionFull": "${LEVEL} أحرز 500 نقطة في",
|
||||||
"descriptionFullComplete": "${LEVEL} أحرز 500 نقطة في",
|
"descriptionFullComplete": "${LEVEL} أحرزت 500 نقطة في",
|
||||||
"name": "${LEVEL} سيد"
|
"name": "${LEVEL} استاذ"
|
||||||
},
|
},
|
||||||
"Runaround Wizard": {
|
"Runaround Wizard": {
|
||||||
"description": "أحرز 1000 نقطة",
|
"description": "أحرز 1000 نقطة",
|
||||||
"descriptionComplete": "أحرز 1000 نقطة",
|
"descriptionComplete": "أحرزت 1000 نقطة",
|
||||||
"descriptionFull": "${LEVEL} أحرز 1000 نقطة في",
|
"descriptionFull": "${LEVEL} أحرز 1000 نقطة في",
|
||||||
"descriptionFullComplete": "${LEVEL} أحرز 1000 نقطة في",
|
"descriptionFullComplete": "${LEVEL} أحرزت 1000 نقطة في",
|
||||||
"name": "${LEVEL} ساحر"
|
"name": "${LEVEL} ساحر"
|
||||||
},
|
},
|
||||||
"Sharing is Caring": {
|
"Sharing is Caring": {
|
||||||
"descriptionFull": "شارك اللعبة مع صديق بنجاح",
|
"descriptionFull": "شارك اللعبة مع صديق بنجاح",
|
||||||
"descriptionFullComplete": "شارك اللعبة مع صديق بنجاح",
|
"descriptionFullComplete": "شارك اللعبة مع صديق بنجاح",
|
||||||
"name": "المشاركة تعني الاهتمام"
|
"name": "المشاركة اهتمام"
|
||||||
},
|
},
|
||||||
"Stayin' Alive": {
|
"Stayin' Alive": {
|
||||||
"description": "فز بدون أن تموت",
|
"description": "فز بدون أن تموت",
|
||||||
"descriptionComplete": "فاز بدون أن يموت",
|
"descriptionComplete": "فاز بدون أن يموت",
|
||||||
"descriptionFull": "بدون أن تموت ${LEVEL} فز",
|
"descriptionFull": "بدون أن تموت ${LEVEL} فز",
|
||||||
"descriptionFullComplete": "بدون أن يموت ${LEVEL} فاز",
|
"descriptionFullComplete": "بدون أن يموت ${LEVEL} فاز",
|
||||||
"name": "إبقى حيا"
|
"name": "البقاء حيا"
|
||||||
},
|
},
|
||||||
"Super Mega Punch": {
|
"Super Mega Punch": {
|
||||||
"description": "إلحاق الضرر 100٪ بلكمة واحدة",
|
"description": "إلحاق الضرر 100٪ بلكمة واحدة",
|
||||||
"descriptionComplete": "إلحاق الضرر 100٪ بلكمة واحدة",
|
"descriptionComplete": "ألحق الضرر 100٪ بلكمة واحدة",
|
||||||
"descriptionFull": "${LEVEL} إلحاق الضرر 100٪ بلكمة واحدة في",
|
"descriptionFull": "${LEVEL} إلحاق الضرر 100٪ بلكمة واحدة في",
|
||||||
"descriptionFullComplete": "${LEVEL} إلحاق الضرر 100٪ بلكمة واحدة في",
|
"descriptionFullComplete": "${LEVEL} ألحق الضرر 100٪ بلكمة واحدة في",
|
||||||
"name": "لكمة خارقة جبارة"
|
"name": "لكمة خارقة جبارة"
|
||||||
},
|
},
|
||||||
"Super Punch": {
|
"Super Punch": {
|
||||||
"description": "إلحاق الضرر 50٪ بلكمة واحدة",
|
"description": "إلحاق الضرر 50٪ بلكمة واحدة",
|
||||||
"descriptionComplete": "إلحاق الضرر 50٪ بلكمة واحدة",
|
"descriptionComplete": "ألحق الضرر 50٪ بلكمة واحدة",
|
||||||
"descriptionFull": "${LEVEL} إلحاق الضرر 50٪ بلكمة واحدة",
|
"descriptionFull": "${LEVEL} إلحاق الضرر 50٪ بلكمة واحدة",
|
||||||
"descriptionFullComplete": "${LEVEL} إلحاق الضرر 50٪ بلكمة واحدة",
|
"descriptionFullComplete": "${LEVEL} ألحق الضرر 50٪ بلكمة واحدة",
|
||||||
"name": "لكمة خارقة"
|
"name": "لكمة خارقة"
|
||||||
},
|
},
|
||||||
"TNT Terror": {
|
"TNT Terror": {
|
||||||
|
|
@ -279,7 +279,7 @@
|
||||||
"name": "لاعب فريق"
|
"name": "لاعب فريق"
|
||||||
},
|
},
|
||||||
"The Great Wall": {
|
"The Great Wall": {
|
||||||
"description": "أوقف كل شخص سيء",
|
"description": "أوقف كل الأشخاص السيئين",
|
||||||
"descriptionComplete": "أوقف كل شخص سيء",
|
"descriptionComplete": "أوقف كل شخص سيء",
|
||||||
"descriptionFull": "${LEVEL} أوقف كل شخص سيء في",
|
"descriptionFull": "${LEVEL} أوقف كل شخص سيء في",
|
||||||
"descriptionFullComplete": "${LEVEL} أوقف كل شخص سيء في",
|
"descriptionFullComplete": "${LEVEL} أوقف كل شخص سيء في",
|
||||||
|
|
@ -307,17 +307,17 @@
|
||||||
"name": "${LEVEL} إنتصار"
|
"name": "${LEVEL} إنتصار"
|
||||||
},
|
},
|
||||||
"Uber Onslaught Victory": {
|
"Uber Onslaught Victory": {
|
||||||
"description": "هزيمة كل الجولات",
|
"description": "انتصر في كل الجولات",
|
||||||
"descriptionComplete": "هزيمة كل الجولات",
|
"descriptionComplete": "هَزَم كل الجولات",
|
||||||
"descriptionFull": "${LEVEL} هزيمة كل الجولات في",
|
"descriptionFull": "${LEVEL} اهزم كل الجولات في",
|
||||||
"descriptionFullComplete": "${LEVEL} هزيمة كل الجولات في",
|
"descriptionFullComplete": "${LEVEL} هزم كل الجولات في",
|
||||||
"name": "${LEVEL} إنتصار"
|
"name": "${LEVEL} إنتصار"
|
||||||
},
|
},
|
||||||
"Uber Runaround Victory": {
|
"Uber Runaround Victory": {
|
||||||
"description": "أكمل كل الجولات",
|
"description": "أكمل كل الجولات",
|
||||||
"descriptionComplete": "أكمل كل الجولات",
|
"descriptionComplete": "أكملت كل الجولات",
|
||||||
"descriptionFull": "اكمل كل الجولات في ${LEVEL}",
|
"descriptionFull": "اكمل كل الجولات في ${LEVEL}",
|
||||||
"descriptionFullComplete": "أكمل كل الجولات في ${LEVEL}",
|
"descriptionFullComplete": "أكملت كل الجولات في ${LEVEL}",
|
||||||
"name": "${LEVEL} النصر"
|
"name": "${LEVEL} النصر"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -333,7 +333,7 @@
|
||||||
"apiVersionErrorText": "خطأ في تحميل الجزء ${NAME}; انه مخصص للإصدار رقم ${VERSION_USED}; يجب استخدام الإصدار ${VERSION_REQUIRED}.",
|
"apiVersionErrorText": "خطأ في تحميل الجزء ${NAME}; انه مخصص للإصدار رقم ${VERSION_USED}; يجب استخدام الإصدار ${VERSION_REQUIRED}.",
|
||||||
"audioSettingsWindow": {
|
"audioSettingsWindow": {
|
||||||
"headRelativeVRAudioInfoText": "(\"ذاتي\" فعله فقط عندما تكون سماعات الأذن موصولة",
|
"headRelativeVRAudioInfoText": "(\"ذاتي\" فعله فقط عندما تكون سماعات الأذن موصولة",
|
||||||
"headRelativeVRAudioText": "صوت VR معوافق مع حركة الرأس",
|
"headRelativeVRAudioText": "صوت VR موافق مع حركة الرأس",
|
||||||
"musicVolumeText": "مستوى الموسيقى",
|
"musicVolumeText": "مستوى الموسيقى",
|
||||||
"soundVolumeText": "مستوى الموسيقى",
|
"soundVolumeText": "مستوى الموسيقى",
|
||||||
"soundtrackButtonText": "المقاطع الصوتية",
|
"soundtrackButtonText": "المقاطع الصوتية",
|
||||||
|
|
@ -343,8 +343,8 @@
|
||||||
"autoText": "ذاتي الاختيار",
|
"autoText": "ذاتي الاختيار",
|
||||||
"backText": "للخلف",
|
"backText": "للخلف",
|
||||||
"banThisPlayerText": "حظر هاذا الاعب",
|
"banThisPlayerText": "حظر هاذا الاعب",
|
||||||
"bestOfFinalText": "الافضل في {COUNT} النهائية",
|
"bestOfFinalText": "الافضل في ${COUNT}",
|
||||||
"bestOfSeriesText": "${COUNT}افضل سلسلة ل",
|
"bestOfSeriesText": "من السلسلة ${COUNT}الأفضل في",
|
||||||
"bestOfUseFirstToInstead": 0,
|
"bestOfUseFirstToInstead": 0,
|
||||||
"bestRankText": "افضل ما أحرزت #${RANK}",
|
"bestRankText": "افضل ما أحرزت #${RANK}",
|
||||||
"bestRatingText": "أفضل معدّل قد أحرزته ${RATING}",
|
"bestRatingText": "أفضل معدّل قد أحرزته ${RATING}",
|
||||||
|
|
@ -709,7 +709,7 @@
|
||||||
"googlePlayVersionOnlyText": "(الروبوت / جوجل اللعب الإصدار)",
|
"googlePlayVersionOnlyText": "(الروبوت / جوجل اللعب الإصدار)",
|
||||||
"hostPublicPartyDescriptionText": "صنع حفلة عامة",
|
"hostPublicPartyDescriptionText": "صنع حفلة عامة",
|
||||||
"hostingUnavailableText": "صنع السيرفر غير متوفر",
|
"hostingUnavailableText": "صنع السيرفر غير متوفر",
|
||||||
"inDevelopmentWarningText": "ملحوظة:\n\nلعب الشبكة هو ميزة جديدة والتي لا تزال تتطور.\nفي الوقت الراهن، ينصح بشدة أن جميع\nاللاعبين على نفس شبكة واي فاي.",
|
"inDevelopmentWarningText": "ملحوظة:\n\nاللعب عبر الإنترنت هي ميزة لا تزال تحت التطوير.\nحاليًا، يفضل أن يكون جميع اللاعبين\nمتصلين على نفس شبكة WI-FI.",
|
||||||
"internetText": "انترنت",
|
"internetText": "انترنت",
|
||||||
"inviteAFriendText": "الأصدقاء ليس لديهم اللعبة؟ يمكنك دعوتهم إلى\nجربها وسيحصلون على ${COUNT} من التذاكر المجانية.",
|
"inviteAFriendText": "الأصدقاء ليس لديهم اللعبة؟ يمكنك دعوتهم إلى\nجربها وسيحصلون على ${COUNT} من التذاكر المجانية.",
|
||||||
"inviteFriendsText": "دعوة الاصدقاء",
|
"inviteFriendsText": "دعوة الاصدقاء",
|
||||||
|
|
@ -1588,15 +1588,17 @@
|
||||||
"Max number of profiles reached.": "تم الوصول إلى أقصى عدد من الملفات الشخصية.",
|
"Max number of profiles reached.": "تم الوصول إلى أقصى عدد من الملفات الشخصية.",
|
||||||
"Maximum friend code rewards reached.": "تم الوصول إلى الحد الأقصى لمكافآت الرمز الصديق.",
|
"Maximum friend code rewards reached.": "تم الوصول إلى الحد الأقصى لمكافآت الرمز الصديق.",
|
||||||
"Message is too long.": "الرسالة طويلة جدا",
|
"Message is too long.": "الرسالة طويلة جدا",
|
||||||
|
"No servers are available. Please try again soon.": "لا توجد خوادم متاحة. من فضلك حاول لاحقا",
|
||||||
"Profile \"${NAME}\" upgraded successfully.": "تمت ترقية الملف الشخصي \"${NAME}\" بنجاح.",
|
"Profile \"${NAME}\" upgraded successfully.": "تمت ترقية الملف الشخصي \"${NAME}\" بنجاح.",
|
||||||
"Profile could not be upgraded.": "تعذر ترقية الملف الشخصي.",
|
"Profile could not be upgraded.": "تعذر ترقية الملف الشخصي.",
|
||||||
"Purchase successful!": "شراء ناجحة!",
|
"Purchase successful!": "تم الشراء بنجاح!",
|
||||||
"Received ${COUNT} tickets for signing in.\nCome back tomorrow to receive ${TOMORROW_COUNT}.": "تم استلام ${COUNT} من التذاكر لتسجيل الدخول.\nارجع غدا لاستلام ${TOMORROW_COUNT}.",
|
"Received ${COUNT} tickets for signing in.\nCome back tomorrow to receive ${TOMORROW_COUNT}.": "تم استلام ${COUNT} من التذاكر لتسجيل الدخول.\nارجع غدا لاستلام ${TOMORROW_COUNT}.",
|
||||||
"Server functionality is no longer supported in this version of the game;\nPlease update to a newer version.": "لم تعد معتمدة وظيفة الخادم في هذا الإصدار من اللعبة.\nالرجاء التحديث إلى إصدار أحدث.",
|
"Server functionality is no longer supported in this version of the game;\nPlease update to a newer version.": "لم تعد معتمدة وظيفة الخادم في هذا الإصدار من اللعبة.\nالرجاء التحديث إلى إصدار أحدث.",
|
||||||
"Sorry, there are no uses remaining on this code.": "عذرا، لا توجد أية استخدامات متبقية في هذه الشفرة.",
|
"Sorry, there are no uses remaining on this code.": "عذرا، لا توجد أية استخدامات متبقية في هذه الشفرة.",
|
||||||
"Sorry, this code has already been used.": "عذرا، تم استخدام هذه الشفرة من قبل.",
|
"Sorry, this code has already been used.": "عذرا، تم استخدام هذه الشفرة من قبل.",
|
||||||
"Sorry, this code has expired.": "عذرا، انتهت صلاحية هذا الرمز.",
|
"Sorry, this code has expired.": "عذرا، انتهت صلاحية هذا الرمز.",
|
||||||
"Sorry, this code only works for new accounts.": "عذرا، لا تعمل هذه الشفرة إلا لحسابات جديدة.",
|
"Sorry, this code only works for new accounts.": "عذرا، لا تعمل هذه الشفرة إلا لحسابات جديدة.",
|
||||||
|
"Still searching for nearby servers; please try again soon.": "يزال البحث عن سيرفرات قريبة; من فضلك كرر المحاولة لاحقا",
|
||||||
"Temporarily unavailable; please try again later.": "غير متاح مؤقتا؛ الرجاء معاودة المحاولة في وقت لاحق.",
|
"Temporarily unavailable; please try again later.": "غير متاح مؤقتا؛ الرجاء معاودة المحاولة في وقت لاحق.",
|
||||||
"The tournament ended before you finished.": "انتهت البطولة قبل الانتهاء.",
|
"The tournament ended before you finished.": "انتهت البطولة قبل الانتهاء.",
|
||||||
"This account cannot be unlinked for ${NUM} days.": "لا يمكن إلغاء ربط هذا الحساب بمبلغ ${NUM} من الأيام.",
|
"This account cannot be unlinked for ${NUM} days.": "لا يمكن إلغاء ربط هذا الحساب بمبلغ ${NUM} من الأيام.",
|
||||||
|
|
@ -1700,7 +1702,7 @@
|
||||||
"In hockey, you'll maintain more speed if you turn gradually.": "في الهوكي، عليك الحفاظ على مزيد من السرعة إذا قمت بتشغيل تدريجيا.",
|
"In hockey, you'll maintain more speed if you turn gradually.": "في الهوكي، عليك الحفاظ على مزيد من السرعة إذا قمت بتشغيل تدريجيا.",
|
||||||
"It's easier to win with a friend or two helping.": "فإنه من الأسهل للفوز مع صديق أو اثنين مساعدة.",
|
"It's easier to win with a friend or two helping.": "فإنه من الأسهل للفوز مع صديق أو اثنين مساعدة.",
|
||||||
"Jump just as you're throwing to get bombs up to the highest levels.": "القفز تماما كما كنت رمي للحصول على القنابل تصل إلى أعلى المستويات.",
|
"Jump just as you're throwing to get bombs up to the highest levels.": "القفز تماما كما كنت رمي للحصول على القنابل تصل إلى أعلى المستويات.",
|
||||||
"Land-mines are a good way to stop speedy enemies.": "إن الألغام البرية وسيلة جيدة لوقف الأعداء العاجلين.",
|
"Land-mines are a good way to stop speedy enemies.": "إن الألغام وسيلة جيدة لوقف الأعداء السريعين.",
|
||||||
"Many things can be picked up and thrown, including other players. Tossing\nyour enemies off cliffs can be an effective and emotionally fulfilling strategy.": "العديد من الأشياء يمكن التقاطها وألقيت، بما في ذلك لاعبين آخرين. القذف\nأعدائك قبالة المنحدرات يمكن أن تكون استراتيجية فعالة وعاطفيا الوفاء.",
|
"Many things can be picked up and thrown, including other players. Tossing\nyour enemies off cliffs can be an effective and emotionally fulfilling strategy.": "العديد من الأشياء يمكن التقاطها وألقيت، بما في ذلك لاعبين آخرين. القذف\nأعدائك قبالة المنحدرات يمكن أن تكون استراتيجية فعالة وعاطفيا الوفاء.",
|
||||||
"No, you can't get up on the ledge. You have to throw bombs.": "لا، لا يمكنك الحصول على ما يصل على الحافة. لديك لرمي القنابل.",
|
"No, you can't get up on the ledge. You have to throw bombs.": "لا، لا يمكنك الحصول على ما يصل على الحافة. لديك لرمي القنابل.",
|
||||||
"Players can join and leave in the middle of most games,\nand you can also plug and unplug controllers on the fly.": "يمكن للاعبين الانضمام وترك في منتصف معظم المباريات،\nويمكنك أيضا سد وفصل وحدات التحكم على الطاير.",
|
"Players can join and leave in the middle of most games,\nand you can also plug and unplug controllers on the fly.": "يمكن للاعبين الانضمام وترك في منتصف معظم المباريات،\nويمكنك أيضا سد وفصل وحدات التحكم على الطاير.",
|
||||||
|
|
@ -1717,7 +1719,7 @@
|
||||||
"Use the pick-up button to grab the flag < ${PICKUP} >": "استخدم زر البيك اب للاستيلاء على العلم <${PICKUP}",
|
"Use the pick-up button to grab the flag < ${PICKUP} >": "استخدم زر البيك اب للاستيلاء على العلم <${PICKUP}",
|
||||||
"Whip back and forth to get more distance on your throws..": "سوط ذهابا وإيابا للحصول على مزيد من المسافة على رميات الخاص بك",
|
"Whip back and forth to get more distance on your throws..": "سوط ذهابا وإيابا للحصول على مزيد من المسافة على رميات الخاص بك",
|
||||||
"You can 'aim' your punches by spinning left or right.\nThis is useful for knocking bad guys off edges or scoring in hockey.": "يمكنك 'تهدف' اللكمات الخاصة بك عن طريق الغزل اليسار أو اليمين.\nوهذا مفيد لضرب الأشرار من حواف أو التهديف في الهوكي.",
|
"You can 'aim' your punches by spinning left or right.\nThis is useful for knocking bad guys off edges or scoring in hockey.": "يمكنك 'تهدف' اللكمات الخاصة بك عن طريق الغزل اليسار أو اليمين.\nوهذا مفيد لضرب الأشرار من حواف أو التهديف في الهوكي.",
|
||||||
"You can judge when a bomb is going to explode based on the\ncolor of sparks from its fuse: yellow..orange..red..BOOM.": "يمكنك الحكم عندما قنبلة سوف تنفجر على أساس\nلون الشرر من فتيله: أصفر .. أورانج..ريد .. بوم.",
|
"You can judge when a bomb is going to explode based on the\ncolor of sparks from its fuse: yellow..orange..red..BOOM.": "يمكنك تحديد وقت إنفجار القنبلة بناءً على لون الشرارة المنبعثة من فتيلها:\nأصفر..برتقالي..أحمر ثم بووم.",
|
||||||
"You can throw bombs higher if you jump just before throwing.": "يمكنك رمي القنابل أعلى إذا كنت القفز قبل رمي.",
|
"You can throw bombs higher if you jump just before throwing.": "يمكنك رمي القنابل أعلى إذا كنت القفز قبل رمي.",
|
||||||
"You take damage when you whack your head on things,\nso try to not whack your head on things.": "كنت تأخذ الضرر عندما كنت اجتز رأسك على الأشياء،\nوذلك في محاولة لا اجتز رأسك على الأشياء.",
|
"You take damage when you whack your head on things,\nso try to not whack your head on things.": "كنت تأخذ الضرر عندما كنت اجتز رأسك على الأشياء،\nوذلك في محاولة لا اجتز رأسك على الأشياء.",
|
||||||
"Your punches do much more damage if you are running or spinning.": "لكماتك تؤثر بضرر اكبر اذا كنت تجري او تدور"
|
"Your punches do much more damage if you are running or spinning.": "لكماتك تؤثر بضرر اكبر اذا كنت تجري او تدور"
|
||||||
|
|
@ -1772,7 +1774,7 @@
|
||||||
"unconfiguredControllerDetectedText": ":تم الكشف على يد تحكم غير مهيئة",
|
"unconfiguredControllerDetectedText": ":تم الكشف على يد تحكم غير مهيئة",
|
||||||
"unlockThisInTheStoreText": "هذا يجب ان يفتح في المتجر",
|
"unlockThisInTheStoreText": "هذا يجب ان يفتح في المتجر",
|
||||||
"unlockThisProfilesText": "لإنشاء أكثر من ${NUM} من الملفات الشخصية، تحتاج إلى:",
|
"unlockThisProfilesText": "لإنشاء أكثر من ${NUM} من الملفات الشخصية، تحتاج إلى:",
|
||||||
"unlockThisText": ":لفتح هذا, تحتاج ل",
|
"unlockThisText": ":لفتح هذا, تحتاج إلى",
|
||||||
"unsupportedHardwareText": "عفوا, هذه المعدات غير مدعومة في هذه النسخة من اللعبة",
|
"unsupportedHardwareText": "عفوا, هذه المعدات غير مدعومة في هذه النسخة من اللعبة",
|
||||||
"upFirstText": ":يصل اولا",
|
"upFirstText": ":يصل اولا",
|
||||||
"upNextText": ":${COUNT}التالي في اللعبة",
|
"upNextText": ":${COUNT}التالي في اللعبة",
|
||||||
|
|
|
||||||
2
dist/ba_data/data/languages/chinese.json
vendored
2
dist/ba_data/data/languages/chinese.json
vendored
|
|
@ -1606,6 +1606,7 @@
|
||||||
"Max number of profiles reached.": "已达到最大档案数目。",
|
"Max number of profiles reached.": "已达到最大档案数目。",
|
||||||
"Maximum friend code rewards reached.": "邀请码奖励达到上限",
|
"Maximum friend code rewards reached.": "邀请码奖励达到上限",
|
||||||
"Message is too long.": "消息太长.",
|
"Message is too long.": "消息太长.",
|
||||||
|
"No servers are available. Please try again soon.": "当前没有空余的服务器,请稍后再试",
|
||||||
"Profile \"${NAME}\" upgraded successfully.": "${NAME}档案升级成功。",
|
"Profile \"${NAME}\" upgraded successfully.": "${NAME}档案升级成功。",
|
||||||
"Profile could not be upgraded.": "档案不可升级。",
|
"Profile could not be upgraded.": "档案不可升级。",
|
||||||
"Purchase successful!": "购买成功!",
|
"Purchase successful!": "购买成功!",
|
||||||
|
|
@ -1615,6 +1616,7 @@
|
||||||
"Sorry, this code has already been used.": "对不起,此代码已被使用。",
|
"Sorry, this code has already been used.": "对不起,此代码已被使用。",
|
||||||
"Sorry, this code has expired.": "对不起,此代码已失效。",
|
"Sorry, this code has expired.": "对不起,此代码已失效。",
|
||||||
"Sorry, this code only works for new accounts.": "对不起,此代码仅适用于新账户。",
|
"Sorry, this code only works for new accounts.": "对不起,此代码仅适用于新账户。",
|
||||||
|
"Still searching for nearby servers; please try again soon.": "正在搜索附近的服务器,请稍后再试",
|
||||||
"Temporarily unavailable; please try again later.": "目前暂不可用;请稍候再试!",
|
"Temporarily unavailable; please try again later.": "目前暂不可用;请稍候再试!",
|
||||||
"The tournament ended before you finished.": "本次锦标赛在你完成之前结束。",
|
"The tournament ended before you finished.": "本次锦标赛在你完成之前结束。",
|
||||||
"This account cannot be unlinked for ${NUM} days.": "此帐户无法在${NUM}天内取消关联。",
|
"This account cannot be unlinked for ${NUM} days.": "此帐户无法在${NUM}天内取消关联。",
|
||||||
|
|
|
||||||
|
|
@ -1584,6 +1584,7 @@
|
||||||
"Max number of profiles reached.": "已達到最大檔案數",
|
"Max number of profiles reached.": "已達到最大檔案數",
|
||||||
"Maximum friend code rewards reached.": "邀請碼獎勵達到上限",
|
"Maximum friend code rewards reached.": "邀請碼獎勵達到上限",
|
||||||
"Message is too long.": "消息過長",
|
"Message is too long.": "消息過長",
|
||||||
|
"No servers are available. Please try again soon.": "當前沒有空餘的伺服器,請稍後再試",
|
||||||
"Profile \"${NAME}\" upgraded successfully.": "\"${NAME}\"檔案升級成功",
|
"Profile \"${NAME}\" upgraded successfully.": "\"${NAME}\"檔案升級成功",
|
||||||
"Profile could not be upgraded.": "檔案不可升級",
|
"Profile could not be upgraded.": "檔案不可升級",
|
||||||
"Purchase successful!": "購買成功",
|
"Purchase successful!": "購買成功",
|
||||||
|
|
@ -1593,6 +1594,7 @@
|
||||||
"Sorry, this code has already been used.": "對不起,此代碼已被使用",
|
"Sorry, this code has already been used.": "對不起,此代碼已被使用",
|
||||||
"Sorry, this code has expired.": "對不起,此代碼已失效",
|
"Sorry, this code has expired.": "對不起,此代碼已失效",
|
||||||
"Sorry, this code only works for new accounts.": "對不起,此代碼僅適用於新用戶",
|
"Sorry, this code only works for new accounts.": "對不起,此代碼僅適用於新用戶",
|
||||||
|
"Still searching for nearby servers; please try again soon.": "正在查詢附近的伺服器,請稍後再試",
|
||||||
"Temporarily unavailable; please try again later.": "目前暫不可用,請稍後再試",
|
"Temporarily unavailable; please try again later.": "目前暫不可用,請稍後再試",
|
||||||
"The tournament ended before you finished.": "本次錦標賽將於在你完成之前結束了",
|
"The tournament ended before you finished.": "本次錦標賽將於在你完成之前結束了",
|
||||||
"This account cannot be unlinked for ${NUM} days.": "此賬戶在${NUM}天內無法取消關聯",
|
"This account cannot be unlinked for ${NUM} days.": "此賬戶在${NUM}天內無法取消關聯",
|
||||||
|
|
|
||||||
2
dist/ba_data/data/languages/english.json
vendored
2
dist/ba_data/data/languages/english.json
vendored
|
|
@ -1596,6 +1596,7 @@
|
||||||
"Max number of profiles reached.": null,
|
"Max number of profiles reached.": null,
|
||||||
"Maximum friend code rewards reached.": null,
|
"Maximum friend code rewards reached.": null,
|
||||||
"Message is too long.": null,
|
"Message is too long.": null,
|
||||||
|
"No servers are available. Please try again soon.": null,
|
||||||
"Profile \"${NAME}\" upgraded successfully.": null,
|
"Profile \"${NAME}\" upgraded successfully.": null,
|
||||||
"Profile could not be upgraded.": null,
|
"Profile could not be upgraded.": null,
|
||||||
"Purchase successful!": null,
|
"Purchase successful!": null,
|
||||||
|
|
@ -1605,6 +1606,7 @@
|
||||||
"Sorry, this code has already been used.": null,
|
"Sorry, this code has already been used.": null,
|
||||||
"Sorry, this code has expired.": null,
|
"Sorry, this code has expired.": null,
|
||||||
"Sorry, this code only works for new accounts.": null,
|
"Sorry, this code only works for new accounts.": null,
|
||||||
|
"Still searching for nearby servers; please try again soon.": null,
|
||||||
"Temporarily unavailable; please try again later.": null,
|
"Temporarily unavailable; please try again later.": null,
|
||||||
"The tournament ended before you finished.": null,
|
"The tournament ended before you finished.": null,
|
||||||
"This account cannot be unlinked for ${NUM} days.": null,
|
"This account cannot be unlinked for ${NUM} days.": null,
|
||||||
|
|
|
||||||
28
dist/ba_data/data/languages/german.json
vendored
28
dist/ba_data/data/languages/german.json
vendored
|
|
@ -720,12 +720,18 @@
|
||||||
"bluetoothJoinText": "Über Bluetooth beitreten",
|
"bluetoothJoinText": "Über Bluetooth beitreten",
|
||||||
"bluetoothText": "Bluetooth",
|
"bluetoothText": "Bluetooth",
|
||||||
"checkingText": "überprüfe...",
|
"checkingText": "überprüfe...",
|
||||||
|
"copyCodeConfirmText": "Veranstalten Sie eine private Party",
|
||||||
|
"copyCodeText": "Code kopieren",
|
||||||
"dedicatedServerInfoText": "Das beste Ergebnis wird mit einem dedizierten Server erreicht. Auf bombsquadgame.com/server steht wie es geht.",
|
"dedicatedServerInfoText": "Das beste Ergebnis wird mit einem dedizierten Server erreicht. Auf bombsquadgame.com/server steht wie es geht.",
|
||||||
"disconnectClientsText": "Dadurch werden die ${COUNT} Spieler in Ihrer\nParty getrennt. Sind Sie sicher ?",
|
"disconnectClientsText": "Dadurch werden die ${COUNT} Spieler in Ihrer\nParty getrennt. Sind Sie sicher ?",
|
||||||
"earnTicketsForRecommendingAmountText": "Freunde bekommen ${COUNT} Tickets, wenn sie das Spiel ausprobieren.\n(Du bekommst ${YOU_COUNT} für jeden, der es tut.)",
|
"earnTicketsForRecommendingAmountText": "Freunde bekommen ${COUNT} Tickets, wenn sie das Spiel ausprobieren.\n(Du bekommst ${YOU_COUNT} für jeden, der es tut.)",
|
||||||
"earnTicketsForRecommendingText": "Empfehle das Spiel an Freunde \nund ihr bekommt beide Tickets.",
|
"earnTicketsForRecommendingText": "Empfehle das Spiel an Freunde \nund ihr bekommt beide Tickets.",
|
||||||
"emailItText": "E-Mail an ihn",
|
"emailItText": "E-Mail an ihn",
|
||||||
"favoritesSaveText": "Als Favorit speichern",
|
"favoritesSaveText": "Als Favorit speichern",
|
||||||
|
"favoritesText": "Favoriten",
|
||||||
|
"freeCloudServerAvailableMinutesText": "Nächster kostenloser Cloud-Server in ${MINUTES} Minuten verfügbar.",
|
||||||
|
"freeCloudServerAvailableNowText": "Kostenloser Cloud-Server verfügbar!",
|
||||||
|
"freeCloudServerNotAvailableText": "Keine kostenlosen Cloud-Server verfügbar.",
|
||||||
"friendHasSentPromoCodeText": "${COUNT} ${APP_NAME} Tickets von ${NAME}",
|
"friendHasSentPromoCodeText": "${COUNT} ${APP_NAME} Tickets von ${NAME}",
|
||||||
"friendPromoCodeAwardText": "Du bekommst ${COUNT} Tickets bei jeder Verwendung.",
|
"friendPromoCodeAwardText": "Du bekommst ${COUNT} Tickets bei jeder Verwendung.",
|
||||||
"friendPromoCodeExpireText": "Der Code wird in ${EXPIRE_HOURS} Stunden ungültig und funktioniert nur für neue Spieler.",
|
"friendPromoCodeExpireText": "Der Code wird in ${EXPIRE_HOURS} Stunden ungültig und funktioniert nur für neue Spieler.",
|
||||||
|
|
@ -741,13 +747,14 @@
|
||||||
"googlePlaySeeInvitesText": "Einladungen anzeigen",
|
"googlePlaySeeInvitesText": "Einladungen anzeigen",
|
||||||
"googlePlayText": "Google Play",
|
"googlePlayText": "Google Play",
|
||||||
"googlePlayVersionOnlyText": "(Android / Google Play Version)",
|
"googlePlayVersionOnlyText": "(Android / Google Play Version)",
|
||||||
"hostPublicPartyDescriptionText": "Public Party erstellen:",
|
"hostPublicPartyDescriptionText": "Veranstalten Sie eine öffentliche Party",
|
||||||
|
"hostingUnavailableText": "Hosting nicht verfügbar",
|
||||||
"inDevelopmentWarningText": "Achtung:\n\nDer Online-Modus ist ein neues Feature, das noch in\nder Entwicklung ist. Zurzeit wird es dringend empfohlen,\ndass alle Spieler im selben Netzwerk sind.",
|
"inDevelopmentWarningText": "Achtung:\n\nDer Online-Modus ist ein neues Feature, das noch in\nder Entwicklung ist. Zurzeit wird es dringend empfohlen,\ndass alle Spieler im selben Netzwerk sind.",
|
||||||
"internetText": "Internet",
|
"internetText": "Internet",
|
||||||
"inviteAFriendText": "Deine Freunde haben dieses Spiel noch nicht?\nLade sie ein und sie erhalten ${COUNT} gratis Tickets.",
|
"inviteAFriendText": "Deine Freunde haben dieses Spiel noch nicht?\nLade sie ein und sie erhalten ${COUNT} gratis Tickets.",
|
||||||
"inviteFriendsText": "Lade Freunde ein",
|
"inviteFriendsText": "Lade Freunde ein",
|
||||||
"joinPublicPartyDescriptionText": "Public Party beitreten:",
|
"joinPublicPartyDescriptionText": "Treten Sie einer öffentlichen Party bei",
|
||||||
"localNetworkDescriptionText": "Trete einer Party im Lokalen Netzwerk bei:",
|
"localNetworkDescriptionText": "Nehmen Sie an einer Party in der Nähe teil (LAN, Bluetooth usw.)",
|
||||||
"localNetworkText": "Lokales Netzwerk",
|
"localNetworkText": "Lokales Netzwerk",
|
||||||
"makePartyPrivateText": "Stelle die Party privat",
|
"makePartyPrivateText": "Stelle die Party privat",
|
||||||
"makePartyPublicText": "Stelle die Party öffentlich",
|
"makePartyPublicText": "Stelle die Party öffentlich",
|
||||||
|
|
@ -765,12 +772,14 @@
|
||||||
"nearbyText": "In der Nähe",
|
"nearbyText": "In der Nähe",
|
||||||
"noConnectionText": "<keine Verbindung>",
|
"noConnectionText": "<keine Verbindung>",
|
||||||
"otherVersionsText": "(andere Versionen)",
|
"otherVersionsText": "(andere Versionen)",
|
||||||
|
"partyCodeText": "Party Code",
|
||||||
"partyInviteAcceptText": "Akzeptieren",
|
"partyInviteAcceptText": "Akzeptieren",
|
||||||
"partyInviteDeclineText": "Ablehnen",
|
"partyInviteDeclineText": "Ablehnen",
|
||||||
"partyInviteGooglePlayExtraText": "(Schaue beim 'Google Play' Tab im 'Versammeln' Fenster)",
|
"partyInviteGooglePlayExtraText": "(Schaue beim 'Google Play' Tab im 'Versammeln' Fenster)",
|
||||||
"partyInviteIgnoreText": "Ignorieren",
|
"partyInviteIgnoreText": "Ignorieren",
|
||||||
"partyInviteText": "${NAME} hat dich eingeladen\nseiner Party beizutreten!",
|
"partyInviteText": "${NAME} hat dich eingeladen\nseiner Party beizutreten!",
|
||||||
"partyNameText": "Party Name",
|
"partyNameText": "Party Name",
|
||||||
|
"partyServerRunningText": "Ihr Partyserver wird ausgeführt.",
|
||||||
"partySizeText": "Gruppengröße",
|
"partySizeText": "Gruppengröße",
|
||||||
"partyStatusCheckingText": "Status wird überprüft...",
|
"partyStatusCheckingText": "Status wird überprüft...",
|
||||||
"partyStatusJoinableText": "Man kann deiner Party jetzt aus dem Internet beitreten",
|
"partyStatusJoinableText": "Man kann deiner Party jetzt aus dem Internet beitreten",
|
||||||
|
|
@ -779,13 +788,21 @@
|
||||||
"partyStatusNotPublicText": "Deine Party ist nicht public",
|
"partyStatusNotPublicText": "Deine Party ist nicht public",
|
||||||
"pingText": "Ping",
|
"pingText": "Ping",
|
||||||
"portText": "Port",
|
"portText": "Port",
|
||||||
|
"privatePartyCloudDescriptionText": "Private Partys werden auf dedizierten Cloud-Servern ausgeführt. Keine Routerkonfiguration erforderlich.",
|
||||||
|
"privatePartyHostText": "Veranstalten Sie eine private Party",
|
||||||
|
"privatePartyJoinText": "Treten Sie einer privaten Party bei",
|
||||||
"privateText": "Privat",
|
"privateText": "Privat",
|
||||||
|
"publicHostRouterConfigText": "Dies erfordert möglicherweise die Konfiguration der Portweiterleitung auf Ihrem Router. Veranstalten Sie für eine einfachere Option eine private Party.",
|
||||||
"publicText": "Öffentlich",
|
"publicText": "Öffentlich",
|
||||||
"requestingAPromoCodeText": "Gutscheincode anfordern...",
|
"requestingAPromoCodeText": "Gutscheincode anfordern...",
|
||||||
"sendDirectInvitesText": "Einladungen direkt versenden",
|
"sendDirectInvitesText": "Einladungen direkt versenden",
|
||||||
"sendThisToAFriendText": "Sende diesen Code einem Freund:",
|
"sendThisToAFriendText": "Sende diesen Code einem Freund:",
|
||||||
"shareThisCodeWithFriendsText": "Teile diesen Code mit Freunden:",
|
"shareThisCodeWithFriendsText": "Teile diesen Code mit Freunden:",
|
||||||
"showMyAddressText": "Meine Adresse anzeigen",
|
"showMyAddressText": "Meine Adresse anzeigen",
|
||||||
|
"startHostingPaidText": "Jetzt für ${COST} hosten",
|
||||||
|
"startHostingText": "Gastgeber",
|
||||||
|
"startStopHostingMinutesText": "Sie können das Hosting für die nächsten ${MINUTES} Minuten kostenlos starten und beenden.",
|
||||||
|
"stopHostingText": "Beenden Sie das Hosting",
|
||||||
"titleText": "Versammeln",
|
"titleText": "Versammeln",
|
||||||
"wifiDirectDescriptionBottomText": "Wenn alle Geräte ein 'Wi-Fi Direktfeld' haben, sollten sie in der Lage sein, sich\ngegenseitig zu finden und zu verbinden. Sind alle Geräte miteinander verbunden, kannst\ndu in dem Tab 'Lokales Netzwerk' genauso wie in einem normalen Wi-Fi Netzwerk Partys erstellen.\n\nUm Probleme zu vermeiden, sollte der Wi-Fi Direct host auch der ${APP_NAME} Party host sein.",
|
"wifiDirectDescriptionBottomText": "Wenn alle Geräte ein 'Wi-Fi Direktfeld' haben, sollten sie in der Lage sein, sich\ngegenseitig zu finden und zu verbinden. Sind alle Geräte miteinander verbunden, kannst\ndu in dem Tab 'Lokales Netzwerk' genauso wie in einem normalen Wi-Fi Netzwerk Partys erstellen.\n\nUm Probleme zu vermeiden, sollte der Wi-Fi Direct host auch der ${APP_NAME} Party host sein.",
|
||||||
"wifiDirectDescriptionTopText": "Wi-Fi Direct kann genutzt werden, um Android-Geräte direkt miteinander\nzu Verbinden, ohne ein Wi-Fi Netzwerk zu benötigen. Das funktioniert am\nbesten auf Android 4.2 oder neuer.\n\nUm es zu benutzen, öffne die Wi-Fi Einstellungen und aktiviere 'Wi-Fi Direct' im Menü.",
|
"wifiDirectDescriptionTopText": "Wi-Fi Direct kann genutzt werden, um Android-Geräte direkt miteinander\nzu Verbinden, ohne ein Wi-Fi Netzwerk zu benötigen. Das funktioniert am\nbesten auf Android 4.2 oder neuer.\n\nUm es zu benutzen, öffne die Wi-Fi Einstellungen und aktiviere 'Wi-Fi Direct' im Menü.",
|
||||||
|
|
@ -1114,6 +1131,7 @@
|
||||||
"offText": "Aus",
|
"offText": "Aus",
|
||||||
"okText": "Ok",
|
"okText": "Ok",
|
||||||
"onText": "An",
|
"onText": "An",
|
||||||
|
"oneMomentText": "Einen Moment...",
|
||||||
"onslaughtRespawnText": "${PLAYER} steigt in Welle ${WAVE} wieder ein",
|
"onslaughtRespawnText": "${PLAYER} steigt in Welle ${WAVE} wieder ein",
|
||||||
"orText": "${A} oder ${B}",
|
"orText": "${A} oder ${B}",
|
||||||
"otherText": "Sonstiges...",
|
"otherText": "Sonstiges...",
|
||||||
|
|
@ -1165,6 +1183,7 @@
|
||||||
"playerText": "Spieler",
|
"playerText": "Spieler",
|
||||||
"playlistNoValidGamesErrorText": "Diese Playlist enthält nicht zulässig freigeschaltete Spiele.",
|
"playlistNoValidGamesErrorText": "Diese Playlist enthält nicht zulässig freigeschaltete Spiele.",
|
||||||
"playlistNotFoundText": "Wiedergabeliste konnte nicht gefunden werden",
|
"playlistNotFoundText": "Wiedergabeliste konnte nicht gefunden werden",
|
||||||
|
"playlistText": "Wiedergabeliste",
|
||||||
"playlistsText": "Playlists",
|
"playlistsText": "Playlists",
|
||||||
"pleaseRateText": "Wenn dir ${APP_NAME} Spaß macht, nimm dir kurz die Zeit\nund bewerte es oder schreib ein Review. Durch das Feedback\nwird zukünftige Arbeit an dem Spiel unterstützt.\n\nVielen Dank!\n-eric",
|
"pleaseRateText": "Wenn dir ${APP_NAME} Spaß macht, nimm dir kurz die Zeit\nund bewerte es oder schreib ein Review. Durch das Feedback\nwird zukünftige Arbeit an dem Spiel unterstützt.\n\nVielen Dank!\n-eric",
|
||||||
"pleaseWaitText": "Bitte warte...",
|
"pleaseWaitText": "Bitte warte...",
|
||||||
|
|
@ -1691,6 +1710,7 @@
|
||||||
"Max number of profiles reached.": "Max Anzahl der Profile erreicht.",
|
"Max number of profiles reached.": "Max Anzahl der Profile erreicht.",
|
||||||
"Maximum friend code rewards reached.": "Maximale Anzahl an Einladungsbelohnungen erreicht.",
|
"Maximum friend code rewards reached.": "Maximale Anzahl an Einladungsbelohnungen erreicht.",
|
||||||
"Message is too long.": "Nachricht ist zu lang.",
|
"Message is too long.": "Nachricht ist zu lang.",
|
||||||
|
"No servers are available. Please try again soon.": "Keine Server verfügbar. Schau nachher noch einmal vorbei.",
|
||||||
"Profile \"${NAME}\" upgraded successfully.": "Profil \"${NAME}\" erfolgreich aktualisiert.",
|
"Profile \"${NAME}\" upgraded successfully.": "Profil \"${NAME}\" erfolgreich aktualisiert.",
|
||||||
"Profile could not be upgraded.": "Profil konnte nicht aktualisiert werden.",
|
"Profile could not be upgraded.": "Profil konnte nicht aktualisiert werden.",
|
||||||
"Purchase successful!": "Einkauf erfolgreich!",
|
"Purchase successful!": "Einkauf erfolgreich!",
|
||||||
|
|
@ -1700,10 +1720,12 @@
|
||||||
"Sorry, this code has already been used.": "Tut uns leid, dieser Code wurde bereits eingelöst.",
|
"Sorry, this code has already been used.": "Tut uns leid, dieser Code wurde bereits eingelöst.",
|
||||||
"Sorry, this code has expired.": "Tut uns leid, dieser Code ist nicht mehr gültig.",
|
"Sorry, this code has expired.": "Tut uns leid, dieser Code ist nicht mehr gültig.",
|
||||||
"Sorry, this code only works for new accounts.": "Tut uns leid, dieser Code kann nur mit einem neuen Account eingelöst werden.",
|
"Sorry, this code only works for new accounts.": "Tut uns leid, dieser Code kann nur mit einem neuen Account eingelöst werden.",
|
||||||
|
"Still searching for nearby servers; please try again soon.": "Suche immernoch nach Servern in der Nähe; schau nachher noch einmal vorbei.",
|
||||||
"Temporarily unavailable; please try again later.": "Vorübergehend nicht verfügbar. Bitte versuche es später noch einmal.",
|
"Temporarily unavailable; please try again later.": "Vorübergehend nicht verfügbar. Bitte versuche es später noch einmal.",
|
||||||
"The tournament ended before you finished.": "Das Turnier endete bevor du ins Ziel kamst.",
|
"The tournament ended before you finished.": "Das Turnier endete bevor du ins Ziel kamst.",
|
||||||
"This account cannot be unlinked for ${NUM} days.": "Dieser Account kann nicht für ${NUM} Tage entknüpft werden.",
|
"This account cannot be unlinked for ${NUM} days.": "Dieser Account kann nicht für ${NUM} Tage entknüpft werden.",
|
||||||
"This code cannot be used on the account that created it.": "Dieser Code kann nur mit dem Account eingelöst werden, mit dem er erzeugt wurde.",
|
"This code cannot be used on the account that created it.": "Dieser Code kann nur mit dem Account eingelöst werden, mit dem er erzeugt wurde.",
|
||||||
|
"This is currently unavailable; please try again later.": "Dies ist derzeit nicht verfügbar. Bitte versuchen Sie es später noch einmal.",
|
||||||
"This requires version ${VERSION} or newer.": "Hierfür wird Version ${VERSION} oder neuer benötigt.",
|
"This requires version ${VERSION} or newer.": "Hierfür wird Version ${VERSION} oder neuer benötigt.",
|
||||||
"Tournaments disabled due to rooted device.": "Tourniere wegen gerootetem Gerät deaktiviert.",
|
"Tournaments disabled due to rooted device.": "Tourniere wegen gerootetem Gerät deaktiviert.",
|
||||||
"Tournaments require ${VERSION} or newer": "Turniere benötigen Version ${VERSION} oder neuer",
|
"Tournaments require ${VERSION} or newer": "Turniere benötigen Version ${VERSION} oder neuer",
|
||||||
|
|
|
||||||
2
dist/ba_data/data/languages/gibberish.json
vendored
2
dist/ba_data/data/languages/gibberish.json
vendored
|
|
@ -1719,6 +1719,7 @@
|
||||||
"Max number of profiles reached.": "Mc fjpasdofj c owiejfowe oiwjefsd.",
|
"Max number of profiles reached.": "Mc fjpasdofj c owiejfowe oiwjefsd.",
|
||||||
"Maximum friend code rewards reached.": "Cmwoe oc wo Ego wel jacoweij weer.",
|
"Maximum friend code rewards reached.": "Cmwoe oc wo Ego wel jacoweij weer.",
|
||||||
"Message is too long.": "CMew ociwje owe el.",
|
"Message is too long.": "CMew ociwje owe el.",
|
||||||
|
"No servers are available. Please try again soon.": "Ns seroiejwc wefjwoe wj. Ple wer wfwef ewfowes.",
|
||||||
"Profile \"${NAME}\" upgraded successfully.": "Profjojf \"${NAME}\" oupfuap coj woijsfsf.",
|
"Profile \"${NAME}\" upgraded successfully.": "Profjojf \"${NAME}\" oupfuap coj woijsfsf.",
|
||||||
"Profile could not be upgraded.": "Profojfo coild onot foj bupfrade.",
|
"Profile could not be upgraded.": "Profojfo coild onot foj bupfrade.",
|
||||||
"Purchase successful!": "Pcjofj scwcserfflz!",
|
"Purchase successful!": "Pcjofj scwcserfflz!",
|
||||||
|
|
@ -1728,6 +1729,7 @@
|
||||||
"Sorry, this code has already been used.": "Srrc, thiz codds has aoiwjre bndd usdd.",
|
"Sorry, this code has already been used.": "Srrc, thiz codds has aoiwjre bndd usdd.",
|
||||||
"Sorry, this code has expired.": "Sorrro, thi cowf ahs arowjers.",
|
"Sorry, this code has expired.": "Sorrro, thi cowf ahs arowjers.",
|
||||||
"Sorry, this code only works for new accounts.": "Srror, this cod ojfowf work for know accarrn.",
|
"Sorry, this code only works for new accounts.": "Srror, this cod ojfowf work for know accarrn.",
|
||||||
|
"Still searching for nearby servers; please try again soon.": "Stjowf sera cj focnwoeir eserevers; pell cutlery a gao cốn.",
|
||||||
"Temporarily unavailable; please try again later.": "Tmwoef wf oucwof wf; cowejf awoj cwoijers.",
|
"Temporarily unavailable; please try again later.": "Tmwoef wf oucwof wf; cowejf awoj cwoijers.",
|
||||||
"The tournament ended before you finished.": "Thf weoijw oeij aoejf aowejf owjeof aiwjeofjwef.",
|
"The tournament ended before you finished.": "Thf weoijw oeij aoejf aowejf owjeof aiwjeofjwef.",
|
||||||
"This account cannot be unlinked for ${NUM} days.": "Th ow co ref w owjoso o ${NUM} dyafsoef.",
|
"This account cannot be unlinked for ${NUM} days.": "Th ow co ref w owjoso o ${NUM} dyafsoef.",
|
||||||
|
|
|
||||||
31
dist/ba_data/data/languages/hindi.json
vendored
31
dist/ba_data/data/languages/hindi.json
vendored
|
|
@ -684,11 +684,18 @@
|
||||||
"bluetoothJoinText": "ब्लूटूथ से जुडें",
|
"bluetoothJoinText": "ब्लूटूथ से जुडें",
|
||||||
"bluetoothText": "ब्लूटूथ",
|
"bluetoothText": "ब्लूटूथ",
|
||||||
"checkingText": "जांचा जा रहा है...",
|
"checkingText": "जांचा जा रहा है...",
|
||||||
|
"copyCodeConfirmText": "कोड को क्लिपबोर्ड पर कॉपी किया गया है",
|
||||||
|
"copyCodeText": "कोड को कॉपी करें",
|
||||||
"dedicatedServerInfoText": "श्रेष्ठ परिणामों के लिए, एक समर्पित सर्वर सेट करें. कैसे जानने के लिए bombsquadgame.com/server देखें.",
|
"dedicatedServerInfoText": "श्रेष्ठ परिणामों के लिए, एक समर्पित सर्वर सेट करें. कैसे जानने के लिए bombsquadgame.com/server देखें.",
|
||||||
"disconnectClientsText": "यह आपके पार्टी में ${COUNT} \nखिलाड़ियों का सम्बन्ध तोड़ देगा",
|
"disconnectClientsText": "यह आपके पार्टी में ${COUNT} \nखिलाड़ियों का सम्बन्ध तोड़ देगा",
|
||||||
"earnTicketsForRecommendingAmountText": "यदि वे गेम को आज़माते हैं तो दोस्तों को ${COUNT} \nटिकट मिलेंगे (और आप प्रत्येक के लिए ${YOU_COUNT} प्राप्त करेंगे)",
|
"earnTicketsForRecommendingAmountText": "यदि वे गेम को आज़माते हैं तो दोस्तों को ${COUNT} \nटिकट मिलेंगे (और आप प्रत्येक के लिए ${YOU_COUNT} प्राप्त करेंगे)",
|
||||||
"earnTicketsForRecommendingText": "मुफ्त के टिकेट \nके लिए गेम को बाटें...",
|
"earnTicketsForRecommendingText": "मुफ्त के टिकेट \nके लिए गेम को बाटें...",
|
||||||
"emailItText": "मेल करें",
|
"emailItText": "मेल करें",
|
||||||
|
"favoritesSaveText": "पसंदीदा के रूप में सहेजें",
|
||||||
|
"favoritesText": "पसंदीदा",
|
||||||
|
"freeCloudServerAvailableMinutesText": "अगला मुफ्त क्लाउड सर्वर ${MINUTES} मिनट में उपलब्ध है",
|
||||||
|
"freeCloudServerAvailableNowText": "फ्री क्लाउड सर्वर उपलब्ध है",
|
||||||
|
"freeCloudServerNotAvailableText": "कोई निःशुल्क क्लाउड सर्वर उपलब्ध नहीं है।",
|
||||||
"friendHasSentPromoCodeText": "${COUNT} ${APP_NAME} टिकेट मिले ${NAME} से",
|
"friendHasSentPromoCodeText": "${COUNT} ${APP_NAME} टिकेट मिले ${NAME} से",
|
||||||
"friendPromoCodeAwardText": "आपको ${COUNT} टिकेट मिलेंगे हर बार इसका प्रयोग किया जाता है",
|
"friendPromoCodeAwardText": "आपको ${COUNT} टिकेट मिलेंगे हर बार इसका प्रयोग किया जाता है",
|
||||||
"friendPromoCodeExpireText": "आपका कोड सिर्क नयें खिलाड़ियों के लिए चलेगा और ${EXPIRE_HOURS} घंटों के बाद काम करना बंद कर देगा",
|
"friendPromoCodeExpireText": "आपका कोड सिर्क नयें खिलाड़ियों के लिए चलेगा और ${EXPIRE_HOURS} घंटों के बाद काम करना बंद कर देगा",
|
||||||
|
|
@ -703,19 +710,21 @@
|
||||||
"googlePlaySeeInvitesText": "आमंत्रण देखें",
|
"googlePlaySeeInvitesText": "आमंत्रण देखें",
|
||||||
"googlePlayText": "गूगल प्ले",
|
"googlePlayText": "गूगल प्ले",
|
||||||
"googlePlayVersionOnlyText": "(एंड्राइड / गूगल प्ले का संस्करण)",
|
"googlePlayVersionOnlyText": "(एंड्राइड / गूगल प्ले का संस्करण)",
|
||||||
"hostPublicPartyDescriptionText": "एक सार्वजनिक पार्टी की मेजबानी करें",
|
"hostPublicPartyDescriptionText": "अपनी सार्वजनिक पार्टी की मेजबानी करें",
|
||||||
|
"hostingUnavailableText": "होस्टिंग अनुपलब्ध",
|
||||||
"inDevelopmentWarningText": "टिपण्णी: \n\nनेटवर्क पे खेल अभी नया है और अभी भी इसका विकास हो रहा है | \nअभी के लिए यह सलाह डी जाती है\n कि सभी खिलाड़ी एक ही वाई-फाई नेटवर्क पे हों |",
|
"inDevelopmentWarningText": "टिपण्णी: \n\nनेटवर्क पे खेल अभी नया है और अभी भी इसका विकास हो रहा है | \nअभी के लिए यह सलाह डी जाती है\n कि सभी खिलाड़ी एक ही वाई-फाई नेटवर्क पे हों |",
|
||||||
"internetText": "इंटरनेट",
|
"internetText": "इंटरनेट",
|
||||||
"inviteAFriendText": "दोस्तों के पास यह गेम नहीं है ? उन्हें आमंत्रित करें खेलने के लिए | \nउन्हें ${COUNT} टिकेट मुफ्त मिलेंगे |",
|
"inviteAFriendText": "दोस्तों के पास यह गेम नहीं है ? उन्हें आमंत्रित करें खेलने के लिए | \nउन्हें ${COUNT} टिकेट मुफ्त मिलेंगे |",
|
||||||
"inviteFriendsText": "आमंत्रित करें",
|
"inviteFriendsText": "आमंत्रित करें",
|
||||||
"joinPublicPartyDescriptionText": "सार्वजनिक दल से जुड़ें:",
|
"joinPublicPartyDescriptionText": "एक सार्वजनिक पार्टी में शामिल हों",
|
||||||
"localNetworkDescriptionText": "अपने नेटवर्क के दल से जुड़ें:",
|
"localNetworkDescriptionText": "अपने आस पास के दल से जुड़े (लैन , ब्यूटूथ , आदि)",
|
||||||
"localNetworkText": "स्थानिक नेटवर्क",
|
"localNetworkText": "स्थानिक नेटवर्क",
|
||||||
"makePartyPrivateText": "मेरा दल निजी करें",
|
"makePartyPrivateText": "मेरा दल निजी करें",
|
||||||
"makePartyPublicText": "मेरा दल सार्वजनिक करें",
|
"makePartyPublicText": "मेरा दल सार्वजनिक करें",
|
||||||
"manualAddressText": "पता",
|
"manualAddressText": "पता",
|
||||||
"manualConnectText": "जुड़ें",
|
"manualConnectText": "जुड़ें",
|
||||||
"manualDescriptionText": "पते के द्वारा किसी दल से जुडें",
|
"manualDescriptionText": "पते के द्वारा किसी दल से जुडें",
|
||||||
|
"manualJoinSectionText": "पते से जुड़े",
|
||||||
"manualJoinableFromInternetText": "क्या आप इन्टरनेट से जुड़ सकते हैं ?:",
|
"manualJoinableFromInternetText": "क्या आप इन्टरनेट से जुड़ सकते हैं ?:",
|
||||||
"manualJoinableNoWithAsteriskText": "नहीं*",
|
"manualJoinableNoWithAsteriskText": "नहीं*",
|
||||||
"manualJoinableYesText": "हाँ",
|
"manualJoinableYesText": "हाँ",
|
||||||
|
|
@ -723,14 +732,17 @@
|
||||||
"manualText": "खुद से",
|
"manualText": "खुद से",
|
||||||
"manualYourAddressFromInternetText": "आपका पता इन्टरनेट से:",
|
"manualYourAddressFromInternetText": "आपका पता इन्टरनेट से:",
|
||||||
"manualYourLocalAddressText": "आपका स्थानीय पता:",
|
"manualYourLocalAddressText": "आपका स्थानीय पता:",
|
||||||
|
"nearbyText": "आस/पास",
|
||||||
"noConnectionText": "<कोई कनेक्शन नहीं है>",
|
"noConnectionText": "<कोई कनेक्शन नहीं है>",
|
||||||
"otherVersionsText": "(कोई और संस्करण)",
|
"otherVersionsText": "(कोई और संस्करण)",
|
||||||
|
"partyCodeText": "दल कोड",
|
||||||
"partyInviteAcceptText": "स्वीकार करें",
|
"partyInviteAcceptText": "स्वीकार करें",
|
||||||
"partyInviteDeclineText": "अस्वीकार करें",
|
"partyInviteDeclineText": "अस्वीकार करें",
|
||||||
"partyInviteGooglePlayExtraText": "('गूगल-प्ले' टैब 'इकट्ठा' विंडो में देखें)",
|
"partyInviteGooglePlayExtraText": "('गूगल-प्ले' टैब 'इकट्ठा' विंडो में देखें)",
|
||||||
"partyInviteIgnoreText": "नज़रंदाज़ करें",
|
"partyInviteIgnoreText": "नज़रंदाज़ करें",
|
||||||
"partyInviteText": "${NAME} ने आपको अपनी पार्टी में \nजुड़ने के लिए आमंत्रित करा है !",
|
"partyInviteText": "${NAME} ने आपको अपनी पार्टी में \nजुड़ने के लिए आमंत्रित करा है !",
|
||||||
"partyNameText": "दल का नाम",
|
"partyNameText": "दल का नाम",
|
||||||
|
"partyServerRunningText": "आपका पार्टी सर्वर चल रहा है",
|
||||||
"partySizeText": "पार्टी साइज",
|
"partySizeText": "पार्टी साइज",
|
||||||
"partyStatusCheckingText": "स्थिति की जांच ...",
|
"partyStatusCheckingText": "स्थिति की जांच ...",
|
||||||
"partyStatusJoinableText": "आपकी पार्टी इंटरनेट से अब जुड़ने योग्य है",
|
"partyStatusJoinableText": "आपकी पार्टी इंटरनेट से अब जुड़ने योग्य है",
|
||||||
|
|
@ -739,10 +751,20 @@
|
||||||
"partyStatusNotPublicText": "आपकी पार्टी सार्वजनिक नहीं है",
|
"partyStatusNotPublicText": "आपकी पार्टी सार्वजनिक नहीं है",
|
||||||
"pingText": "पिंग",
|
"pingText": "पिंग",
|
||||||
"portText": "पॉर्ट",
|
"portText": "पॉर्ट",
|
||||||
|
"privatePartyCloudDescriptionText": "सभी निजी पार्टीयां उनके लिये समर्पित सरवर पर ही चलती है|कोई राऊटर कौ कॉन्फीगर करने की जरुरत नही |",
|
||||||
|
"privatePartyHostText": "निजी पार्टी बनाये",
|
||||||
|
"privatePartyJoinText": "एक निजी पार्टी में शामिल हों",
|
||||||
|
"privateText": "निजी",
|
||||||
|
"publicHostRouterConfigText": "यह आपके राउटर पर पोर्ट-फॉरवक्रिंग को कॉन्फ़िगर करने की आवश्यकता हो सकती है। एक आसान विकल्प के लिए, एक निजी पार्टी की मेजबानी करें",
|
||||||
|
"publicText": "सार्वजनिक",
|
||||||
"requestingAPromoCodeText": "एक कोड के लिए अनुरोध किया जा रहा है...",
|
"requestingAPromoCodeText": "एक कोड के लिए अनुरोध किया जा रहा है...",
|
||||||
"sendDirectInvitesText": "सीधे आमंत्रण भेजें",
|
"sendDirectInvitesText": "सीधे आमंत्रण भेजें",
|
||||||
"shareThisCodeWithFriendsText": "इस कोड को अपने दोस्तों के साथ बाटें:",
|
"shareThisCodeWithFriendsText": "इस कोड को अपने दोस्तों के साथ बाटें:",
|
||||||
"showMyAddressText": "मेरा पता दिखाएं",
|
"showMyAddressText": "मेरा पता दिखाएं",
|
||||||
|
"startHostingPaidText": "अभी होस्ट करे ${COST}",
|
||||||
|
"startHostingText": "मेज़बान",
|
||||||
|
"startStopHostingMinutesText": "आप अगले ${MINUTES} के लिए मुफ्त में होस्टिंग शुरू और बंद कर सकते हैं।",
|
||||||
|
"stopHostingText": "होस्टिंग बंद करो",
|
||||||
"titleText": "इकट्ठा",
|
"titleText": "इकट्ठा",
|
||||||
"wifiDirectDescriptionBottomText": "यदि सारे यंत्रों में 'वाई-फाई डायरेक्ट' का पैनल है \nतो यंत्र उससे आराम से एक दुसरे से जुड़ सकते हैं |\nजुड़ने के बाद आप 'स्थानीय नेटवर्क' टैब से पार्टी बना सकते है, सामान्य 'वाई-फाई' कि तरह | \n\n सबसे अच्छे परिणामों के लिए 'वाई-फाई डायरेक्ट' के मेज़बान को ही ${APP_NAME} पार्टी का मेज़बान होना चाहिए |",
|
"wifiDirectDescriptionBottomText": "यदि सारे यंत्रों में 'वाई-फाई डायरेक्ट' का पैनल है \nतो यंत्र उससे आराम से एक दुसरे से जुड़ सकते हैं |\nजुड़ने के बाद आप 'स्थानीय नेटवर्क' टैब से पार्टी बना सकते है, सामान्य 'वाई-फाई' कि तरह | \n\n सबसे अच्छे परिणामों के लिए 'वाई-फाई डायरेक्ट' के मेज़बान को ही ${APP_NAME} पार्टी का मेज़बान होना चाहिए |",
|
||||||
"wifiDirectDescriptionTopText": "वाई-फाई डायरेक्ट' से एंड्राइड यंत्रों को बिना वाई-फाई नेटवर्क के भी जोड़ा जा सकता है | \nयह एंड्राइड ४.२ और ओसके बाद के सभी संस्करणों के साथ सबसे अच्छा चलता है | \n\nइसका प्रयोग करने के लिए वाई-फाई सेटिंग खोलें और फिर 'वाई-फाई डायरेक्ट' मेनू में ढूंढे |",
|
"wifiDirectDescriptionTopText": "वाई-फाई डायरेक्ट' से एंड्राइड यंत्रों को बिना वाई-फाई नेटवर्क के भी जोड़ा जा सकता है | \nयह एंड्राइड ४.२ और ओसके बाद के सभी संस्करणों के साथ सबसे अच्छा चलता है | \n\nइसका प्रयोग करने के लिए वाई-फाई सेटिंग खोलें और फिर 'वाई-फाई डायरेक्ट' मेनू में ढूंढे |",
|
||||||
|
|
@ -1038,6 +1060,7 @@
|
||||||
"offText": "बंद करें",
|
"offText": "बंद करें",
|
||||||
"okText": "ठीक है",
|
"okText": "ठीक है",
|
||||||
"onText": "चालू करें",
|
"onText": "चालू करें",
|
||||||
|
"oneMomentText": "एक क्षण...",
|
||||||
"onslaughtRespawnText": "${PLAYER} फिर से जिन्दा होगा लहर ${WAVE} में",
|
"onslaughtRespawnText": "${PLAYER} फिर से जिन्दा होगा लहर ${WAVE} में",
|
||||||
"orText": "${A} या ${B}",
|
"orText": "${A} या ${B}",
|
||||||
"otherText": "अन्य",
|
"otherText": "अन्य",
|
||||||
|
|
@ -1084,6 +1107,7 @@
|
||||||
"playerText": "खिलाड़ी",
|
"playerText": "खिलाड़ी",
|
||||||
"playlistNoValidGamesErrorText": "इस प्लेलिस्ट में कोई खुला हुआ गेम नहीं है |",
|
"playlistNoValidGamesErrorText": "इस प्लेलिस्ट में कोई खुला हुआ गेम नहीं है |",
|
||||||
"playlistNotFoundText": "प्लेलिस्ट नहीं मिली",
|
"playlistNotFoundText": "प्लेलिस्ट नहीं मिली",
|
||||||
|
"playlistText": "प्लेलिस्ट",
|
||||||
"playlistsText": "प्लेलिस्ट",
|
"playlistsText": "प्लेलिस्ट",
|
||||||
"pleaseRateText": "अगर आपको ${APP_NAME} में मज़ा आ रहा है, \nतो एक क्षण ले कर इसका मूल्यांकन करें | \nयह इस गेम के आगे के विकास का एक बहुत अहम् अंश है | \n\nधन्यवाद !\n-एरिक",
|
"pleaseRateText": "अगर आपको ${APP_NAME} में मज़ा आ रहा है, \nतो एक क्षण ले कर इसका मूल्यांकन करें | \nयह इस गेम के आगे के विकास का एक बहुत अहम् अंश है | \n\nधन्यवाद !\n-एरिक",
|
||||||
"pleaseWaitText": "कृपया प्रतीक्षा करें...",
|
"pleaseWaitText": "कृपया प्रतीक्षा करें...",
|
||||||
|
|
@ -1585,6 +1609,7 @@
|
||||||
"The tournament ended before you finished.": "टूर्नामेंट समाप्त होने से पहले समाप्त हो गया।",
|
"The tournament ended before you finished.": "टूर्नामेंट समाप्त होने से पहले समाप्त हो गया।",
|
||||||
"This account cannot be unlinked for ${NUM} days.": "यह खाता ${NUM} दिनों के लिए अनलिंक नहीं किया जा सकता है।",
|
"This account cannot be unlinked for ${NUM} days.": "यह खाता ${NUM} दिनों के लिए अनलिंक नहीं किया जा सकता है।",
|
||||||
"This code cannot be used on the account that created it.": "इस कोड का उपयोग उस खाते पर नहीं किया जा सकता है जिसने इसे बनाया है।",
|
"This code cannot be used on the account that created it.": "इस कोड का उपयोग उस खाते पर नहीं किया जा सकता है जिसने इसे बनाया है।",
|
||||||
|
"This is currently unavailable; please try again later.": "यह अभी अनुपलब्ध है; कृपया बाद में पुन: प्रयास करें।",
|
||||||
"This requires version ${VERSION} or newer.": "इसके लिए संस्करण ${VERSION} या नए की आवश्यकता है।",
|
"This requires version ${VERSION} or newer.": "इसके लिए संस्करण ${VERSION} या नए की आवश्यकता है।",
|
||||||
"Tournaments disabled due to rooted device.": "रूट डिवाइस के कारण टूर्नामेंट अक्षम",
|
"Tournaments disabled due to rooted device.": "रूट डिवाइस के कारण टूर्नामेंट अक्षम",
|
||||||
"Tournaments require ${VERSION} or newer": "टूर्नामेंटों को ${VERSION} या नए की आवश्यकता होती है",
|
"Tournaments require ${VERSION} or newer": "टूर्नामेंटों को ${VERSION} या नए की आवश्यकता होती है",
|
||||||
|
|
|
||||||
39
dist/ba_data/data/languages/hungarian.json
vendored
39
dist/ba_data/data/languages/hungarian.json
vendored
|
|
@ -638,6 +638,7 @@
|
||||||
"titleFolderText": "Válasz ki egy mappát",
|
"titleFolderText": "Válasz ki egy mappát",
|
||||||
"useThisFolderButtonText": "Használd ezt a mappát"
|
"useThisFolderButtonText": "Használd ezt a mappát"
|
||||||
},
|
},
|
||||||
|
"filterText": "Szűrő",
|
||||||
"finalScoreText": "Végeredmény",
|
"finalScoreText": "Végeredmény",
|
||||||
"finalScoresText": "Végeredmények",
|
"finalScoresText": "Végeredmények",
|
||||||
"finalTimeText": "Végső idő",
|
"finalTimeText": "Végső idő",
|
||||||
|
|
@ -684,11 +685,18 @@
|
||||||
"bluetoothJoinText": "Csatlakozás Bluetooth-on keresztül",
|
"bluetoothJoinText": "Csatlakozás Bluetooth-on keresztül",
|
||||||
"bluetoothText": "Bluetooth",
|
"bluetoothText": "Bluetooth",
|
||||||
"checkingText": "ellenőrzés...",
|
"checkingText": "ellenőrzés...",
|
||||||
|
"copyCodeConfirmText": "Vágólapra másolva.",
|
||||||
|
"copyCodeText": "Kód másolása",
|
||||||
"dedicatedServerInfoText": "A legjobb eredményért, csinálj dedikált szerver.Útmutató:bombsquadgame.com/server",
|
"dedicatedServerInfoText": "A legjobb eredményért, csinálj dedikált szerver.Útmutató:bombsquadgame.com/server",
|
||||||
"disconnectClientsText": "Ez le fogja csatlakoztatni a ${COUNT} játékost\na társaságodból. Biztos vagy benne?",
|
"disconnectClientsText": "Ez le fogja csatlakoztatni a ${COUNT} játékost\na társaságodból. Biztos vagy benne?",
|
||||||
"earnTicketsForRecommendingAmountText": "A barátaid kapni fognak ${COUNT} jegyet ha kipróbálják a játékot\n(és te is kapni fogsz ${YOU_COUNT} jegyet minden barátok általi kipróbálás után)",
|
"earnTicketsForRecommendingAmountText": "A barátaid kapni fognak ${COUNT} jegyet ha kipróbálják a játékot\n(és te is kapni fogsz ${YOU_COUNT} jegyet minden barátok általi kipróbálás után)",
|
||||||
"earnTicketsForRecommendingText": "Terjeszd a játékot\ningyenes jegyekért...",
|
"earnTicketsForRecommendingText": "Terjeszd a játékot\ningyenes jegyekért...",
|
||||||
"emailItText": "Küldés",
|
"emailItText": "Küldés",
|
||||||
|
"favoritesSaveText": "Mentés a kedvencekhez",
|
||||||
|
"favoritesText": "Kedvencek",
|
||||||
|
"freeCloudServerAvailableMinutesText": "A következő szerver elérhető ${MINUTES} percen belül.",
|
||||||
|
"freeCloudServerAvailableNowText": "Szerver elérhető!",
|
||||||
|
"freeCloudServerNotAvailableText": "Nincsenek elérhető szerverek.",
|
||||||
"friendHasSentPromoCodeText": "${COUNT} db ${APP_NAME} jegyet kaptál ${NAME}-tól",
|
"friendHasSentPromoCodeText": "${COUNT} db ${APP_NAME} jegyet kaptál ${NAME}-tól",
|
||||||
"friendPromoCodeAwardText": "${COUNT} jegyet fogsz kapni minden egyes használásnál.",
|
"friendPromoCodeAwardText": "${COUNT} jegyet fogsz kapni minden egyes használásnál.",
|
||||||
"friendPromoCodeExpireText": "Ez a kód ${EXPIRE_HOURS} óra múlva lejár és csak új játékosok használhatják.",
|
"friendPromoCodeExpireText": "Ez a kód ${EXPIRE_HOURS} óra múlva lejár és csak új játékosok használhatják.",
|
||||||
|
|
@ -704,12 +712,13 @@
|
||||||
"googlePlaySeeInvitesText": "Lásd a Meghívásokat",
|
"googlePlaySeeInvitesText": "Lásd a Meghívásokat",
|
||||||
"googlePlayText": "Google Play",
|
"googlePlayText": "Google Play",
|
||||||
"googlePlayVersionOnlyText": "(Android / Google Play-es verzió)",
|
"googlePlayVersionOnlyText": "(Android / Google Play-es verzió)",
|
||||||
"hostPublicPartyDescriptionText": "Nyilvános Játék Indítása:",
|
"hostPublicPartyDescriptionText": "Nyilvános játék indítása:",
|
||||||
|
"hostingUnavailableText": "Hosztolás elérhetetlen",
|
||||||
"inDevelopmentWarningText": "Megjegyzés:\n\nHálózati játszás egy új és még mindig-fejlődő részleg.\nEgyenlőre, erősen ajánlott, hogy az összes játékos\nlegyen egy Wi-Fi hálózaton.",
|
"inDevelopmentWarningText": "Megjegyzés:\n\nHálózati játszás egy új és még mindig-fejlődő részleg.\nEgyenlőre, erősen ajánlott, hogy az összes játékos\nlegyen egy Wi-Fi hálózaton.",
|
||||||
"internetText": "Internet",
|
"internetText": "Internet",
|
||||||
"inviteAFriendText": "Nincs meg a barátoknak a játék? Hívd meg őket,\nhogy játszanak és ${COUNT} jegy ütheti a markukat.",
|
"inviteAFriendText": "Nincs meg a barátoknak a játék? Hívd meg őket,\nhogy játszanak és ${COUNT} jegy ütheti a markukat.",
|
||||||
"inviteFriendsText": "Barát Meghívása",
|
"inviteFriendsText": "Barát Meghívása",
|
||||||
"joinPublicPartyDescriptionText": "Belépés Nyilvános Játékba:",
|
"joinPublicPartyDescriptionText": "Belépés nyilvános játékba:",
|
||||||
"localNetworkDescriptionText": "Csatlakozz egy társasághoz, a hálózatodon:",
|
"localNetworkDescriptionText": "Csatlakozz egy társasághoz, a hálózatodon:",
|
||||||
"localNetworkText": "Helyi Hálózat",
|
"localNetworkText": "Helyi Hálózat",
|
||||||
"makePartyPrivateText": "Privát Parti",
|
"makePartyPrivateText": "Privát Parti",
|
||||||
|
|
@ -717,6 +726,7 @@
|
||||||
"manualAddressText": "Cím",
|
"manualAddressText": "Cím",
|
||||||
"manualConnectText": "Csatlakozás",
|
"manualConnectText": "Csatlakozás",
|
||||||
"manualDescriptionText": "Csatlakozz egy társasághoz cím alapján:",
|
"manualDescriptionText": "Csatlakozz egy társasághoz cím alapján:",
|
||||||
|
"manualJoinSectionText": "Csatlakozás cím alapján",
|
||||||
"manualJoinableFromInternetText": "Tudnak más játékosok csatlakozni hozzád?",
|
"manualJoinableFromInternetText": "Tudnak más játékosok csatlakozni hozzád?",
|
||||||
"manualJoinableNoWithAsteriskText": "NEM*",
|
"manualJoinableNoWithAsteriskText": "NEM*",
|
||||||
"manualJoinableYesText": "IGEN",
|
"manualJoinableYesText": "IGEN",
|
||||||
|
|
@ -724,14 +734,17 @@
|
||||||
"manualText": "Kézi",
|
"manualText": "Kézi",
|
||||||
"manualYourAddressFromInternetText": "Publikus IP címed:",
|
"manualYourAddressFromInternetText": "Publikus IP címed:",
|
||||||
"manualYourLocalAddressText": "Lokális IP címed:",
|
"manualYourLocalAddressText": "Lokális IP címed:",
|
||||||
|
"nearbyText": "Közeli játékok",
|
||||||
"noConnectionText": "<nincs csatlakozás>",
|
"noConnectionText": "<nincs csatlakozás>",
|
||||||
"otherVersionsText": "(másik verziók)",
|
"otherVersionsText": "(másik verziók)",
|
||||||
|
"partyCodeText": "Party kód",
|
||||||
"partyInviteAcceptText": "Elfogad",
|
"partyInviteAcceptText": "Elfogad",
|
||||||
"partyInviteDeclineText": "Elutasít",
|
"partyInviteDeclineText": "Elutasít",
|
||||||
"partyInviteGooglePlayExtraText": "(lásd a 'Google Play' fület a 'Toborzás' ablakban)",
|
"partyInviteGooglePlayExtraText": "(lásd a 'Google Play' fület a 'Toborzás' ablakban)",
|
||||||
"partyInviteIgnoreText": "Figyelmen kívül hagy",
|
"partyInviteIgnoreText": "Figyelmen kívül hagy",
|
||||||
"partyInviteText": "${NAME} meg lett hívva hogy \ncsatlakozzon a te társaságodba!",
|
"partyInviteText": "${NAME} meg lett hívva hogy \ncsatlakozzon a te társaságodba!",
|
||||||
"partyNameText": "Parti Neve:",
|
"partyNameText": "Parti Neve:",
|
||||||
|
"partyServerRunningText": "A party szervered fut.",
|
||||||
"partySizeText": "parti mérete",
|
"partySizeText": "parti mérete",
|
||||||
"partyStatusCheckingText": "Ellenőrzés...",
|
"partyStatusCheckingText": "Ellenőrzés...",
|
||||||
"partyStatusJoinableText": "a partidba most már mások is csatlakozhatnak az internetről",
|
"partyStatusJoinableText": "a partidba most már mások is csatlakozhatnak az internetről",
|
||||||
|
|
@ -740,13 +753,23 @@
|
||||||
"partyStatusNotPublicText": "a partid nem nyilvános",
|
"partyStatusNotPublicText": "a partid nem nyilvános",
|
||||||
"pingText": "ping",
|
"pingText": "ping",
|
||||||
"portText": "Port",
|
"portText": "Port",
|
||||||
|
"privatePartyCloudDescriptionText": "Privát szerverek felhőkön futnak.",
|
||||||
|
"privatePartyHostText": "Privát party hosztolása",
|
||||||
|
"privatePartyJoinText": "Csatlakozás privát partyhoz",
|
||||||
|
"privateText": "Privát",
|
||||||
|
"publicHostRouterConfigText": "Ezt beállítani nehéz. Inkább csinálj egy privát partyt",
|
||||||
|
"publicText": "Nyilvános",
|
||||||
"requestingAPromoCodeText": "Kód lekérése....",
|
"requestingAPromoCodeText": "Kód lekérése....",
|
||||||
"sendDirectInvitesText": "Meghívás Küldése",
|
"sendDirectInvitesText": "Meghívás Küldése",
|
||||||
"sendThisToAFriendText": "Küld el ezt a kódot egy barátodnak:",
|
"sendThisToAFriendText": "Küld el ezt a kódot egy barátodnak:",
|
||||||
"shareThisCodeWithFriendsText": "Küld el ezt a kódot barátaidnak:",
|
"shareThisCodeWithFriendsText": "Küld el ezt a kódot barátaidnak:",
|
||||||
"showMyAddressText": "Címem",
|
"showMyAddressText": "Címem",
|
||||||
"startAdvertisingText": "Parti Indítása",
|
"startAdvertisingText": "Parti Indítása",
|
||||||
|
"startHostingPaidText": "Hosztolj akár ${COST} -ért",
|
||||||
|
"startHostingText": "Hoszt",
|
||||||
|
"startStopHostingMinutesText": "Ingyen hostolhatsz az elköventezendő ${MINUTES} percben.",
|
||||||
"stopAdvertisingText": "Parti Leállítása",
|
"stopAdvertisingText": "Parti Leállítása",
|
||||||
|
"stopHostingText": "Hosztolás abbahagyása",
|
||||||
"titleText": "Toborzás",
|
"titleText": "Toborzás",
|
||||||
"wifiDirectDescriptionBottomText": "Ha minden eszköznek van 'Wi-Fi Direct' panelje, akkor meg kellene találniuk és \ncsatlakozniuk egymáshoz. Ha mindegyik eszköz csatlakoztatva van, akkor tudtok alkotni\na társaságot a 'Helyi Hálózatok' fülnél, csak úgy mint a sima Wi-Fi hálózattal.\n\nA legjobb eredményért, a Wi-Fi Direkt hálózat készítőjének kellene lennie a ${APP_NAME} társaság készítőjének is.",
|
"wifiDirectDescriptionBottomText": "Ha minden eszköznek van 'Wi-Fi Direct' panelje, akkor meg kellene találniuk és \ncsatlakozniuk egymáshoz. Ha mindegyik eszköz csatlakoztatva van, akkor tudtok alkotni\na társaságot a 'Helyi Hálózatok' fülnél, csak úgy mint a sima Wi-Fi hálózattal.\n\nA legjobb eredményért, a Wi-Fi Direkt hálózat készítőjének kellene lennie a ${APP_NAME} társaság készítőjének is.",
|
||||||
"wifiDirectDescriptionTopText": "Wi-Fi Direct-t arra is lehet használni, hogy Android eszközön közvetlenül, Wi-Fi hálózat\nigénye nélkül is csatlakozhassanak. A legjobban Android 4.2-n és újabbon működik.\n\nHogy ezt használd, nyisd meg a Wi-Fi beállításokat és keress 'Wi-Fi Direct'-et a menüben.",
|
"wifiDirectDescriptionTopText": "Wi-Fi Direct-t arra is lehet használni, hogy Android eszközön közvetlenül, Wi-Fi hálózat\nigénye nélkül is csatlakozhassanak. A legjobban Android 4.2-n és újabbon működik.\n\nHogy ezt használd, nyisd meg a Wi-Fi beállításokat és keress 'Wi-Fi Direct'-et a menüben.",
|
||||||
|
|
@ -913,6 +936,9 @@
|
||||||
"jumpText": "Ugorj",
|
"jumpText": "Ugorj",
|
||||||
"keepText": "Tartsd",
|
"keepText": "Tartsd",
|
||||||
"keepTheseSettingsText": "Megtartja ezeket a beállításokat?",
|
"keepTheseSettingsText": "Megtartja ezeket a beállításokat?",
|
||||||
|
"keyboardChangeInstructionsText": "Nyomd meg kétszer a SPACE gombot a billentyűzetváltáshoz.",
|
||||||
|
"keyboardNoOthersAvailableText": "Nem elérhető másik billentyűzet.",
|
||||||
|
"keyboardSwitchText": "Átvástás ${NAME} nevű billentyűzetre.",
|
||||||
"kickOccurredText": "${NAME} ki lett rúgva.",
|
"kickOccurredText": "${NAME} ki lett rúgva.",
|
||||||
"kickQuestionText": "Kirúgod őt:${NAME}?",
|
"kickQuestionText": "Kirúgod őt:${NAME}?",
|
||||||
"kickText": "Kirúgás",
|
"kickText": "Kirúgás",
|
||||||
|
|
@ -994,6 +1020,9 @@
|
||||||
"maxConnectionsText": "Max. Eszközök",
|
"maxConnectionsText": "Max. Eszközök",
|
||||||
"maxPartySizeText": "Maximum Parti Méret",
|
"maxPartySizeText": "Maximum Parti Méret",
|
||||||
"maxPlayersText": "Max. Játékosok",
|
"maxPlayersText": "Max. Játékosok",
|
||||||
|
"modeArcadeText": "Árkád mód",
|
||||||
|
"modeClassicText": "Klasszikus mód",
|
||||||
|
"modeDemoText": "Demó mód",
|
||||||
"mostValuablePlayerText": "Legértékesebb Játékos",
|
"mostValuablePlayerText": "Legértékesebb Játékos",
|
||||||
"mostViolatedPlayerText": "Legtöbbször Megölt Játékos",
|
"mostViolatedPlayerText": "Legtöbbször Megölt Játékos",
|
||||||
"mostViolentPlayerText": "Legerőszakosabb Játékos",
|
"mostViolentPlayerText": "Legerőszakosabb Játékos",
|
||||||
|
|
@ -1036,6 +1065,7 @@
|
||||||
"offText": "Ki",
|
"offText": "Ki",
|
||||||
"okText": "Ok",
|
"okText": "Ok",
|
||||||
"onText": "Be",
|
"onText": "Be",
|
||||||
|
"oneMomentText": "Egy pillanat...",
|
||||||
"onslaughtRespawnText": "${PLAYER} újraéled a következő körben (${WAVE})",
|
"onslaughtRespawnText": "${PLAYER} újraéled a következő körben (${WAVE})",
|
||||||
"orText": "${A} vagy ${B}",
|
"orText": "${A} vagy ${B}",
|
||||||
"otherText": "Egyéb...",
|
"otherText": "Egyéb...",
|
||||||
|
|
@ -1082,6 +1112,7 @@
|
||||||
"playerText": "Játékos",
|
"playerText": "Játékos",
|
||||||
"playlistNoValidGamesErrorText": "Ez a lista tartalmaz még nem feloldott játékokat.",
|
"playlistNoValidGamesErrorText": "Ez a lista tartalmaz még nem feloldott játékokat.",
|
||||||
"playlistNotFoundText": "A lista nem található",
|
"playlistNotFoundText": "A lista nem található",
|
||||||
|
"playlistText": "Játszólista",
|
||||||
"playlistsText": "Listák",
|
"playlistsText": "Listák",
|
||||||
"pleaseRateText": "Ha élvezed a játékot, kérlek értékeld, vagy írj egy\nvéleményt a ${APP_NAME}-ról. Ez mások számára hasznos \nlehet, vagy akár segítheti a játék fejlődését is a jövőben.\n\nKöszi!\n-eric",
|
"pleaseRateText": "Ha élvezed a játékot, kérlek értékeld, vagy írj egy\nvéleményt a ${APP_NAME}-ról. Ez mások számára hasznos \nlehet, vagy akár segítheti a játék fejlődését is a jövőben.\n\nKöszi!\n-eric",
|
||||||
"pleaseWaitText": "Kérljek várj...",
|
"pleaseWaitText": "Kérljek várj...",
|
||||||
|
|
@ -1503,6 +1534,7 @@
|
||||||
"Swedish": "Svéd",
|
"Swedish": "Svéd",
|
||||||
"Turkish": "Török",
|
"Turkish": "Török",
|
||||||
"Ukrainian": "Ukrán",
|
"Ukrainian": "Ukrán",
|
||||||
|
"Venetian": "Velencei",
|
||||||
"Vietnamese": "Vietnám"
|
"Vietnamese": "Vietnám"
|
||||||
},
|
},
|
||||||
"leagueNames": {
|
"leagueNames": {
|
||||||
|
|
@ -1573,6 +1605,7 @@
|
||||||
"Max number of profiles reached.": "Maximum profilszám elérve.",
|
"Max number of profiles reached.": "Maximum profilszám elérve.",
|
||||||
"Maximum friend code rewards reached.": "Maximum barát kód elérve.",
|
"Maximum friend code rewards reached.": "Maximum barát kód elérve.",
|
||||||
"Message is too long.": "Az üzenet túl hosszú.",
|
"Message is too long.": "Az üzenet túl hosszú.",
|
||||||
|
"No servers are available. Please try again soon.": "A szerverek nem elérhetőek. Kérlek próbáld újra később.",
|
||||||
"Profile \"${NAME}\" upgraded successfully.": "A \"${NAME}\" profil teljes körűvé fejlesztve.",
|
"Profile \"${NAME}\" upgraded successfully.": "A \"${NAME}\" profil teljes körűvé fejlesztve.",
|
||||||
"Profile could not be upgraded.": "A profilt nem lehet frissíteni.",
|
"Profile could not be upgraded.": "A profilt nem lehet frissíteni.",
|
||||||
"Purchase successful!": "Vásárlás sikeres!",
|
"Purchase successful!": "Vásárlás sikeres!",
|
||||||
|
|
@ -1582,10 +1615,12 @@
|
||||||
"Sorry, this code has already been used.": "Ezt a kódot már használták.",
|
"Sorry, this code has already been used.": "Ezt a kódot már használták.",
|
||||||
"Sorry, this code has expired.": "Ez a kód már lejárt.",
|
"Sorry, this code has expired.": "Ez a kód már lejárt.",
|
||||||
"Sorry, this code only works for new accounts.": "Ezt a kódot csak új játékosok használhatják.",
|
"Sorry, this code only works for new accounts.": "Ezt a kódot csak új játékosok használhatják.",
|
||||||
|
"Still searching for nearby servers; please try again soon.": "Keresés közeli szerverek iránt...",
|
||||||
"Temporarily unavailable; please try again later.": "Jelenleg elérhetetlen; kérlek próbáld újra később.",
|
"Temporarily unavailable; please try again later.": "Jelenleg elérhetetlen; kérlek próbáld újra később.",
|
||||||
"The tournament ended before you finished.": "A torna lezárult mielőtt te befejezted volna.",
|
"The tournament ended before you finished.": "A torna lezárult mielőtt te befejezted volna.",
|
||||||
"This account cannot be unlinked for ${NUM} days.": "Ezt a fiókot nem tudod leválasztani ${NUM} napig.",
|
"This account cannot be unlinked for ${NUM} days.": "Ezt a fiókot nem tudod leválasztani ${NUM} napig.",
|
||||||
"This code cannot be used on the account that created it.": "Ez a kód nem használható fel, mivel te alkottad.",
|
"This code cannot be used on the account that created it.": "Ez a kód nem használható fel, mivel te alkottad.",
|
||||||
|
"This is currently unavailable; please try again later.": "Ez jelenleg elérhetetlen. Kérlek próbáld újra később.",
|
||||||
"This requires version ${VERSION} or newer.": "Ehhez szükséges verzió:${VERSION} vagy újabb.",
|
"This requires version ${VERSION} or newer.": "Ehhez szükséges verzió:${VERSION} vagy újabb.",
|
||||||
"Tournaments disabled due to rooted device.": "A versenyek tiltva vannak rootolt eszköz miatt.",
|
"Tournaments disabled due to rooted device.": "A versenyek tiltva vannak rootolt eszköz miatt.",
|
||||||
"Tournaments require ${VERSION} or newer": "A versenyhez ${VERSION} verzió vagy újabb szükséges.",
|
"Tournaments require ${VERSION} or newer": "A versenyhez ${VERSION} verzió vagy újabb szükséges.",
|
||||||
|
|
|
||||||
2
dist/ba_data/data/languages/italian.json
vendored
2
dist/ba_data/data/languages/italian.json
vendored
|
|
@ -1674,6 +1674,7 @@
|
||||||
"Max number of profiles reached.": "Numero massimo di profili raggiunto.",
|
"Max number of profiles reached.": "Numero massimo di profili raggiunto.",
|
||||||
"Maximum friend code rewards reached.": "Numero massimo di richieste d'amicizia inviate",
|
"Maximum friend code rewards reached.": "Numero massimo di richieste d'amicizia inviate",
|
||||||
"Message is too long.": "Il messaggio è troppo lungo.",
|
"Message is too long.": "Il messaggio è troppo lungo.",
|
||||||
|
"No servers are available. Please try again soon.": "Nessun server disponibile,prova più tardi.",
|
||||||
"Profile \"${NAME}\" upgraded successfully.": "Il profilo \"${NAME}\" è stato aggiornato con successo.",
|
"Profile \"${NAME}\" upgraded successfully.": "Il profilo \"${NAME}\" è stato aggiornato con successo.",
|
||||||
"Profile could not be upgraded.": "Il profilo non è potuto essere aggiornato.",
|
"Profile could not be upgraded.": "Il profilo non è potuto essere aggiornato.",
|
||||||
"Purchase successful!": "Acquistato con successo!",
|
"Purchase successful!": "Acquistato con successo!",
|
||||||
|
|
@ -1683,6 +1684,7 @@
|
||||||
"Sorry, this code has already been used.": "Spiacente, questo codice è già stato usato.",
|
"Sorry, this code has already been used.": "Spiacente, questo codice è già stato usato.",
|
||||||
"Sorry, this code has expired.": "Spiacente, questo codice è scaduto.",
|
"Sorry, this code has expired.": "Spiacente, questo codice è scaduto.",
|
||||||
"Sorry, this code only works for new accounts.": "Spiacente, questo codice funziona solo per nuovi account.",
|
"Sorry, this code only works for new accounts.": "Spiacente, questo codice funziona solo per nuovi account.",
|
||||||
|
"Still searching for nearby servers; please try again soon.": "Continuo a cercare dei server.Per favore prova più tardi.",
|
||||||
"Temporarily unavailable; please try again later.": "Al momento non disponibile; prova più tardi.",
|
"Temporarily unavailable; please try again later.": "Al momento non disponibile; prova più tardi.",
|
||||||
"The tournament ended before you finished.": "Il torneo è terminato prima che tu abbia finito.",
|
"The tournament ended before you finished.": "Il torneo è terminato prima che tu abbia finito.",
|
||||||
"This account cannot be unlinked for ${NUM} days.": "Questo account non può essere scollegato per ${NUM} giorni.",
|
"This account cannot be unlinked for ${NUM} days.": "Questo account non può essere scollegato per ${NUM} giorni.",
|
||||||
|
|
|
||||||
80
dist/ba_data/data/languages/korean.json
vendored
80
dist/ba_data/data/languages/korean.json
vendored
|
|
@ -11,6 +11,7 @@
|
||||||
"linkAccountsEnterCodeText": "코드 입력",
|
"linkAccountsEnterCodeText": "코드 입력",
|
||||||
"linkAccountsGenerateCodeText": "코드 생성",
|
"linkAccountsGenerateCodeText": "코드 생성",
|
||||||
"linkAccountsInfoText": "(여러 플랫폼에서 진행 상황을 공유합니다)",
|
"linkAccountsInfoText": "(여러 플랫폼에서 진행 상황을 공유합니다)",
|
||||||
|
"linkAccountsInstructionsNewText": "두 계정을 연동하시려면, 첫번째 계정에 코드를 생성하고 \n두번째 계정에 코드를 입력하십시오. \n이후 두번째 계정의 데이터는 서로 공유됩니다.\n(첫번째 계정의 데이터는 삭제됩니다.)\n\n최대 ${COUNT}의 계정까지 연동할수 있습니다..\n\n중요: 당신이 소유하고 있는 계정만 연동하십시오;\n만약 친구 계정과 연동 시' \n동시 온라인 접속이 불가능해집니다.",
|
||||||
"linkAccountsInstructionsText": "두 개의 계정을 연동하려면 한 곳에서 코드를\n생성한 후 다른 곳에서 해당 코드를 입력합니다.\n진행 상황 및 소지품은 결합됩니다.\n최대 ${COUNT}개의 계정을 연동할 수 있습니다.\n\n중요:당신의 계정만 연동하십시오!\n만약에 당신이 친구의 계정과 연동하면 친구가 게임\n하는 동안 당신은 게임 할수 없게 됩니다!\n\n이 작업은 취소할 수 없으므로 주의하세요!",
|
"linkAccountsInstructionsText": "두 개의 계정을 연동하려면 한 곳에서 코드를\n생성한 후 다른 곳에서 해당 코드를 입력합니다.\n진행 상황 및 소지품은 결합됩니다.\n최대 ${COUNT}개의 계정을 연동할 수 있습니다.\n\n중요:당신의 계정만 연동하십시오!\n만약에 당신이 친구의 계정과 연동하면 친구가 게임\n하는 동안 당신은 게임 할수 없게 됩니다!\n\n이 작업은 취소할 수 없으므로 주의하세요!",
|
||||||
"linkAccountsText": "계정 연동",
|
"linkAccountsText": "계정 연동",
|
||||||
"linkedAccountsText": "연동된 계정",
|
"linkedAccountsText": "연동된 계정",
|
||||||
|
|
@ -19,6 +20,7 @@
|
||||||
"resetProgressConfirmText": "이 옵션은 협동 모드 진행 상황, 업적 및\n로컬 최고 점수를 초기화합니다\n(티켓 제외). 이 작업은 취소할 수 없습니다.\n괜찮습니까?",
|
"resetProgressConfirmText": "이 옵션은 협동 모드 진행 상황, 업적 및\n로컬 최고 점수를 초기화합니다\n(티켓 제외). 이 작업은 취소할 수 없습니다.\n괜찮습니까?",
|
||||||
"resetProgressText": "진행 상황 초기화",
|
"resetProgressText": "진행 상황 초기화",
|
||||||
"setAccountName": "계정 이름 설정",
|
"setAccountName": "계정 이름 설정",
|
||||||
|
"setAccountNameDesc": "당신 계정에 보여질 이름을 선택해주시오.\n연동된 계정 중 하나에서 이름을 사용하거나,\n또는 자기만의 독창적인 이름을 만들어서 사용할 수 있습니다.",
|
||||||
"signInInfoText": "로그인해서 티켓을 수집하고 온라인으로 겨루며\n여러 기기에서 진행 상황을 공유하세요.",
|
"signInInfoText": "로그인해서 티켓을 수집하고 온라인으로 겨루며\n여러 기기에서 진행 상황을 공유하세요.",
|
||||||
"signInText": "로그인",
|
"signInText": "로그인",
|
||||||
"signInWithDeviceInfoText": "(자동 계정은 이 기기에서만 이용할 수 있습니다)",
|
"signInWithDeviceInfoText": "(자동 계정은 이 기기에서만 이용할 수 있습니다)",
|
||||||
|
|
@ -597,7 +599,7 @@
|
||||||
"duplicateText": "사운드트랙\n복사",
|
"duplicateText": "사운드트랙\n복사",
|
||||||
"editSoundtrackText": "사운드트랙 편집기",
|
"editSoundtrackText": "사운드트랙 편집기",
|
||||||
"editText": "사운드트랙\n편집",
|
"editText": "사운드트랙\n편집",
|
||||||
"fetchingITunesText": "iTunes 재생 목록을 가져오는 중...",
|
"fetchingITunesText": "음악 어플 재생 목록을 가져오는 중...",
|
||||||
"musicVolumeZeroWarning": "경고: 음악 볼륨은 0으로 설정됩니다",
|
"musicVolumeZeroWarning": "경고: 음악 볼륨은 0으로 설정됩니다",
|
||||||
"nameText": "이름",
|
"nameText": "이름",
|
||||||
"newSoundtrackNameText": "내 사운드트랙 ${COUNT}",
|
"newSoundtrackNameText": "내 사운드트랙 ${COUNT}",
|
||||||
|
|
@ -608,7 +610,7 @@
|
||||||
"testText": "테스트",
|
"testText": "테스트",
|
||||||
"titleText": "사운드트랙",
|
"titleText": "사운드트랙",
|
||||||
"useDefaultGameMusicText": "기본 게임 음악",
|
"useDefaultGameMusicText": "기본 게임 음악",
|
||||||
"useITunesPlaylistText": "iTunes 재생 목록",
|
"useITunesPlaylistText": "음악 앱 재생 목록",
|
||||||
"useMusicFileText": "음악 파일 (mp3 등)",
|
"useMusicFileText": "음악 파일 (mp3 등)",
|
||||||
"useMusicFolderText": "음악 파일 폴더"
|
"useMusicFolderText": "음악 파일 폴더"
|
||||||
},
|
},
|
||||||
|
|
@ -632,6 +634,7 @@
|
||||||
"titleFolderText": "폴더 선택",
|
"titleFolderText": "폴더 선택",
|
||||||
"useThisFolderButtonText": "이 폴더 사용"
|
"useThisFolderButtonText": "이 폴더 사용"
|
||||||
},
|
},
|
||||||
|
"filterText": "필터",
|
||||||
"finalScoreText": "최종 점수",
|
"finalScoreText": "최종 점수",
|
||||||
"finalScoresText": "최종 점수",
|
"finalScoresText": "최종 점수",
|
||||||
"finalTimeText": "최종 시간",
|
"finalTimeText": "최종 시간",
|
||||||
|
|
@ -677,11 +680,18 @@
|
||||||
"bluetoothJoinText": "블루투스를 통해 가입",
|
"bluetoothJoinText": "블루투스를 통해 가입",
|
||||||
"bluetoothText": "블루투스",
|
"bluetoothText": "블루투스",
|
||||||
"checkingText": "확인 중...",
|
"checkingText": "확인 중...",
|
||||||
|
"copyCodeConfirmText": "코드가 클립보드에 복사되었습니다.",
|
||||||
|
"copyCodeText": "코드 복사",
|
||||||
"dedicatedServerInfoText": "최선의 결과를 위해 전용 서버를 구축하세요. 자세한 사항은 bombsquadgame.com/server를 참조해주십시오.",
|
"dedicatedServerInfoText": "최선의 결과를 위해 전용 서버를 구축하세요. 자세한 사항은 bombsquadgame.com/server를 참조해주십시오.",
|
||||||
"disconnectClientsText": "파티 내의 플레이어 ${COUNT}명의 연결이\n끊어집니다. 괜찮습니까?",
|
"disconnectClientsText": "파티 내의 플레이어 ${COUNT}명의 연결이\n끊어집니다. 괜찮습니까?",
|
||||||
"earnTicketsForRecommendingAmountText": "친구들은 게임을 시도하면 티켓 ${COUNT}장을 받습니다\n(귀하는 각각의 친구에 대해서 ${YOU_COUNT}장을 받습니다)",
|
"earnTicketsForRecommendingAmountText": "친구들은 게임을 시도하면 티켓 ${COUNT}장을 받습니다\n(귀하는 각각의 친구에 대해서 ${YOU_COUNT}장을 받습니다)",
|
||||||
"earnTicketsForRecommendingText": "게임을 공유하고\n무료 티켓을 받으세요...",
|
"earnTicketsForRecommendingText": "게임을 공유하고\n무료 티켓을 받으세요...",
|
||||||
"emailItText": "이메일 보내기",
|
"emailItText": "이메일 보내기",
|
||||||
|
"favoritesSaveText": "즐겨찾기로 저장",
|
||||||
|
"favoritesText": "즐겨찾기",
|
||||||
|
"freeCloudServerAvailableMinutesText": "다음 클라우드 서버는 ${MINUTES} 분 후에 사용할 수 있습니다.",
|
||||||
|
"freeCloudServerAvailableNowText": "무료 클라우드 서버가 이용가능 합니다!",
|
||||||
|
"freeCloudServerNotAvailableText": "이용가능한 무료 클라우드 서버가 없습니다.",
|
||||||
"friendHasSentPromoCodeText": "${NAME} 님이 ${APP_NAME} 티켓 ${COUNT}장을 보냄",
|
"friendHasSentPromoCodeText": "${NAME} 님이 ${APP_NAME} 티켓 ${COUNT}장을 보냄",
|
||||||
"friendPromoCodeAwardText": "코드가 사용될 때마다 귀하는 티켓 ${COUNT}장을 받습니다.",
|
"friendPromoCodeAwardText": "코드가 사용될 때마다 귀하는 티켓 ${COUNT}장을 받습니다.",
|
||||||
"friendPromoCodeExpireText": "이 코드는 ${EXPIRE_HOURS}시간 후 만료되며 신규 플레이어에게만 적용됩니다.",
|
"friendPromoCodeExpireText": "이 코드는 ${EXPIRE_HOURS}시간 후 만료되며 신규 플레이어에게만 적용됩니다.",
|
||||||
|
|
@ -696,19 +706,21 @@
|
||||||
"googlePlaySeeInvitesText": "초대 보기",
|
"googlePlaySeeInvitesText": "초대 보기",
|
||||||
"googlePlayText": "Google Play",
|
"googlePlayText": "Google Play",
|
||||||
"googlePlayVersionOnlyText": "(안드로이드 / Google Play 버전)",
|
"googlePlayVersionOnlyText": "(안드로이드 / Google Play 버전)",
|
||||||
"hostPublicPartyDescriptionText": "공개 파티 만들기:",
|
"hostPublicPartyDescriptionText": "공개 파티 만들기",
|
||||||
|
"hostingUnavailableText": "호스팅 불가",
|
||||||
"inDevelopmentWarningText": "참고:\n\n네트워크 플레이는 계속 발전 중인 신규 기능입니다.\n당분간은 모든 플레이어가 같은 Wi-Fi 네트워크에\n접속할 것을 적극 권장합니다.",
|
"inDevelopmentWarningText": "참고:\n\n네트워크 플레이는 계속 발전 중인 신규 기능입니다.\n당분간은 모든 플레이어가 같은 Wi-Fi 네트워크에\n접속할 것을 적극 권장합니다.",
|
||||||
"internetText": "인터넷",
|
"internetText": "인터넷",
|
||||||
"inviteAFriendText": "친구가 이 게임을 갖고 있지 않나요? 초대해서 함께\n플레이하세요. 친구들은 티켓 ${COUNT}장을 무료로 받습니다.",
|
"inviteAFriendText": "친구가 이 게임을 갖고 있지 않나요? 초대해서 함께\n플레이하세요. 친구들은 티켓 ${COUNT}장을 무료로 받습니다.",
|
||||||
"inviteFriendsText": "친구 초대",
|
"inviteFriendsText": "친구 초대",
|
||||||
"joinPublicPartyDescriptionText": "공개 파티 참가하기:",
|
"joinPublicPartyDescriptionText": "공개 파티 참가하기",
|
||||||
"localNetworkDescriptionText": "네트워크에서 파티에 가입하기:",
|
"localNetworkDescriptionText": "근접한 파티에 가입하기 (LAN, 블루투스, 기타.)",
|
||||||
"localNetworkText": "로컬 네트워크",
|
"localNetworkText": "로컬 네트워크",
|
||||||
"makePartyPrivateText": "비공개 파티로 전환",
|
"makePartyPrivateText": "비공개 파티로 전환",
|
||||||
"makePartyPublicText": "공개 파티 만들기",
|
"makePartyPublicText": "공개 파티 만들기",
|
||||||
"manualAddressText": "주소",
|
"manualAddressText": "주소",
|
||||||
"manualConnectText": "연결",
|
"manualConnectText": "연결",
|
||||||
"manualDescriptionText": "주소로 파티에 가입하기:",
|
"manualDescriptionText": "주소로 파티에 가입하기:",
|
||||||
|
"manualJoinSectionText": "주소로 가입하기",
|
||||||
"manualJoinableFromInternetText": "인터넷을 통한 가입 가능 여부:",
|
"manualJoinableFromInternetText": "인터넷을 통한 가입 가능 여부:",
|
||||||
"manualJoinableNoWithAsteriskText": "아니오*",
|
"manualJoinableNoWithAsteriskText": "아니오*",
|
||||||
"manualJoinableYesText": "예",
|
"manualJoinableYesText": "예",
|
||||||
|
|
@ -716,14 +728,17 @@
|
||||||
"manualText": "수동",
|
"manualText": "수동",
|
||||||
"manualYourAddressFromInternetText": "인터넷에서 귀하의 주소:",
|
"manualYourAddressFromInternetText": "인터넷에서 귀하의 주소:",
|
||||||
"manualYourLocalAddressText": "귀하의 로컬 주소:",
|
"manualYourLocalAddressText": "귀하의 로컬 주소:",
|
||||||
|
"nearbyText": "근처",
|
||||||
"noConnectionText": "<연결 없음>",
|
"noConnectionText": "<연결 없음>",
|
||||||
"otherVersionsText": "(다른 버전)",
|
"otherVersionsText": "(다른 버전)",
|
||||||
|
"partyCodeText": "파티 코드",
|
||||||
"partyInviteAcceptText": "수락",
|
"partyInviteAcceptText": "수락",
|
||||||
"partyInviteDeclineText": "거절",
|
"partyInviteDeclineText": "거절",
|
||||||
"partyInviteGooglePlayExtraText": "('파티 모집' 창에서 'Google Play' 탭을 확인하세요)",
|
"partyInviteGooglePlayExtraText": "('파티 모집' 창에서 'Google Play' 탭을 확인하세요)",
|
||||||
"partyInviteIgnoreText": "무시",
|
"partyInviteIgnoreText": "무시",
|
||||||
"partyInviteText": "${NAME} 님이 귀하를\n파티에 초대했습니다!",
|
"partyInviteText": "${NAME} 님이 귀하를\n파티에 초대했습니다!",
|
||||||
"partyNameText": "파티 이름",
|
"partyNameText": "파티 이름",
|
||||||
|
"partyServerRunningText": "현제 파티 서버가 운영중입니다.",
|
||||||
"partySizeText": "인원",
|
"partySizeText": "인원",
|
||||||
"partyStatusCheckingText": "등급 확인 중...",
|
"partyStatusCheckingText": "등급 확인 중...",
|
||||||
"partyStatusJoinableText": "당신의 파티는 이제 인터넷에 참가됩니다.",
|
"partyStatusJoinableText": "당신의 파티는 이제 인터넷에 참가됩니다.",
|
||||||
|
|
@ -732,10 +747,20 @@
|
||||||
"partyStatusNotPublicText": "당신의 파티는 비공개입니다.",
|
"partyStatusNotPublicText": "당신의 파티는 비공개입니다.",
|
||||||
"pingText": "핑",
|
"pingText": "핑",
|
||||||
"portText": "포트",
|
"portText": "포트",
|
||||||
|
"privatePartyCloudDescriptionText": "비공개 파티는 전용 클라우드 서버를 통해 운용됩니다; 공유기 설정은 필요 없습니다.",
|
||||||
|
"privatePartyHostText": "비공개 파티 호스팅하기",
|
||||||
|
"privatePartyJoinText": "비공개 파티 참가하기",
|
||||||
|
"privateText": "비공개",
|
||||||
|
"publicHostRouterConfigText": "공유기 설정에서 포트포워딩 설정이 필요할수도 있습니다. 더 쉬운 설정을 위해 비공개 파티를 호스팅하세요.",
|
||||||
|
"publicText": "공개",
|
||||||
"requestingAPromoCodeText": "코드 요청 중...",
|
"requestingAPromoCodeText": "코드 요청 중...",
|
||||||
"sendDirectInvitesText": "직접 초대 보내기",
|
"sendDirectInvitesText": "직접 초대 보내기",
|
||||||
"shareThisCodeWithFriendsText": "다음 코드를 친구들과 공유하세요.",
|
"shareThisCodeWithFriendsText": "다음 코드를 친구들과 공유하세요.",
|
||||||
"showMyAddressText": "내 IP주소 보기",
|
"showMyAddressText": "내 IP주소 보기",
|
||||||
|
"startHostingPaidText": "${COST} 으로 지금 호스팅하기",
|
||||||
|
"startHostingText": "방 만들기",
|
||||||
|
"startStopHostingMinutesText": "다음 ${MINUTES} 분 동안, 호스팅을 시작하거나 멈출수 있습니다.",
|
||||||
|
"stopHostingText": "호스팅 중지",
|
||||||
"titleText": "파티 모집",
|
"titleText": "파티 모집",
|
||||||
"wifiDirectDescriptionBottomText": "모든 장치에 'Wi-Fi 다이렉트' 패널이 있으면 이를 통해서 서로 찾고 연결할 수 있어야\n합니다. 모든 장치가 연결되면 일반 Wi-Fi 네트워크와 똑같이 '로컬 네트워크' 탭을\n이용해 이곳에서 파티를 결성할 수 있습니다.\n\n최선의 결과를 얻으려면 Wi-Fi 다이렉트 호스트가 ${APP_NAME} 파티 호스트이어야 합니다.",
|
"wifiDirectDescriptionBottomText": "모든 장치에 'Wi-Fi 다이렉트' 패널이 있으면 이를 통해서 서로 찾고 연결할 수 있어야\n합니다. 모든 장치가 연결되면 일반 Wi-Fi 네트워크와 똑같이 '로컬 네트워크' 탭을\n이용해 이곳에서 파티를 결성할 수 있습니다.\n\n최선의 결과를 얻으려면 Wi-Fi 다이렉트 호스트가 ${APP_NAME} 파티 호스트이어야 합니다.",
|
||||||
"wifiDirectDescriptionTopText": "Wi-Fi 다이렉트는 Wi-Fi 네트워크 없이 직접 안드로이드 장치들을 연결하는 데\n사용될 수 있습니다. 이 기능은 안드로이드 버전 4.2 이상에서 가장 잘 작동합니다.\n\n이 기능을 사용하려면 Wi-Fi 설정을 열고 메뉴에서 'Wi-Fi 다이렉트'를 찾으세요.",
|
"wifiDirectDescriptionTopText": "Wi-Fi 다이렉트는 Wi-Fi 네트워크 없이 직접 안드로이드 장치들을 연결하는 데\n사용될 수 있습니다. 이 기능은 안드로이드 버전 4.2 이상에서 가장 잘 작동합니다.\n\n이 기능을 사용하려면 Wi-Fi 설정을 열고 메뉴에서 'Wi-Fi 다이렉트'를 찾으세요.",
|
||||||
|
|
@ -768,6 +793,7 @@
|
||||||
"youHaveShortText": "티켓 보유량: ${COUNT}",
|
"youHaveShortText": "티켓 보유량: ${COUNT}",
|
||||||
"youHaveText": "보유량: ${COUNT} 티켓"
|
"youHaveText": "보유량: ${COUNT} 티켓"
|
||||||
},
|
},
|
||||||
|
"googleMultiplayerDiscontinuedText": "죄송하지만, 구글의 멀티플레이어 서비스는 더이상 이용할수가 없어요.\n지금 대체제에 가능한 빨리 작업중이에요.\n그 때까지는, 다른 접속 방법을 사용해주세요.\n-Eric",
|
||||||
"googlePlayText": "Google Play",
|
"googlePlayText": "Google Play",
|
||||||
"graphicsSettingsWindow": {
|
"graphicsSettingsWindow": {
|
||||||
"alwaysText": "언제나",
|
"alwaysText": "언제나",
|
||||||
|
|
@ -882,7 +908,8 @@
|
||||||
"playerJoinedPartyText": "${NAME} 님이 파티에 가입했습니다!",
|
"playerJoinedPartyText": "${NAME} 님이 파티에 가입했습니다!",
|
||||||
"playerLeftPartyText": "${NAME} 님이 파티를 떠났습니다.",
|
"playerLeftPartyText": "${NAME} 님이 파티를 떠났습니다.",
|
||||||
"rejectingInviteAlreadyInPartyText": "초대를 거절하는 중 (이미 파티 중임).",
|
"rejectingInviteAlreadyInPartyText": "초대를 거절하는 중 (이미 파티 중임).",
|
||||||
"serverRestartingText": "다시 시작하는 중입니다. 곧 다시 합류해주세요...",
|
"serverRestartingText": "서버를 다시 시작하는 중입니다. 곧 다시 합류해주세요...",
|
||||||
|
"serverShuttingDownText": "서버가 중지중입니다...",
|
||||||
"signInErrorText": "로그인 오류.",
|
"signInErrorText": "로그인 오류.",
|
||||||
"signInNoConnectionText": "로그인할 수 없습니다. (인터넷에 연결되지 않았습니까?)",
|
"signInNoConnectionText": "로그인할 수 없습니다. (인터넷에 연결되지 않았습니까?)",
|
||||||
"telnetAccessDeniedText": "오류: 사용자가 텔넷 액세스를 부여하지 않았습니다.",
|
"telnetAccessDeniedText": "오류: 사용자가 텔넷 액세스를 부여하지 않았습니다.",
|
||||||
|
|
@ -899,13 +926,19 @@
|
||||||
"jumpText": "점프",
|
"jumpText": "점프",
|
||||||
"keepText": "유지",
|
"keepText": "유지",
|
||||||
"keepTheseSettingsText": "이 설정을 유지합니까?",
|
"keepTheseSettingsText": "이 설정을 유지합니까?",
|
||||||
|
"keyboardChangeInstructionsText": "스페이스를 두번 눌러 키보드를 변경하시오.",
|
||||||
|
"keyboardNoOthersAvailableText": "다른 사용가능한 키보드가 없습니다.",
|
||||||
|
"keyboardSwitchText": "\"${NAME}\" 키보드로 전환중.",
|
||||||
"kickOccurredText": "${NAME} 님이 추방당했습니다.",
|
"kickOccurredText": "${NAME} 님이 추방당했습니다.",
|
||||||
"kickQuestionText": "${NAME} 님을 추방하시겠습니까?",
|
"kickQuestionText": "${NAME} 님을 추방하시겠습니까?",
|
||||||
"kickText": "추방",
|
"kickText": "추방",
|
||||||
|
"kickVoteCantKickAdminsText": "관리자들을 추방할 수 없습니다.",
|
||||||
|
"kickVoteCantKickSelfText": "스스로 킥 할수 없습니다.",
|
||||||
"kickVoteFailedNotEnoughVotersText": "투표 인원이 모자랍니다.",
|
"kickVoteFailedNotEnoughVotersText": "투표 인원이 모자랍니다.",
|
||||||
"kickVoteFailedText": "추방 투표를 실패했습니다.",
|
"kickVoteFailedText": "추방 투표를 실패했습니다.",
|
||||||
"kickVoteStartedText": "${NAME} 님에 대한 추방 투표가 시작됐습니다.",
|
"kickVoteStartedText": "${NAME} 님에 대한 추방 투표가 시작됐습니다.",
|
||||||
"kickVoteText": "추방 투표",
|
"kickVoteText": "추방 투표",
|
||||||
|
"kickVotingDisabledText": "추방 투표가 비활성 되있습니다.",
|
||||||
"kickWithChatText": "채팅 창에 ${YES} (을)를 치셔서 찬성 또는 ${NO} (을)를 치셔서 반대하십시오.",
|
"kickWithChatText": "채팅 창에 ${YES} (을)를 치셔서 찬성 또는 ${NO} (을)를 치셔서 반대하십시오.",
|
||||||
"killsTallyText": "${COUNT}번 처치",
|
"killsTallyText": "${COUNT}번 처치",
|
||||||
"killsText": "처치",
|
"killsText": "처치",
|
||||||
|
|
@ -975,6 +1008,9 @@
|
||||||
"maxConnectionsText": "최대 연결",
|
"maxConnectionsText": "최대 연결",
|
||||||
"maxPartySizeText": "최대 인원",
|
"maxPartySizeText": "최대 인원",
|
||||||
"maxPlayersText": "최대 플레이어",
|
"maxPlayersText": "최대 플레이어",
|
||||||
|
"modeArcadeText": "아케이드 모드",
|
||||||
|
"modeClassicText": "클래식 모드",
|
||||||
|
"modeDemoText": "데모 모드",
|
||||||
"mostValuablePlayerText": "가장 뛰어난 플레이어",
|
"mostValuablePlayerText": "가장 뛰어난 플레이어",
|
||||||
"mostViolatedPlayerText": "가장 비참한 플레이어",
|
"mostViolatedPlayerText": "가장 비참한 플레이어",
|
||||||
"mostViolentPlayerText": "가장 난폭한 플레이어",
|
"mostViolentPlayerText": "가장 난폭한 플레이어",
|
||||||
|
|
@ -1003,6 +1039,7 @@
|
||||||
"noGameCircleText": "오류: GameCircle에 로그인되지 않았습니다",
|
"noGameCircleText": "오류: GameCircle에 로그인되지 않았습니다",
|
||||||
"noScoresYetText": "아직 점수 없음.",
|
"noScoresYetText": "아직 점수 없음.",
|
||||||
"noThanksText": "아니요",
|
"noThanksText": "아니요",
|
||||||
|
"noTournamentsInTestBuildText": "경고: 이 테스트 빌드의 토너먼트 점수는 기록되지 않습니다.",
|
||||||
"noValidMapsErrorText": "이 게임 유형에 유효한 지도를 찾지 못했습니다.",
|
"noValidMapsErrorText": "이 게임 유형에 유효한 지도를 찾지 못했습니다.",
|
||||||
"notEnoughPlayersRemainingText": "남은 플레이어가 충분하지 않습니다. 게임을 종료한 후 새로 시작하세요.",
|
"notEnoughPlayersRemainingText": "남은 플레이어가 충분하지 않습니다. 게임을 종료한 후 새로 시작하세요.",
|
||||||
"notEnoughPlayersText": "이 게임을 시작하려면 ${COUNT}명 이상의 플레이어가 필요합니다!",
|
"notEnoughPlayersText": "이 게임을 시작하려면 ${COUNT}명 이상의 플레이어가 필요합니다!",
|
||||||
|
|
@ -1015,6 +1052,7 @@
|
||||||
"offText": "끔",
|
"offText": "끔",
|
||||||
"okText": "확인",
|
"okText": "확인",
|
||||||
"onText": "켬",
|
"onText": "켬",
|
||||||
|
"oneMomentText": "잠시만요...",
|
||||||
"onslaughtRespawnText": "${PLAYER} 님은 ${WAVE} 웨이브에서 부활합니다",
|
"onslaughtRespawnText": "${PLAYER} 님은 ${WAVE} 웨이브에서 부활합니다",
|
||||||
"orText": "${A} 또는 ${B}",
|
"orText": "${A} 또는 ${B}",
|
||||||
"otherText": "기타...",
|
"otherText": "기타...",
|
||||||
|
|
@ -1061,9 +1099,12 @@
|
||||||
"playerText": "플레이어",
|
"playerText": "플레이어",
|
||||||
"playlistNoValidGamesErrorText": "이 플레이 목록에 포함된 잠금 해제된 유효한 게임이 없습니다.",
|
"playlistNoValidGamesErrorText": "이 플레이 목록에 포함된 잠금 해제된 유효한 게임이 없습니다.",
|
||||||
"playlistNotFoundText": "플레이 목록이 없음",
|
"playlistNotFoundText": "플레이 목록이 없음",
|
||||||
|
"playlistText": "플레이리스트",
|
||||||
"playlistsText": "플레이 목록",
|
"playlistsText": "플레이 목록",
|
||||||
"pleaseRateText": "${APP_NAME} 앱이 마음에 드시면 잠시 시간을 내어\n평가를 하거나 리뷰를 남겨주세요. 저희가 유용한\n피드백을 얻을 수 있고 향후 개발에 도움이 됩니다.\n\n감사합니다!\n-eric",
|
"pleaseRateText": "${APP_NAME} 앱이 마음에 드시면 잠시 시간을 내어\n평가를 하거나 리뷰를 남겨주세요. 저희가 유용한\n피드백을 얻을 수 있고 향후 개발에 도움이 됩니다.\n\n감사합니다!\n-eric",
|
||||||
"pleaseWaitText": "잠시만 기다려 주십시오...",
|
"pleaseWaitText": "잠시만 기다려 주십시오...",
|
||||||
|
"pluginsDetectedText": "새로운 플러그인 감지됨. 설정에서 활성/설정해 주십시오.",
|
||||||
|
"pluginsText": "플러그인",
|
||||||
"practiceText": "연습",
|
"practiceText": "연습",
|
||||||
"pressAnyButtonPlayAgainText": "다시 플레이하려면 아무 버튼이나 누르세요...",
|
"pressAnyButtonPlayAgainText": "다시 플레이하려면 아무 버튼이나 누르세요...",
|
||||||
"pressAnyButtonText": "계속하려면 아무 버튼이나 누르세요...",
|
"pressAnyButtonText": "계속하려면 아무 버튼이나 누르세요...",
|
||||||
|
|
@ -1180,6 +1221,8 @@
|
||||||
"alwaysUseInternalKeyboardDescriptionText": "(간편하고 사용하기 쉬운 텍스트 편집용 온스크린 키보드)",
|
"alwaysUseInternalKeyboardDescriptionText": "(간편하고 사용하기 쉬운 텍스트 편집용 온스크린 키보드)",
|
||||||
"alwaysUseInternalKeyboardText": "언제나 내부 키보드를 사용함",
|
"alwaysUseInternalKeyboardText": "언제나 내부 키보드를 사용함",
|
||||||
"benchmarksText": "벤치마크 및 스트레스 테스트",
|
"benchmarksText": "벤치마크 및 스트레스 테스트",
|
||||||
|
"disableCameraGyroscopeMotionText": "시야 자이로스코프 동작 비활성 하기",
|
||||||
|
"disableCameraShakeText": "화면 진동 비활성하기",
|
||||||
"disableThisNotice": "(고급설정에서 이 알림을 중지 할 수 있습니다)",
|
"disableThisNotice": "(고급설정에서 이 알림을 중지 할 수 있습니다)",
|
||||||
"enablePackageModsDescriptionText": "(추가 모드 기능을 활성화하지만 네트워크 플레이를 비활성화합니다)",
|
"enablePackageModsDescriptionText": "(추가 모드 기능을 활성화하지만 네트워크 플레이를 비활성화합니다)",
|
||||||
"enablePackageModsText": "로컬 패키지 모드 활성화",
|
"enablePackageModsText": "로컬 패키지 모드 활성화",
|
||||||
|
|
@ -1444,7 +1487,8 @@
|
||||||
"languages": {
|
"languages": {
|
||||||
"Arabic": "아랍어",
|
"Arabic": "아랍어",
|
||||||
"Belarussian": "벨로루시어",
|
"Belarussian": "벨로루시어",
|
||||||
"Chinese": "중국어",
|
"Chinese": "중국어 간체",
|
||||||
|
"ChineseTraditional": "중국어 번체",
|
||||||
"Croatian": "크로아티아어",
|
"Croatian": "크로아티아어",
|
||||||
"Czech": "체코어",
|
"Czech": "체코어",
|
||||||
"Danish": "덴마크어",
|
"Danish": "덴마크어",
|
||||||
|
|
@ -1468,10 +1512,13 @@
|
||||||
"Romanian": "루마니아어",
|
"Romanian": "루마니아어",
|
||||||
"Russian": "러시아어",
|
"Russian": "러시아어",
|
||||||
"Serbian": "세르비아어",
|
"Serbian": "세르비아어",
|
||||||
|
"Slovak": "슬로바키아어",
|
||||||
"Spanish": "스페인어",
|
"Spanish": "스페인어",
|
||||||
"Swedish": "스웨덴어",
|
"Swedish": "스웨덴어",
|
||||||
"Turkish": "터키어",
|
"Turkish": "터키어",
|
||||||
"Ukrainian": "우크라이나어"
|
"Ukrainian": "우크라이나어",
|
||||||
|
"Venetian": "베네토어",
|
||||||
|
"Vietnamese": "베트남어"
|
||||||
},
|
},
|
||||||
"leagueNames": {
|
"leagueNames": {
|
||||||
"Bronze": "브론즈",
|
"Bronze": "브론즈",
|
||||||
|
|
@ -1535,20 +1582,31 @@
|
||||||
"Invalid purchase.": "잘못된 구매.",
|
"Invalid purchase.": "잘못된 구매.",
|
||||||
"Invalid tournament entry; score will be ignored.": "잘못된 토너먼트 참가. 점수는 무시됩니다.",
|
"Invalid tournament entry; score will be ignored.": "잘못된 토너먼트 참가. 점수는 무시됩니다.",
|
||||||
"Item unlocked!": "아이템 잠금해제!",
|
"Item unlocked!": "아이템 잠금해제!",
|
||||||
|
"LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "연동 거부됨. ${ACCOUNT} 에 모두 지워질 \n매우 중요한 데이터가 있습니다.\n원한다면 반대 순서로 연동이 가능합니다\n(이 계정의 데이터가 지워지는 대신에)",
|
||||||
|
"Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "${ACCOUNT} 을 이 계정에 연동하시겠습니까?\n${ACCOUNT} 계정에 있는 모든 데이터가 삭제됩니다.\n이 동작은 번복할 수 없습니다. 확실합니까?",
|
||||||
"Max number of playlists reached.": "최대 플레이 목록 수에 도달했습니다.",
|
"Max number of playlists reached.": "최대 플레이 목록 수에 도달했습니다.",
|
||||||
"Max number of profiles reached.": "최대 프로필 수에 도달했습니다.",
|
"Max number of profiles reached.": "최대 프로필 수에 도달했습니다.",
|
||||||
"Maximum friend code rewards reached.": "최대의 친구 코드 보상에 도달했습니다.",
|
"Maximum friend code rewards reached.": "최대의 친구 코드 보상에 도달했습니다.",
|
||||||
|
"Message is too long.": "메시지가 너무 깁니다.",
|
||||||
"Profile \"${NAME}\" upgraded successfully.": "프로필 \"${NAME}\" 업그레이드 성공.",
|
"Profile \"${NAME}\" upgraded successfully.": "프로필 \"${NAME}\" 업그레이드 성공.",
|
||||||
"Profile could not be upgraded.": "프로필을 업그레이드하지 못했습니다.",
|
"Profile could not be upgraded.": "프로필을 업그레이드하지 못했습니다.",
|
||||||
"Purchase successful!": "구매 성공!",
|
"Purchase successful!": "구매 성공!",
|
||||||
"Received ${COUNT} tickets for signing in.\nCome back tomorrow to receive ${TOMORROW_COUNT}.": "로그인 선물로 티켓 ${COUNT}장을 받았습니다.\n내일 ${TOMORROW_COUNT}장을 받으세요.",
|
"Received ${COUNT} tickets for signing in.\nCome back tomorrow to receive ${TOMORROW_COUNT}.": "로그인 선물로 티켓 ${COUNT}장을 받았습니다.\n내일 ${TOMORROW_COUNT}장을 받으세요.",
|
||||||
|
"Server functionality is no longer supported in this version of the game;\nPlease update to a newer version.": "서버 기능이 이 버전의 게임에는 더이상 지원되지 않습니다;\n새 버전으로 업데이트 하시오.",
|
||||||
"Sorry, there are no uses remaining on this code.": "죄송합니다만 이 코드에 남은 사용 횟수가 없습니다.",
|
"Sorry, there are no uses remaining on this code.": "죄송합니다만 이 코드에 남은 사용 횟수가 없습니다.",
|
||||||
"Sorry, this code has already been used.": "죄송합니다만 이 코드는 이미 사용되었습니다.",
|
"Sorry, this code has already been used.": "죄송합니다만 이 코드는 이미 사용되었습니다.",
|
||||||
"Sorry, this code has expired.": "죄송합니다만 이 코드는 만료되었습니다.",
|
"Sorry, this code has expired.": "죄송합니다만 이 코드는 만료되었습니다.",
|
||||||
"Sorry, this code only works for new accounts.": "죄송합니다만 이 코드는 새 계정에만 유효합니다.",
|
"Sorry, this code only works for new accounts.": "죄송합니다만 이 코드는 새 계정에만 유효합니다.",
|
||||||
|
"Temporarily unavailable; please try again later.": "일시적으로 사용불가; 나중에 다시 시도하세요.",
|
||||||
"The tournament ended before you finished.": "귀하가 완료하기 전에 토너먼트가 종료되었습니다.",
|
"The tournament ended before you finished.": "귀하가 완료하기 전에 토너먼트가 종료되었습니다.",
|
||||||
|
"This account cannot be unlinked for ${NUM} days.": "이 계정은 ${NUM} 일 동안 연동 해제가 불가능합니다.",
|
||||||
"This code cannot be used on the account that created it.": "이 코드는 생성된 계정에 사용할 수 없습니다.",
|
"This code cannot be used on the account that created it.": "이 코드는 생성된 계정에 사용할 수 없습니다.",
|
||||||
|
"This is currently unavailable; please try again later.": "이건 현제 이용할수 없습니다; 나중에 다시 시도하시오.",
|
||||||
"This requires version ${VERSION} or newer.": "${VERSION} 버전 이상이 필요합니다.",
|
"This requires version ${VERSION} or newer.": "${VERSION} 버전 이상이 필요합니다.",
|
||||||
|
"Tournaments disabled due to rooted device.": "기기가 루팅되있어 토너먼트 기능이 비활성화되었습니다.",
|
||||||
|
"Tournaments require ${VERSION} or newer": "토너먼트는 ${VERSION} 또는 그 보다 새로운 버전이 필요합니다.",
|
||||||
|
"Unlink ${ACCOUNT} from this account?\nAll data on ${ACCOUNT} will be reset.\n(except for achievements in some cases)": "이 계정에서 ${ACCOUNT} 의 연동을 해제하시겠습니까?\n${ACCOUNT} 에 있는 모든 데이터가 초기화됩니다.\n(일부 상황에서 도전과제 빼고는)",
|
||||||
|
"WARNING: complaints of hacking have been issued against your account.\nAccounts found to be hacking will be banned. Please play fair.": "경고: 당신 계정에 해킹 관련 경고가 전해졌습니다.\n해킹 중인 걸로 밝혀진 계정은 즉시 차단됩니다. 제발 게임만은 공정하게 합시다.",
|
||||||
"Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "귀하의 기기를 이 계정에 연동하시겠습니까?\n\n귀하의 기기 계정: ${ACCOUNT1}\n이 계정: ${ACCOUNT2}\n\n이로써 기존 진행 상황을 유지할 수 있습니다.\n경고: 이 작업은 취소할 수 없습니다!",
|
"Would you like to link your device account to this one?\n\nYour device account is ${ACCOUNT1}\nThis account is ${ACCOUNT2}\n\nThis will allow you to keep your existing progress.\nWarning: this cannot be undone!\n": "귀하의 기기를 이 계정에 연동하시겠습니까?\n\n귀하의 기기 계정: ${ACCOUNT1}\n이 계정: ${ACCOUNT2}\n\n이로써 기존 진행 상황을 유지할 수 있습니다.\n경고: 이 작업은 취소할 수 없습니다!",
|
||||||
"You already own this!": "이미 소유 중입니다!",
|
"You already own this!": "이미 소유 중입니다!",
|
||||||
"You can join in ${COUNT} seconds.": "${COUNT} 초 후에 참가할 수 있습니다.",
|
"You can join in ${COUNT} seconds.": "${COUNT} 초 후에 참가할 수 있습니다.",
|
||||||
|
|
@ -1561,6 +1619,7 @@
|
||||||
"You must update to the newest version of the game to do this.": "이 작업을 하려면 새로운 게임 버전으로 업데이트해야 합니다.",
|
"You must update to the newest version of the game to do this.": "이 작업을 하려면 새로운 게임 버전으로 업데이트해야 합니다.",
|
||||||
"You must wait a few seconds before entering a new code.": "새 코드를 입력하기 전에 수초 간 기다려야 합니다.",
|
"You must wait a few seconds before entering a new code.": "새 코드를 입력하기 전에 수초 간 기다려야 합니다.",
|
||||||
"You ranked #${RANK} in the last tournament. Thanks for playing!": "마지막 토너먼트에서 #${RANK}위에 랭크되었습니다. 플레이해주셔서 감사합니다!",
|
"You ranked #${RANK} in the last tournament. Thanks for playing!": "마지막 토너먼트에서 #${RANK}위에 랭크되었습니다. 플레이해주셔서 감사합니다!",
|
||||||
|
"Your account was rejected. Are you signed in?": "계정이 거부되었습니다. 로그인 되어있으시나요?",
|
||||||
"Your copy of the game has been modified.\nPlease revert any changes and try again.": "게임 사본이 수정되었습니다.\n변경 사항을 되돌린 후 다시 시도해주십시오.",
|
"Your copy of the game has been modified.\nPlease revert any changes and try again.": "게임 사본이 수정되었습니다.\n변경 사항을 되돌린 후 다시 시도해주십시오.",
|
||||||
"Your friend code was used by ${ACCOUNT}": "${ACCOUNT} 님이 친구 코드를 사용했습니다"
|
"Your friend code was used by ${ACCOUNT}": "${ACCOUNT} 님이 친구 코드를 사용했습니다"
|
||||||
},
|
},
|
||||||
|
|
@ -1607,7 +1666,8 @@
|
||||||
},
|
},
|
||||||
"statements": {
|
"statements": {
|
||||||
"${TEAM} is disqualified because ${PLAYER} left": "${PLAYER} 님이 이탈하여 ${TEAM} 팀이 실격됬습니다.",
|
"${TEAM} is disqualified because ${PLAYER} left": "${PLAYER} 님이 이탈하여 ${TEAM} 팀이 실격됬습니다.",
|
||||||
"Killing ${NAME} for skipping part of the track!": "트랙 일부를 건너뛴 ${NAME} 님을 처치하는 중!"
|
"Killing ${NAME} for skipping part of the track!": "트랙 일부를 건너뛴 ${NAME} 님을 처치하는 중!",
|
||||||
|
"Warning to ${NAME}: turbo / button-spamming knocks you out.": "${NAME}님에게 경고: 터보 / 버튼 과다 연타는 당신의 캐릭터를 쓰러트립니다."
|
||||||
},
|
},
|
||||||
"teamNames": {
|
"teamNames": {
|
||||||
"Bad Guys": "나쁜 녀석들",
|
"Bad Guys": "나쁜 녀석들",
|
||||||
|
|
@ -1721,7 +1781,7 @@
|
||||||
"upgradeToPlayText": "플레이하려면 상점에서 \"${PRO}\"를 잠금 해제하세요.",
|
"upgradeToPlayText": "플레이하려면 상점에서 \"${PRO}\"를 잠금 해제하세요.",
|
||||||
"useDefaultText": "기본값 사용",
|
"useDefaultText": "기본값 사용",
|
||||||
"usesExternalControllerText": "이 게임은 외부 컨트롤러를 입력용으로 사용합니다.",
|
"usesExternalControllerText": "이 게임은 외부 컨트롤러를 입력용으로 사용합니다.",
|
||||||
"usingItunesText": "사운트트랙에 iTunes 사용 중...",
|
"usingItunesText": "사운트트랙에 음악 앱 사용 중...",
|
||||||
"usingItunesTurnRepeatAndShuffleOnText": "iTunes에서 임의 재생이 켜져있고 반복은 모두로 되어 있는지 확인해주십시오.",
|
"usingItunesTurnRepeatAndShuffleOnText": "iTunes에서 임의 재생이 켜져있고 반복은 모두로 되어 있는지 확인해주십시오.",
|
||||||
"validatingTestBuildText": "테스트 빌드 확인 중...",
|
"validatingTestBuildText": "테스트 빌드 확인 중...",
|
||||||
"victoryText": "승리!",
|
"victoryText": "승리!",
|
||||||
|
|
|
||||||
66
dist/ba_data/data/languages/persian.json
vendored
66
dist/ba_data/data/languages/persian.json
vendored
|
|
@ -365,7 +365,7 @@
|
||||||
"configureControllersText": "تنظیم دسته ها",
|
"configureControllersText": "تنظیم دسته ها",
|
||||||
"configureKeyboard2Text": "تنظیمات کیبورد بازیکن دوم",
|
"configureKeyboard2Text": "تنظیمات کیبورد بازیکن دوم",
|
||||||
"configureKeyboardText": "تنظیمات کیبورد",
|
"configureKeyboardText": "تنظیمات کیبورد",
|
||||||
"configureMobileText": "گوشی مبایل به عنوان دسته بازی",
|
"configureMobileText": "گوشی همراه بهعنوان دستهٔ بازی",
|
||||||
"configureTouchText": "تنظیمات صفحه لمسی",
|
"configureTouchText": "تنظیمات صفحه لمسی",
|
||||||
"ps3Text": "PS3 دسته",
|
"ps3Text": "PS3 دسته",
|
||||||
"titleText": "دسته ها",
|
"titleText": "دسته ها",
|
||||||
|
|
@ -450,62 +450,62 @@
|
||||||
"explanationText": "برای استفاده کردن از یک گوشی هوشمند یا تبلت به عنوان دسته ی بی سیم\nرا بر روی آن نصب کنید. هر تعداد دلخواه گوشی ${REMOTE_APP_NAME} برنامه\nتوسط وای فای به صورت رایگان وصل شوند ${APP_NAME} به برنامه",
|
"explanationText": "برای استفاده کردن از یک گوشی هوشمند یا تبلت به عنوان دسته ی بی سیم\nرا بر روی آن نصب کنید. هر تعداد دلخواه گوشی ${REMOTE_APP_NAME} برنامه\nتوسط وای فای به صورت رایگان وصل شوند ${APP_NAME} به برنامه",
|
||||||
"forAndroidText": "برای اندروید",
|
"forAndroidText": "برای اندروید",
|
||||||
"forIOSText": "iOS برای",
|
"forIOSText": "iOS برای",
|
||||||
"getItForText": "بگیرید فروشگاه برنامه اپل را برای اپلیها از ${REMOTE_APP_NAME} برنامه\nیا برای اندروید از فروشگاه گوگل پلی و یا فروشگاه برنامه آمازون.",
|
"getItForText": "را برای آیاواس از فروشگاه برنامههای اپل ${REMOTE_APP_NAME} برنامهٔ\nیا برای اندروید از فروشگاه گوگل پلی و یا فروشگاه برنامهٔ آمازون دریافت کنید.",
|
||||||
"googlePlayText": "گوگل پلی",
|
"googlePlayText": "گوگل پلی",
|
||||||
"titleText": "استفاده از گوشی هوشمند به عنوان دسته"
|
"titleText": "استفاده از گوشی همراه بهعنوان دسته"
|
||||||
},
|
},
|
||||||
"continuePurchaseText": "ادامه میدهید؟ ${PRICE} با قیمت",
|
"continuePurchaseText": "ادامه میدهید؟ ${PRICE} با قیمت",
|
||||||
"continueText": "ادامه",
|
"continueText": "ادامه",
|
||||||
"controlsText": "دکمه ها",
|
"controlsText": "دکمهها",
|
||||||
"coopSelectWindow": {
|
"coopSelectWindow": {
|
||||||
"activenessAllTimeInfoText": "بر روی رده بندی کلی اِعمال نمی شود",
|
"activenessAllTimeInfoText": "بر روی ردهبندی کلی اِعمال نمیشود.",
|
||||||
"activenessInfoText": "این افزاینده امتیاز بیشتر میشود در روزهایی که\nبازی میکنید و در روزهایی که بازی نمیکنید",
|
"activenessInfoText": "این افزاینده در روزهایی که بازی میکنید افزایش مییابد\nو در روزهایی که بازی نمیکنید کاهش مییابد.",
|
||||||
"activityText": "فعالیت",
|
"activityText": "فعالیت",
|
||||||
"campaignText": "عملیات",
|
"campaignText": "عملیات",
|
||||||
"challengesInfoText": ".برای پیروزی در مینی بازی ها جایزه بگیرید\n\nجایزه ها و سختی مراحل افزایش می یابد هرگاه\nکه چالشی را انجام میدهید و کاهش می یابد\n.هرگاه چالشی تمام شود یا هدر رود",
|
"challengesInfoText": "برای کامل کردن مینیبازیها جایزه بگیرید.\n\nهرگاه چالشی را انجام میدهید، جایزهها و\nسختی مراحل افزایش مییابد و هرگاه چالشی\nباطل شود یا به هدر رود، کاهش مییابد.",
|
||||||
"challengesText": "چالش ها",
|
"challengesText": "چالشها",
|
||||||
"currentBestText": "بهترین امتیاز کنونی",
|
"currentBestText": "بهترین امتیاز کنونی",
|
||||||
"customText": "سفارشی",
|
"customText": "سفارشی",
|
||||||
"entryFeeText": "ورود",
|
"entryFeeText": "ورود",
|
||||||
"forfeitConfirmText": "هدر دادن این چالش ؟",
|
"forfeitConfirmText": "هدر دادن این چالش؟",
|
||||||
"forfeitNotAllowedYetText": "این چالش هنوز نمی تواند از بین برود.",
|
"forfeitNotAllowedYetText": "این چالش هنوز نمیتواند از بین برود.",
|
||||||
"forfeitText": "هدر دادن",
|
"forfeitText": "هدر دادن",
|
||||||
"multipliersText": "افزاینده ها",
|
"multipliersText": "افزایندهها",
|
||||||
"nextChallengeText": "چالش بعدی",
|
"nextChallengeText": "چالش بعدی",
|
||||||
"nextPlayText": "بازی بعدی",
|
"nextPlayText": "بازی بعدی",
|
||||||
"ofTotalTimeText": "${TOTAL} از",
|
"ofTotalTimeText": "${TOTAL} از",
|
||||||
"playNowText": "بازی همین حالا",
|
"playNowText": "حالا بازی کنید",
|
||||||
"pointsText": "امتیازات",
|
"pointsText": "امتیازات",
|
||||||
"powerRankingFinishedSeasonUnrankedText": "(فصل پایان یافته بدون رده بندی)",
|
"powerRankingFinishedSeasonUnrankedText": "(فصل بدون ردهبندی پایان یافته)",
|
||||||
"powerRankingNotInTopText": "(نفر برتر نیستید ${NUMBER} بین)",
|
"powerRankingNotInTopText": "(نفر برتر نیستید ${NUMBER} بین)",
|
||||||
"powerRankingPointsEqualsText": "=امتیاز ${NUMBER}",
|
"powerRankingPointsEqualsText": "= امتیاز ${NUMBER}",
|
||||||
"powerRankingPointsMultText": "(xامتیاز ${NUMBER})",
|
"powerRankingPointsMultText": "(x ${NUMBER} امتیاز)",
|
||||||
"powerRankingPointsText": "امتیاز ${NUMBER}",
|
"powerRankingPointsText": "امتیاز ${NUMBER}",
|
||||||
"powerRankingPointsToRankedText": "(امتیاز ${REMAINING} از ${CURRENT})",
|
"powerRankingPointsToRankedText": "(امتیاز ${REMAINING} از ${CURRENT})",
|
||||||
"powerRankingText": "رتبه بندی قدرت",
|
"powerRankingText": "رتبهبندی قدرت",
|
||||||
"prizesText": "جایزه ها",
|
"prizesText": "جایزهها",
|
||||||
"proMultInfoText": "ارتقا داده اند ${PRO} بازیکنانی که بازی را به\nافزاینده ی امتیاز دریافت میکنند ${PERCENT}%",
|
"proMultInfoText": "ارتقا دادهاند ${PRO} بازیکنانی که بازی را به\nافزایندهٔ امتیاز دریافت میکنند %${PERCENT}",
|
||||||
"seeMoreText": "...بیشتر",
|
"seeMoreText": "...بیشتر",
|
||||||
"skipWaitText": "عبور کردن از وقفه",
|
"skipWaitText": "توقف انتظار",
|
||||||
"timeRemainingText": "زمان باقی مانده",
|
"timeRemainingText": "زمان باقیمانده",
|
||||||
"toRankedText": "تا رتبه بندی شوید",
|
"toRankedText": "تا رتبهبندی شوید",
|
||||||
"totalText": "در مجموع",
|
"totalText": "در مجموع",
|
||||||
"tournamentInfoText": "بر سر امتیاز بیشتر با بازیکنان در\n.لیگ خود رقابت کنید\n\nهنگامی که زمان مسابقه تمام شود، جایزه به\nنفرات برتر با امتیازهای بالا داده میشود",
|
"tournamentInfoText": "بر سر امتیاز بیشتر با بازیکنان در\nلیگ خود رقابت کنید.\n\nهنگامی که زمان مسابقه تمام شود، جایزه به\nنفرات برتر با امتیازهای بالا داده میشود.",
|
||||||
"welcome1Text": "خوش آمدید. شما میتوانید ${LEAGUE} به لیگ\nبا گرفتن امتیاز، کامل کردن دستاوردها یا گرفتن جام\n.در مسابقات رتبه ی خود را بهبود بخشید",
|
"welcome1Text": "خوش آمدید. شما میتوانید ${LEAGUE} به لیگ\nبا گرفتن امتیاز، کامل کردن دستاوردها یا گرفتن جام\n.در مسابقات رتبهٔ خود را بهبود بخشید",
|
||||||
"welcome2Text": ".همچنین میتوانید از راه های مشابه بلیط جمع آوری کنید\nبا بلیط میتوانید بازیکن جدید، نقشه و مینی-بازی باز کنید\n...یا در مسابقه ها شرکت کنید و",
|
"welcome2Text": "همچنین میتوانید از راههای مشابه بلیت جمعآوری کنید.\nبلیتها میتوانند برای باز کردن بازیکنان جدید، نقشهها، مینیبازیها یا برای ورود در مسابقهها و موارد\nبیشتر مورد استفاده قرار گیرند.",
|
||||||
"yourPowerRankingText": "رتبه بندی قدرت شما:"
|
"yourPowerRankingText": "رتبهبندی قدرت شما:"
|
||||||
},
|
},
|
||||||
"copyOfText": "${NAME} کپی",
|
"copyOfText": "${NAME} کپی",
|
||||||
"createEditPlayerText": "<ایجاد/ویرایش بازیکن>",
|
"createEditPlayerText": "<ایجاد/ویرایش بازیکن>",
|
||||||
"createText": "ساختن",
|
"createText": "ساختن",
|
||||||
"creditsWindow": {
|
"creditsWindow": {
|
||||||
"additionalAudioArtIdeasText": "${NAME} صداهای افزوده، کارهای هنری و ایده های ابتدایی توسط",
|
"additionalAudioArtIdeasText": "${NAME} صداهای افزوده، کارهای هنری و ایدههای ابتدایی توسط",
|
||||||
"additionalMusicFromText": "${NAME} موسیقی های افزوده از",
|
"additionalMusicFromText": "${NAME} موسیقیهای افزوده از",
|
||||||
"allMyFamilyText": "همه ی دوستانم و اعضای خانواده که با بازی نسخه آزمایشی کمک کردند",
|
"allMyFamilyText": "همهٔ دوستان و خانوادهام که با بازی نسخهٔ آزمایشی کمک کردند",
|
||||||
"codingGraphicsAudioText": "${NAME} کد گذاری، گرافیک و صدا توسط",
|
"codingGraphicsAudioText": "${NAME} کدگذاری، گرافیک و صدا توسط",
|
||||||
"languageTranslationsText": "مترجمان زبان ها :",
|
"languageTranslationsText": "مترجمان زبانها:",
|
||||||
"legalText": "حقوقی:",
|
"legalText": "حقوقی:",
|
||||||
"publicDomainMusicViaText": "${NAME} موسیقیِ خاصه ی مردم از",
|
"publicDomainMusicViaText": "${NAME} موسیقی خاصهٔ مردم از",
|
||||||
"softwareBasedOnText": "میباشد ${NAME} این نرم افزار در بخش هایی الهام گرفته از",
|
"softwareBasedOnText": "میباشد ${NAME} این نرم افزار در بخش هایی الهام گرفته از",
|
||||||
"songCreditText": "اجرا شده و ${PERFORMER} توسط ${TITLE} آهنگ\n.می باشد ${COMPOSER}تنظیم شده و نوشته ی${ARRANGER}انتشار یافته، توسط${PUBLISHER}توسط\n${SOURCE} ادب و مهربانی",
|
"songCreditText": "اجرا شده و ${PERFORMER} توسط ${TITLE} آهنگ\n.می باشد ${COMPOSER}تنظیم شده و نوشته ی${ARRANGER}انتشار یافته، توسط${PUBLISHER}توسط\n${SOURCE} ادب و مهربانی",
|
||||||
"soundAndMusicText": "صدا & آهنگ:",
|
"soundAndMusicText": "صدا & آهنگ:",
|
||||||
|
|
@ -1152,7 +1152,7 @@
|
||||||
"cant_resolve_host": "میزبان را نمیتوان یافت.",
|
"cant_resolve_host": "میزبان را نمیتوان یافت.",
|
||||||
"capturing": "گرفتن…",
|
"capturing": "گرفتن…",
|
||||||
"connected": ".متصل شد",
|
"connected": ".متصل شد",
|
||||||
"description": "استفاده کنید از تبلت یا گوشی مبایل برای کنترول کردن بازی بمب اسکواد\nتا هشت نفر میتونن متصل بشن و بصورت چند نفر به بازی بپردازند وکنترول کنند بازی رو در یک تبلت یا تلویزیون",
|
"description": "از گوشی یا تبلتتان بهعنوان دستهٔ بازی برای بمباسکواد استفاده کنید.\nتا ۸ دستگاه میتوانند بهصورت همزمان برای جنون حماسهٔ محلی چندنفره روی یک تیوی یا تبلت متصل شوند.",
|
||||||
"disconnected": "قطع اتصال از سرور",
|
"disconnected": "قطع اتصال از سرور",
|
||||||
"dpad_fixed": "ثابت",
|
"dpad_fixed": "ثابت",
|
||||||
"dpad_floating": "شناور",
|
"dpad_floating": "شناور",
|
||||||
|
|
|
||||||
2
dist/ba_data/data/languages/portuguese.json
vendored
2
dist/ba_data/data/languages/portuguese.json
vendored
|
|
@ -1702,6 +1702,7 @@
|
||||||
"Max number of profiles reached.": "Número máximo de perfis alcançado.",
|
"Max number of profiles reached.": "Número máximo de perfis alcançado.",
|
||||||
"Maximum friend code rewards reached.": "Máximo de recompensas de códigos de amigos atingido.",
|
"Maximum friend code rewards reached.": "Máximo de recompensas de códigos de amigos atingido.",
|
||||||
"Message is too long.": "A mensagem é muito longa.",
|
"Message is too long.": "A mensagem é muito longa.",
|
||||||
|
"No servers are available. Please try again soon.": "Nenhum servidor está disponível. Por favor, tente novamente mais tarde.",
|
||||||
"Profile \"${NAME}\" upgraded successfully.": "Perfil \"${NAME}\" atualizado com sucesso.",
|
"Profile \"${NAME}\" upgraded successfully.": "Perfil \"${NAME}\" atualizado com sucesso.",
|
||||||
"Profile could not be upgraded.": "Perfil não pôde ser criado.",
|
"Profile could not be upgraded.": "Perfil não pôde ser criado.",
|
||||||
"Purchase successful!": "Compra feita com êxito!",
|
"Purchase successful!": "Compra feita com êxito!",
|
||||||
|
|
@ -1711,6 +1712,7 @@
|
||||||
"Sorry, this code has already been used.": "Desculpe, este código já foi usado.",
|
"Sorry, this code has already been used.": "Desculpe, este código já foi usado.",
|
||||||
"Sorry, this code has expired.": "Desculpe, este código já expirou.",
|
"Sorry, this code has expired.": "Desculpe, este código já expirou.",
|
||||||
"Sorry, this code only works for new accounts.": "Desculpe, este código só funciona para novas contas.",
|
"Sorry, this code only works for new accounts.": "Desculpe, este código só funciona para novas contas.",
|
||||||
|
"Still searching for nearby servers; please try again soon.": "Ainda à procura por servidores próximos; tente novamente mais tarde.",
|
||||||
"Temporarily unavailable; please try again later.": "Não disponível; por favor, tente novamente mais tarde.",
|
"Temporarily unavailable; please try again later.": "Não disponível; por favor, tente novamente mais tarde.",
|
||||||
"The tournament ended before you finished.": "O torneio acabou antes de você finalizar.",
|
"The tournament ended before you finished.": "O torneio acabou antes de você finalizar.",
|
||||||
"This account cannot be unlinked for ${NUM} days.": "Esta conta não pode ser desvinculada por ${NUM} dias.",
|
"This account cannot be unlinked for ${NUM} days.": "Esta conta não pode ser desvinculada por ${NUM} dias.",
|
||||||
|
|
|
||||||
47
dist/ba_data/data/languages/romanian.json
vendored
47
dist/ba_data/data/languages/romanian.json
vendored
|
|
@ -12,6 +12,7 @@
|
||||||
"linkAccountsEnterCodeText": "Introdu Codul",
|
"linkAccountsEnterCodeText": "Introdu Codul",
|
||||||
"linkAccountsGenerateCodeText": "Generează Codul",
|
"linkAccountsGenerateCodeText": "Generează Codul",
|
||||||
"linkAccountsInfoText": "(împărtăşeşte progresul între diferite platforme)",
|
"linkAccountsInfoText": "(împărtăşeşte progresul între diferite platforme)",
|
||||||
|
"linkAccountsInstructionsNewText": "Pentru a conecta două conturi, generați un cod pe primul\nși introduceți acel cod pe al doilea. Date din\nal doilea cont va fi apoi partajat între amândoi.\n(Datele din primul cont se vor pierde)\n\nPuteți conecta până la ${COUNT} conturi.\n\nIMPORTANT: conectați numai conturile pe care le dețineți;\nDacă vă conectați la conturile prietenilor, nu veți face acest lucru\nsă poți juca online în același timp.",
|
||||||
"linkAccountsInstructionsText": "Pentru a conecta 2 conturi, generează un cod pe\nunul din ele şi introdu acelmcod pe celălalt.\nProgresul şi inventarul tău vor fi combinate.\nPoți conecta până la ${COUNT} conturi.\n\nAi grijă; acest lucru nu poate fi şters!",
|
"linkAccountsInstructionsText": "Pentru a conecta 2 conturi, generează un cod pe\nunul din ele şi introdu acelmcod pe celălalt.\nProgresul şi inventarul tău vor fi combinate.\nPoți conecta până la ${COUNT} conturi.\n\nAi grijă; acest lucru nu poate fi şters!",
|
||||||
"linkAccountsText": "Conectează Conturi",
|
"linkAccountsText": "Conectează Conturi",
|
||||||
"linkedAccountsText": "Conturi conectate:",
|
"linkedAccountsText": "Conturi conectate:",
|
||||||
|
|
@ -39,6 +40,7 @@
|
||||||
"titleText": "Cont",
|
"titleText": "Cont",
|
||||||
"unlinkAccountsInstructionsText": "Selecteaza un cont pentru a te deconecta",
|
"unlinkAccountsInstructionsText": "Selecteaza un cont pentru a te deconecta",
|
||||||
"unlinkAccountsText": "Conturi deconectate",
|
"unlinkAccountsText": "Conturi deconectate",
|
||||||
|
"viaAccount": "(prin contul ${NAME})",
|
||||||
"youAreSignedInAsText": "Ești conectat ca și:"
|
"youAreSignedInAsText": "Ești conectat ca și:"
|
||||||
},
|
},
|
||||||
"achievementChallengesText": "Provocări pentru Realizări",
|
"achievementChallengesText": "Provocări pentru Realizări",
|
||||||
|
|
@ -330,6 +332,7 @@
|
||||||
"titleText": "Adaugă joc"
|
"titleText": "Adaugă joc"
|
||||||
},
|
},
|
||||||
"allowText": "Permite",
|
"allowText": "Permite",
|
||||||
|
"alreadySignedInText": "Contul dvs. este conectat de pe un alt dispozitiv;\nvă rugăm să schimbați conturile sau să închideți jocul pe\nalte dispozitive și încercați din nou.",
|
||||||
"apiVersionErrorText": "Nu se poate deschide moduluL ${NAME}; acela accesează versiunea api ${VERSION_USED}, pe când e nevoie de ${VERSION_REQUIRED}.",
|
"apiVersionErrorText": "Nu se poate deschide moduluL ${NAME}; acela accesează versiunea api ${VERSION_USED}, pe când e nevoie de ${VERSION_REQUIRED}.",
|
||||||
"audioSettingsWindow": {
|
"audioSettingsWindow": {
|
||||||
"headRelativeVRAudioInfoText": "(\"Auto\" activează asta doar când căștile sunt conectate)",
|
"headRelativeVRAudioInfoText": "(\"Auto\" activează asta doar când căștile sunt conectate)",
|
||||||
|
|
@ -419,7 +422,8 @@
|
||||||
"uiOnlyDescriptionText": "(blochează acest controller pentru a nu putea intra in joc)",
|
"uiOnlyDescriptionText": "(blochează acest controller pentru a nu putea intra in joc)",
|
||||||
"uiOnlyText": "Limiteaza la controluri",
|
"uiOnlyText": "Limiteaza la controluri",
|
||||||
"unassignedButtonsRunText": "Toate butoanele neatrebuite rulează",
|
"unassignedButtonsRunText": "Toate butoanele neatrebuite rulează",
|
||||||
"unsetText": "<șterge>"
|
"unsetText": "<șterge>",
|
||||||
|
"vrReorientButtonText": "Buton de reorientare VR"
|
||||||
},
|
},
|
||||||
"configKeyboardWindow": {
|
"configKeyboardWindow": {
|
||||||
"configuringText": "Se configurează ${DEVICE}",
|
"configuringText": "Se configurează ${DEVICE}",
|
||||||
|
|
@ -544,7 +548,9 @@
|
||||||
"difficultyHardText": "Greu",
|
"difficultyHardText": "Greu",
|
||||||
"difficultyHardUnlockOnlyText": "Acest nivel poate fi deblocat doar pe \"Greu\".\nCrezi că poți s-o faci?!?!",
|
"difficultyHardUnlockOnlyText": "Acest nivel poate fi deblocat doar pe \"Greu\".\nCrezi că poți s-o faci?!?!",
|
||||||
"directBrowserToURLText": "Direcționează un browser web la următorul URL:",
|
"directBrowserToURLText": "Direcționează un browser web la următorul URL:",
|
||||||
|
"disableRemoteAppConnectionsText": "Dezactivați conexiunile la distanță",
|
||||||
"disableXInputDescriptionText": "Permite mai mult de 4 controlere dar nu va merge asa de bine",
|
"disableXInputDescriptionText": "Permite mai mult de 4 controlere dar nu va merge asa de bine",
|
||||||
|
"disableXInputText": "Dezactivați XInput",
|
||||||
"doneText": "Gata",
|
"doneText": "Gata",
|
||||||
"drawText": "Egalitate",
|
"drawText": "Egalitate",
|
||||||
"duplicateText": "Multiplica",
|
"duplicateText": "Multiplica",
|
||||||
|
|
@ -597,7 +603,7 @@
|
||||||
"duplicateText": "Duplică\nSoundtrack",
|
"duplicateText": "Duplică\nSoundtrack",
|
||||||
"editSoundtrackText": "Editor de Soundtrack",
|
"editSoundtrackText": "Editor de Soundtrack",
|
||||||
"editText": "Editează\nSoundtrack",
|
"editText": "Editează\nSoundtrack",
|
||||||
"fetchingITunesText": "Se încarcă listele de redare de pe iTunes...",
|
"fetchingITunesText": "preluarea listelor de redare a aplicațiilor muzicale ...",
|
||||||
"musicVolumeZeroWarning": "Atenție: volumul muzicii este setat pe 0",
|
"musicVolumeZeroWarning": "Atenție: volumul muzicii este setat pe 0",
|
||||||
"nameText": "Nume",
|
"nameText": "Nume",
|
||||||
"newSoundtrackNameText": "Soundtrackul Meu ${COUNT}",
|
"newSoundtrackNameText": "Soundtrackul Meu ${COUNT}",
|
||||||
|
|
@ -608,7 +614,7 @@
|
||||||
"testText": "test",
|
"testText": "test",
|
||||||
"titleText": "Soundtrack-uri",
|
"titleText": "Soundtrack-uri",
|
||||||
"useDefaultGameMusicText": "Muzică Normală de Joc",
|
"useDefaultGameMusicText": "Muzică Normală de Joc",
|
||||||
"useITunesPlaylistText": "Listă de redare iTunes",
|
"useITunesPlaylistText": "Lista de redare a aplicației muzicale",
|
||||||
"useMusicFileText": "Fişier de Muzica (mp3, etc)",
|
"useMusicFileText": "Fişier de Muzica (mp3, etc)",
|
||||||
"useMusicFolderText": "Folder pentru Fişierele de Muzică"
|
"useMusicFolderText": "Folder pentru Fişierele de Muzică"
|
||||||
},
|
},
|
||||||
|
|
@ -632,6 +638,7 @@
|
||||||
"titleFolderText": "Selectează un folder",
|
"titleFolderText": "Selectează un folder",
|
||||||
"useThisFolderButtonText": "Folosește acest folder"
|
"useThisFolderButtonText": "Folosește acest folder"
|
||||||
},
|
},
|
||||||
|
"filterText": "Filtru",
|
||||||
"finalScoreText": "Scor final",
|
"finalScoreText": "Scor final",
|
||||||
"finalScoresText": "Scoruri Finale",
|
"finalScoresText": "Scoruri Finale",
|
||||||
"finalTimeText": "Timp Final",
|
"finalTimeText": "Timp Final",
|
||||||
|
|
@ -678,17 +685,25 @@
|
||||||
"bluetoothJoinText": "Intră într-un joc bluetooth",
|
"bluetoothJoinText": "Intră într-un joc bluetooth",
|
||||||
"bluetoothText": "Bluetooth",
|
"bluetoothText": "Bluetooth",
|
||||||
"checkingText": "se verifică...",
|
"checkingText": "se verifică...",
|
||||||
|
"copyCodeConfirmText": "Codul a fost copiat în clipboard.",
|
||||||
|
"copyCodeText": "Copiați codul",
|
||||||
|
"dedicatedServerInfoText": "Pentru cele mai bune rezultate, configurați un server dedicat. Consultați bombsquadgame.com/server pentru a afla cum.",
|
||||||
"disconnectClientsText": "Aceasta va deconecta ${COUNT} jucător(i) din\ngrupul tău curent. Ești sigur?",
|
"disconnectClientsText": "Aceasta va deconecta ${COUNT} jucător(i) din\ngrupul tău curent. Ești sigur?",
|
||||||
"earnTicketsForRecommendingAmountText": "Prietenii vor primii ${COUNT} tichete daca vor incerca jocul \n(iar tu vei primii ${YOU_COUNT} pentru fiecare care incearca)",
|
"earnTicketsForRecommendingAmountText": "Prietenii vor primii ${COUNT} tichete daca vor incerca jocul \n(iar tu vei primii ${YOU_COUNT} pentru fiecare care incearca)",
|
||||||
"earnTicketsForRecommendingText": "Împărtăşeşte jocul\npentru bilete gratuite...",
|
"earnTicketsForRecommendingText": "Împărtăşeşte jocul\npentru bilete gratuite...",
|
||||||
"emailItText": "Dă-l prin Email",
|
"emailItText": "Dă-l prin Email",
|
||||||
|
"favoritesSaveText": "Salvați ca favorit",
|
||||||
|
"favoritesText": "Favorite",
|
||||||
|
"freeCloudServerAvailableMinutesText": "Următorul server cloud gratuit disponibil în ${MINUTES} minute.",
|
||||||
|
"freeCloudServerAvailableNowText": "Server cloud gratuit disponibil!",
|
||||||
|
"freeCloudServerNotAvailableText": "Nu sunt disponibile servere cloud gratuite.",
|
||||||
"friendHasSentPromoCodeText": "${COUNT} Bilete ${APP_NAME} de la ${NAME}",
|
"friendHasSentPromoCodeText": "${COUNT} Bilete ${APP_NAME} de la ${NAME}",
|
||||||
"friendPromoCodeAwardText": "Vei primi ${COUNT} de bilete de fiecare dată când este folosit.",
|
"friendPromoCodeAwardText": "Vei primi ${COUNT} de bilete de fiecare dată când este folosit.",
|
||||||
"friendPromoCodeExpireText": "Codul v-a expira în ${EXPIRE_HOURS} ore şi merge doar pentru jucătorii noi.",
|
"friendPromoCodeExpireText": "Codul v-a expira în ${EXPIRE_HOURS} ore şi merge doar pentru jucătorii noi.",
|
||||||
"friendPromoCodeInstructionsText": "Pentru al folosi, deschide BombSquad şi mergi la \"Setări->Avansat->Introdu cod Promo\".\nVezi bombsquadgame.com pentru linkuri de download pentru toate platformele suportate.",
|
"friendPromoCodeInstructionsText": "Pentru a-l utiliza, deschideți ${APP_NAME} și accesați „Setări-> Avansat-> Introduceți codul”.\nConsultați bombsquadgame.com pentru linkuri de descărcare pentru toate platformele acceptate.",
|
||||||
"friendPromoCodeRedeemLongText": "Poate fi înscris pentru ${COUNT} de bilete gratuite de către un maxim de ${MAX_USES} de persoane.",
|
"friendPromoCodeRedeemLongText": "Poate fi înscris pentru ${COUNT} de bilete gratuite de către un maxim de ${MAX_USES} de persoane.",
|
||||||
"friendPromoCodeRedeemShortText": "Poate fi înscris pentru ${COUNT} de bilete în joc.",
|
"friendPromoCodeRedeemShortText": "Poate fi înscris pentru ${COUNT} de bilete în joc.",
|
||||||
"friendPromoCodeWhereToEnterText": "(în \"Setări->Avansat->Introdu cod Promo\")",
|
"friendPromoCodeWhereToEnterText": "(în „Setări-> Avansat-> Introduceți codul”)",
|
||||||
"getFriendInviteCodeText": "Cere un cod de invitare pentru prieteni",
|
"getFriendInviteCodeText": "Cere un cod de invitare pentru prieteni",
|
||||||
"googlePlayDescriptionText": "Invită jucători Google Play în grupul tău:",
|
"googlePlayDescriptionText": "Invită jucători Google Play în grupul tău:",
|
||||||
"googlePlayInviteText": "Invită",
|
"googlePlayInviteText": "Invită",
|
||||||
|
|
@ -696,15 +711,21 @@
|
||||||
"googlePlaySeeInvitesText": "Vezi invitații",
|
"googlePlaySeeInvitesText": "Vezi invitații",
|
||||||
"googlePlayText": "Google Play",
|
"googlePlayText": "Google Play",
|
||||||
"googlePlayVersionOnlyText": "(Numai pentru versiunea Android/Google Play)",
|
"googlePlayVersionOnlyText": "(Numai pentru versiunea Android/Google Play)",
|
||||||
|
"hostPublicPartyDescriptionText": "Găzduiește o petrecere publică",
|
||||||
|
"hostingUnavailableText": "Gazduirea nu este disponibilă",
|
||||||
"inDevelopmentWarningText": "Notă:\n\nJocul peste rețea este încă o opțiune în dezvoltare.\nDeocamdată se recomandă ca toți jucătorii să fie pe\naceiași rețea Wi-Fi.",
|
"inDevelopmentWarningText": "Notă:\n\nJocul peste rețea este încă o opțiune în dezvoltare.\nDeocamdată se recomandă ca toți jucătorii să fie pe\naceiași rețea Wi-Fi.",
|
||||||
"internetText": "Internet",
|
"internetText": "Internet",
|
||||||
"inviteAFriendText": "Prietenii nu au jocul? Invită-i să-l\nîncerce şi vor primii ${COUNT} de bilete gratis.",
|
"inviteAFriendText": "Prietenii nu au jocul? Invită-i să-l\nîncerce şi vor primii ${COUNT} de bilete gratis.",
|
||||||
"inviteFriendsText": "Invită Prieteni",
|
"inviteFriendsText": "Invită Prieteni",
|
||||||
"localNetworkDescriptionText": "Intră într-un grup de pe rețeaua ta:",
|
"joinPublicPartyDescriptionText": "Alăturați-vă unui partid public",
|
||||||
|
"localNetworkDescriptionText": "Alăturați-vă unei petreceri din apropiere (LAN, Bluetooth etc.)",
|
||||||
"localNetworkText": "Rețea locală",
|
"localNetworkText": "Rețea locală",
|
||||||
|
"makePartyPrivateText": "Faceți petrecerea mea privată",
|
||||||
|
"makePartyPublicText": "Faceți Partidul Meu Public",
|
||||||
"manualAddressText": "Adresă",
|
"manualAddressText": "Adresă",
|
||||||
"manualConnectText": "Conectare",
|
"manualConnectText": "Conectare",
|
||||||
"manualDescriptionText": "Intră într-un grup la adresa:",
|
"manualDescriptionText": "Intră într-un grup la adresa:",
|
||||||
|
"manualJoinSectionText": "Alăturați-vă după adresă",
|
||||||
"manualJoinableFromInternetText": "Se poate conecta la tine de pe internet?:",
|
"manualJoinableFromInternetText": "Se poate conecta la tine de pe internet?:",
|
||||||
"manualJoinableNoWithAsteriskText": "NU*",
|
"manualJoinableNoWithAsteriskText": "NU*",
|
||||||
"manualJoinableYesText": "DA",
|
"manualJoinableYesText": "DA",
|
||||||
|
|
@ -712,14 +733,28 @@
|
||||||
"manualText": "Manual",
|
"manualText": "Manual",
|
||||||
"manualYourAddressFromInternetText": "Adresa ta de pe internet:",
|
"manualYourAddressFromInternetText": "Adresa ta de pe internet:",
|
||||||
"manualYourLocalAddressText": "Adresa ta locală:",
|
"manualYourLocalAddressText": "Adresa ta locală:",
|
||||||
|
"nearbyText": "Din apropiere",
|
||||||
"noConnectionText": "<fără conexiune>",
|
"noConnectionText": "<fără conexiune>",
|
||||||
"otherVersionsText": "(alte versiuni)",
|
"otherVersionsText": "(alte versiuni)",
|
||||||
|
"partyCodeText": "Codul partidului",
|
||||||
"partyInviteAcceptText": "Acceptă",
|
"partyInviteAcceptText": "Acceptă",
|
||||||
"partyInviteDeclineText": "Refuză",
|
"partyInviteDeclineText": "Refuză",
|
||||||
"partyInviteGooglePlayExtraText": "(vezi tab-ul 'Google Play' din fereastra 'Adunare')",
|
"partyInviteGooglePlayExtraText": "(vezi tab-ul 'Google Play' din fereastra 'Adunare')",
|
||||||
"partyInviteIgnoreText": "Ignoră",
|
"partyInviteIgnoreText": "Ignoră",
|
||||||
"partyInviteText": "${NAME} te-a invitat\nsă intri în grupul lui/ei!",
|
"partyInviteText": "${NAME} te-a invitat\nsă intri în grupul lui/ei!",
|
||||||
"partyNameText": "Numele grupului",
|
"partyNameText": "Numele grupului",
|
||||||
|
"partyServerRunningText": "Serverul de partid se execută.",
|
||||||
|
"partySizeText": "Mărimea petrecerii",
|
||||||
|
"partyStatusCheckingText": "verificarea stării ...",
|
||||||
|
"partyStatusJoinableText": "petrecerea ta este acum accesibilă de pe internet",
|
||||||
|
"partyStatusNoConnectionText": "nu se poate conecta la server",
|
||||||
|
"partyStatusNotJoinableText": "petrecerea dvs. nu poate fi alăturată de pe internet",
|
||||||
|
"partyStatusNotPublicText": "petrecerea ta nu este publică",
|
||||||
|
"pingText": "latenta",
|
||||||
|
"portText": "Port",
|
||||||
|
"privatePartyCloudDescriptionText": "Petreceri private rulează pe servere cloud dedicate; nu este necesară configurarea routerului.",
|
||||||
|
"privatePartyHostText": "Găzduiește o petrecere privată",
|
||||||
|
"privatePartyJoinText": "Alăturați-vă unei petreceri private",
|
||||||
"requestingAPromoCodeText": "Se cere codul...",
|
"requestingAPromoCodeText": "Se cere codul...",
|
||||||
"sendDirectInvitesText": "Trimite Invitați Direct",
|
"sendDirectInvitesText": "Trimite Invitați Direct",
|
||||||
"shareThisCodeWithFriendsText": "Împărtăşeşte codul ăsta cu prietenii:",
|
"shareThisCodeWithFriendsText": "Împărtăşeşte codul ăsta cu prietenii:",
|
||||||
|
|
|
||||||
4
dist/ba_data/data/languages/russian.json
vendored
4
dist/ba_data/data/languages/russian.json
vendored
|
|
@ -1197,7 +1197,7 @@
|
||||||
"purchasingText": "Покупка...",
|
"purchasingText": "Покупка...",
|
||||||
"quitGameText": "Выйти из ${APP_NAME}?",
|
"quitGameText": "Выйти из ${APP_NAME}?",
|
||||||
"quittingIn5SecondsText": "Выход через 5 секунд...",
|
"quittingIn5SecondsText": "Выход через 5 секунд...",
|
||||||
"randomPlayerNamesText": "Дима, Кузя, Вован, Маха, Русский, Какуля, Бибер, Борька, Няшка, Толян",
|
"randomPlayerNamesText": "Дима, Кузя, Вован, Маха, Русский, Какуля, Бибер, Борька, Няшка, Толян, Ержан",
|
||||||
"randomText": "Случайный",
|
"randomText": "Случайный",
|
||||||
"rankText": "Ранг",
|
"rankText": "Ранг",
|
||||||
"ratingText": "Рейтинг",
|
"ratingText": "Рейтинг",
|
||||||
|
|
@ -1678,6 +1678,7 @@
|
||||||
"Max number of profiles reached.": "Достигнуто максимальное количество профилей.",
|
"Max number of profiles reached.": "Достигнуто максимальное количество профилей.",
|
||||||
"Maximum friend code rewards reached.": "Достигнут лимит кодов.",
|
"Maximum friend code rewards reached.": "Достигнут лимит кодов.",
|
||||||
"Message is too long.": "Сообщение слишком длинное.",
|
"Message is too long.": "Сообщение слишком длинное.",
|
||||||
|
"No servers are available. Please try again soon.": "Нет доступных серверов. Пожалуйста попробуйте позднее.",
|
||||||
"Profile \"${NAME}\" upgraded successfully.": "Профиль \"${NAME}\" обновлен успешно.",
|
"Profile \"${NAME}\" upgraded successfully.": "Профиль \"${NAME}\" обновлен успешно.",
|
||||||
"Profile could not be upgraded.": "Профиль не может быть обновлен.",
|
"Profile could not be upgraded.": "Профиль не может быть обновлен.",
|
||||||
"Purchase successful!": "Успешная транзакция!",
|
"Purchase successful!": "Успешная транзакция!",
|
||||||
|
|
@ -1687,6 +1688,7 @@
|
||||||
"Sorry, this code has already been used.": "Упс, этот код уже использован.",
|
"Sorry, this code has already been used.": "Упс, этот код уже использован.",
|
||||||
"Sorry, this code has expired.": "Упс, время действия кода истекло.",
|
"Sorry, this code has expired.": "Упс, время действия кода истекло.",
|
||||||
"Sorry, this code only works for new accounts.": "Упс, этот код работает только для новых аккаунтов.",
|
"Sorry, this code only works for new accounts.": "Упс, этот код работает только для новых аккаунтов.",
|
||||||
|
"Still searching for nearby servers; please try again soon.": "Ведётся поиск ближайших серверов; пожалуйста попробуйте позднее.",
|
||||||
"Temporarily unavailable; please try again later.": "Временно недоступно; Пожалуйста, повторите попытку позже.",
|
"Temporarily unavailable; please try again later.": "Временно недоступно; Пожалуйста, повторите попытку позже.",
|
||||||
"The tournament ended before you finished.": "Турнир закончился прежде, чем вы закончили.",
|
"The tournament ended before you finished.": "Турнир закончился прежде, чем вы закончили.",
|
||||||
"This account cannot be unlinked for ${NUM} days.": "Этот аккаунт невозможно отвязать в течение ${NUM} дней.",
|
"This account cannot be unlinked for ${NUM} days.": "Этот аккаунт невозможно отвязать в течение ${NUM} дней.",
|
||||||
|
|
|
||||||
117
dist/ba_data/data/languages/slovak.json
vendored
117
dist/ba_data/data/languages/slovak.json
vendored
|
|
@ -4,7 +4,7 @@
|
||||||
"accountProfileText": "Profil konta",
|
"accountProfileText": "Profil konta",
|
||||||
"accountsText": "Účty",
|
"accountsText": "Účty",
|
||||||
"achievementProgressText": "Achievementy: ${COUNT} z ${TOTAL}",
|
"achievementProgressText": "Achievementy: ${COUNT} z ${TOTAL}",
|
||||||
"campaignProgressText": "Postup v Campaign [Hard] : ${PROGRESS}",
|
"campaignProgressText": "Priebeh kampane [Hard] : ${PROGRESS}",
|
||||||
"changeOncePerSeason": "Toto môžete zmeniť len raz za sezónu.",
|
"changeOncePerSeason": "Toto môžete zmeniť len raz za sezónu.",
|
||||||
"changeOncePerSeasonError": "Musíte počkať do ďalšej sezóny aby ste mohli toto znova zmeniť (${NUM} days)",
|
"changeOncePerSeasonError": "Musíte počkať do ďalšej sezóny aby ste mohli toto znova zmeniť (${NUM} days)",
|
||||||
"customName": "Vlastný názov",
|
"customName": "Vlastný názov",
|
||||||
|
|
@ -73,7 +73,7 @@
|
||||||
"name": "Bez Škrabanca"
|
"name": "Bez Škrabanca"
|
||||||
},
|
},
|
||||||
"Free Loader": {
|
"Free Loader": {
|
||||||
"descriptionFull": "Začni hru Všetci-proti-Všetkým hru s 2+ hráčmi",
|
"descriptionFull": "Začni hru Všetci-proti-Všetkým s 2+ hráčmi",
|
||||||
"descriptionFullComplete": "Začatá hra Všetci-proti-Všetkým s 2+ hráčmi",
|
"descriptionFullComplete": "Začatá hra Všetci-proti-Všetkým s 2+ hráčmi",
|
||||||
"name": "Boj Začal"
|
"name": "Boj Začal"
|
||||||
},
|
},
|
||||||
|
|
@ -241,7 +241,7 @@
|
||||||
"descriptionComplete": "Nahraných 1000 bodov",
|
"descriptionComplete": "Nahraných 1000 bodov",
|
||||||
"descriptionFull": "Nahraj 1000 bodov na ${LEVEL}",
|
"descriptionFull": "Nahraj 1000 bodov na ${LEVEL}",
|
||||||
"descriptionFullComplete": "Nahraných 1000 bodov na ${LEVEL}",
|
"descriptionFullComplete": "Nahraných 1000 bodov na ${LEVEL}",
|
||||||
"name": "${LEVEL} Čarodej"
|
"name": "${LEVEL} Čarodejník"
|
||||||
},
|
},
|
||||||
"Sharing is Caring": {
|
"Sharing is Caring": {
|
||||||
"descriptionFull": "Zdieľaj hru s priateľom",
|
"descriptionFull": "Zdieľaj hru s priateľom",
|
||||||
|
|
@ -393,7 +393,7 @@
|
||||||
"clearText": "zmaž",
|
"clearText": "zmaž",
|
||||||
"dpadText": "dpad",
|
"dpadText": "dpad",
|
||||||
"extraStartButtonText": "Extra Štartovacie Tlačidlo",
|
"extraStartButtonText": "Extra Štartovacie Tlačidlo",
|
||||||
"ifNothingHappensTryAnalogText": "Ak sa nič nestane, skús prideliť k joystickom)",
|
"ifNothingHappensTryAnalogText": "Ak sa nič nestane, skúste priradiť analógový kľúč.",
|
||||||
"ifNothingHappensTryDpadText": "Ak sa nič nestane, skús prideľiť k d-padu)",
|
"ifNothingHappensTryDpadText": "Ak sa nič nestane, skús prideľiť k d-padu)",
|
||||||
"ignoreCompletelyDescriptionText": "(zamedz tento ovládač od ovplyvňovania hry alebo menu)",
|
"ignoreCompletelyDescriptionText": "(zamedz tento ovládač od ovplyvňovania hry alebo menu)",
|
||||||
"ignoreCompletelyText": "Kompletne Ignoruj",
|
"ignoreCompletelyText": "Kompletne Ignoruj",
|
||||||
|
|
@ -472,7 +472,7 @@
|
||||||
"forfeitConfirmText": "Vzdať sa tejto challenge?",
|
"forfeitConfirmText": "Vzdať sa tejto challenge?",
|
||||||
"forfeitNotAllowedYetText": "Tu sa ešte nemôžte vzdať.",
|
"forfeitNotAllowedYetText": "Tu sa ešte nemôžte vzdať.",
|
||||||
"forfeitText": "Vzdať sa",
|
"forfeitText": "Vzdať sa",
|
||||||
"multipliersText": "Multipliere",
|
"multipliersText": "Multiplikátory",
|
||||||
"nextChallengeText": "Ďalšia challenge",
|
"nextChallengeText": "Ďalšia challenge",
|
||||||
"nextPlayText": "Ďalšia Hra",
|
"nextPlayText": "Ďalšia Hra",
|
||||||
"ofTotalTimeText": "z ${TOTAL}",
|
"ofTotalTimeText": "z ${TOTAL}",
|
||||||
|
|
@ -624,12 +624,12 @@
|
||||||
"epicNameFilterText": "Epic ${NAME}",
|
"epicNameFilterText": "Epic ${NAME}",
|
||||||
"errorAccessDeniedText": "prístup odmietnutý",
|
"errorAccessDeniedText": "prístup odmietnutý",
|
||||||
"errorOutOfDiskSpaceText": "žiadne miesto na disku",
|
"errorOutOfDiskSpaceText": "žiadne miesto na disku",
|
||||||
"errorText": "Error",
|
"errorText": "Chyba",
|
||||||
"errorUnknownText": "neznámy error",
|
"errorUnknownText": "neznámy error",
|
||||||
"exitGameText": "Ukončiť ${APP_NAME}?",
|
"exitGameText": "Ukončiť ${APP_NAME}?",
|
||||||
"exportSuccessText": "\"${NAME}\" exportovaný.",
|
"exportSuccessText": "\"${NAME}\" exportovaný.",
|
||||||
"externalStorageText": "Externé Úložisko",
|
"externalStorageText": "Externé Úložisko",
|
||||||
"failText": "Fail",
|
"failText": "Zlyhanie",
|
||||||
"fatalErrorText": "Ups; niečo chýba alebo je niečo rozbité.\nProsím skús reinštalovať aplikáciu\nalebo kontaktuj ${EMAIL} pre pomoc.",
|
"fatalErrorText": "Ups; niečo chýba alebo je niečo rozbité.\nProsím skús reinštalovať aplikáciu\nalebo kontaktuj ${EMAIL} pre pomoc.",
|
||||||
"fileSelectorWindow": {
|
"fileSelectorWindow": {
|
||||||
"titleFileFolderText": "Vyber Súbor alebo Zložku",
|
"titleFileFolderText": "Vyber Súbor alebo Zložku",
|
||||||
|
|
@ -637,6 +637,7 @@
|
||||||
"titleFolderText": "Vybrať Zložku",
|
"titleFolderText": "Vybrať Zložku",
|
||||||
"useThisFolderButtonText": "Použiť Túto Zložku"
|
"useThisFolderButtonText": "Použiť Túto Zložku"
|
||||||
},
|
},
|
||||||
|
"filterText": "Filter",
|
||||||
"finalScoreText": "Finálne Skóre",
|
"finalScoreText": "Finálne Skóre",
|
||||||
"finalScoresText": "Finálne Skóre",
|
"finalScoresText": "Finálne Skóre",
|
||||||
"finalTimeText": "Finálny Čas",
|
"finalTimeText": "Finálny Čas",
|
||||||
|
|
@ -648,7 +649,7 @@
|
||||||
"flawlessWaveText": "Bezchybná vlna!",
|
"flawlessWaveText": "Bezchybná vlna!",
|
||||||
"fourKillText": "QUADKILL!!",
|
"fourKillText": "QUADKILL!!",
|
||||||
"friendScoresUnavailableText": "Skóre kamarátov nedostupné.",
|
"friendScoresUnavailableText": "Skóre kamarátov nedostupné.",
|
||||||
"gameCenterText": "GameCenter",
|
"gameCenterText": "Herné centrum",
|
||||||
"gameCircleText": "GameCircle",
|
"gameCircleText": "GameCircle",
|
||||||
"gameLeadersText": "Leadery Hry ${COUNT}",
|
"gameLeadersText": "Leadery Hry ${COUNT}",
|
||||||
"gameListWindow": {
|
"gameListWindow": {
|
||||||
|
|
@ -682,18 +683,25 @@
|
||||||
"bluetoothJoinText": "Pripojiť sa cez Bluetooth",
|
"bluetoothJoinText": "Pripojiť sa cez Bluetooth",
|
||||||
"bluetoothText": "Bluetooth",
|
"bluetoothText": "Bluetooth",
|
||||||
"checkingText": "kontrolujem...",
|
"checkingText": "kontrolujem...",
|
||||||
|
"copyCodeConfirmText": "Kód bol skopírovaný do schránky.",
|
||||||
|
"copyCodeText": "Kopírovať kód",
|
||||||
"dedicatedServerInfoText": "Pre najlepšie výsledky, nastav si dedikovaný server. Pozri bombsquadgame.com/server a nauč sa ako.",
|
"dedicatedServerInfoText": "Pre najlepšie výsledky, nastav si dedikovaný server. Pozri bombsquadgame.com/server a nauč sa ako.",
|
||||||
"disconnectClientsText": "Toto odpojí ${COUNT} hráča/hráčov v tvojej\npárty. Si si istý?",
|
"disconnectClientsText": "Toto odpojí ${COUNT} hráča/hráčov v tvojej\npárty. Si si istý?",
|
||||||
"earnTicketsForRecommendingAmountText": "Kamaráti dostanú ${COUNT} tiketov a si hru vyskúšajú (a\nza každého kto tak urobí dostaneš ${YOU_COUNT} tiketov)",
|
"earnTicketsForRecommendingAmountText": "Kamaráti dostanú ${COUNT} tiketov a si hru vyskúšajú (a\nza každého kto tak urobí dostaneš ${YOU_COUNT} tiketov)",
|
||||||
"earnTicketsForRecommendingText": "Zdieľaj hru pre\ntikety zadarmo...",
|
"earnTicketsForRecommendingText": "Zdieľaj hru pre\ntikety zadarmo...",
|
||||||
"emailItText": "Poslať Emailom",
|
"emailItText": "Poslať Emailom",
|
||||||
|
"favoritesSaveText": "Uložiť ako obľúbené",
|
||||||
|
"favoritesText": "Obľúbené",
|
||||||
|
"freeCloudServerAvailableMinutesText": "Ďalší bezplatný cloudový server bude k dispozícii o ${MINUTES} minút.",
|
||||||
|
"freeCloudServerAvailableNowText": "K dispozícii je bezplatný cloudový server!",
|
||||||
|
"freeCloudServerNotAvailableText": "Nie sú k dispozícii žiadne bezplatné cloudové servery.",
|
||||||
"friendHasSentPromoCodeText": "${COUNT} ${APP_NAME} tiketov od ${NAME}",
|
"friendHasSentPromoCodeText": "${COUNT} ${APP_NAME} tiketov od ${NAME}",
|
||||||
"friendPromoCodeAwardText": "Dostaneš ${COUNT} tiketov každý raz keď sa použie.",
|
"friendPromoCodeAwardText": "Dostaneš ${COUNT} tiketov každý raz keď sa použie.",
|
||||||
"friendPromoCodeExpireText": "Kód vyprší za ${EXPIRE_HOURS} hodín a funguje len pre nové účty.",
|
"friendPromoCodeExpireText": "Kód vyprší za ${EXPIRE_HOURS} hodín a funguje len pre nové účty.",
|
||||||
"friendPromoCodeInstructionsText": "Ak ho chceš použiť, otvor ${APP_NAME} a choď do \"Settings->Advanced->Enter Code\".\nPozri bombsquadgame.com pre download linky pre všetky podporované platformy.",
|
"friendPromoCodeInstructionsText": "Ak ho chceš použiť, otvor ${APP_NAME} a choď do \"Settings->Advanced->Enter Code\".\nPozri bombsquadgame.com pre download linky pre všetky podporované platformy.",
|
||||||
"friendPromoCodeRedeemLongText": "Môže byť uplatnený za ${COUNT} tiketov až pre ${MAX_USES} ľudí.",
|
"friendPromoCodeRedeemLongText": "Môže byť uplatnený za ${COUNT} tiketov až pre ${MAX_USES} ľudí.",
|
||||||
"friendPromoCodeRedeemShortText": "Môže byť uplatnený za ${COUNT} tiketov v hre.",
|
"friendPromoCodeRedeemShortText": "Môže byť uplatnený za ${COUNT} tiketov v hre.",
|
||||||
"friendPromoCodeWhereToEnterText": "(v \"Settings->Advanced->Enter Code\")",
|
"friendPromoCodeWhereToEnterText": "(v časti „Nastavenia-> Pokročilé-> Zadať kód“)",
|
||||||
"getFriendInviteCodeText": "Zohnať Pozvánku",
|
"getFriendInviteCodeText": "Zohnať Pozvánku",
|
||||||
"googlePlayDescriptionText": "Pozvi Google Play hráčov do párty:",
|
"googlePlayDescriptionText": "Pozvi Google Play hráčov do párty:",
|
||||||
"googlePlayInviteText": "Pozvať",
|
"googlePlayInviteText": "Pozvať",
|
||||||
|
|
@ -702,18 +710,20 @@
|
||||||
"googlePlayText": "Google Play",
|
"googlePlayText": "Google Play",
|
||||||
"googlePlayVersionOnlyText": "(Android / Google Play verzia)",
|
"googlePlayVersionOnlyText": "(Android / Google Play verzia)",
|
||||||
"hostPublicPartyDescriptionText": "Hostovať Verejnú Párty:",
|
"hostPublicPartyDescriptionText": "Hostovať Verejnú Párty:",
|
||||||
|
"hostingUnavailableText": "Hosting nie je k dispozícii",
|
||||||
"inDevelopmentWarningText": "Poznámka:\n\nHra cez internet je nová a stále vylepšujúca sa\nvlastnosť. Zatiaľ, je vysoko odporúčané aby\nvšetci hráči boli na tej istej Wi-Fi.",
|
"inDevelopmentWarningText": "Poznámka:\n\nHra cez internet je nová a stále vylepšujúca sa\nvlastnosť. Zatiaľ, je vysoko odporúčané aby\nvšetci hráči boli na tej istej Wi-Fi.",
|
||||||
"internetText": "Internet",
|
"internetText": "Internet",
|
||||||
"inviteAFriendText": "Priatelia nemajú hru? Pozvi ich nech si hru\nvyskúšajú a dostanú ${COUNT} tiketov.",
|
"inviteAFriendText": "Priatelia nemajú hru? Pozvi ich nech si hru\nvyskúšajú a dostanú ${COUNT} tiketov.",
|
||||||
"inviteFriendsText": "Pozvať Kamarátov",
|
"inviteFriendsText": "Pozvať Kamarátov",
|
||||||
"joinPublicPartyDescriptionText": "Pripojiť sa na Verejnú Párty:",
|
"joinPublicPartyDescriptionText": "Pripojiť sa na Verejnú Párty:",
|
||||||
"localNetworkDescriptionText": "Pripojiť sa na párty na tvojom internete:",
|
"localNetworkDescriptionText": "Pripojte sa k skupine nablízku (LAN, Bluetooth, atď.)",
|
||||||
"localNetworkText": "Lokálny Internet",
|
"localNetworkText": "Lokálny Internet",
|
||||||
"makePartyPrivateText": "Urobiť Moju Párty Verejnú",
|
"makePartyPrivateText": "Urobiť Moju Párty Verejnú",
|
||||||
"makePartyPublicText": "Urobiť Moju Párty Verejnú",
|
"makePartyPublicText": "Urobiť Moju Párty Verejnú",
|
||||||
"manualAddressText": "Adresa",
|
"manualAddressText": "Adresa",
|
||||||
"manualConnectText": "Pripojiť",
|
"manualConnectText": "Pripojiť",
|
||||||
"manualDescriptionText": "Pripojiť sa na párty cez adresu:",
|
"manualDescriptionText": "Pripojiť sa na párty cez adresu:",
|
||||||
|
"manualJoinSectionText": "Pripojiť sa podľa adresy",
|
||||||
"manualJoinableFromInternetText": "Si pripojiteľný z internetu?:",
|
"manualJoinableFromInternetText": "Si pripojiteľný z internetu?:",
|
||||||
"manualJoinableNoWithAsteriskText": "NIE*",
|
"manualJoinableNoWithAsteriskText": "NIE*",
|
||||||
"manualJoinableYesText": "ÁNO",
|
"manualJoinableYesText": "ÁNO",
|
||||||
|
|
@ -721,14 +731,17 @@
|
||||||
"manualText": "Manuálne",
|
"manualText": "Manuálne",
|
||||||
"manualYourAddressFromInternetText": "Tvoja adresa z internetu:",
|
"manualYourAddressFromInternetText": "Tvoja adresa z internetu:",
|
||||||
"manualYourLocalAddressText": "Tvoja lokálna adresa:",
|
"manualYourLocalAddressText": "Tvoja lokálna adresa:",
|
||||||
|
"nearbyText": "Neďaleko",
|
||||||
"noConnectionText": "<žiadne pripojenie>",
|
"noConnectionText": "<žiadne pripojenie>",
|
||||||
"otherVersionsText": "(ostatné verzie)",
|
"otherVersionsText": "(ostatné verzie)",
|
||||||
|
"partyCodeText": "Párty kód",
|
||||||
"partyInviteAcceptText": "Potvrdiť",
|
"partyInviteAcceptText": "Potvrdiť",
|
||||||
"partyInviteDeclineText": "Odmietnuť",
|
"partyInviteDeclineText": "Odmietnuť",
|
||||||
"partyInviteGooglePlayExtraText": "(pozri \"Google Play\" tabuľku v \"Viac Hráčov\" okne)",
|
"partyInviteGooglePlayExtraText": "(pozri \"Google Play\" tabuľku v \"Viac Hráčov\" okne)",
|
||||||
"partyInviteIgnoreText": "Ignorovať",
|
"partyInviteIgnoreText": "Ignorovať",
|
||||||
"partyInviteText": "${NAME} ťa pozval \ndo jeho/jej párty!",
|
"partyInviteText": "${NAME} ťa pozval \ndo jeho/jej párty!",
|
||||||
"partyNameText": "Meno Párty",
|
"partyNameText": "Meno Párty",
|
||||||
|
"partyServerRunningText": "Váš server párty je spustený",
|
||||||
"partySizeText": "veľkosť párty",
|
"partySizeText": "veľkosť párty",
|
||||||
"partyStatusCheckingText": "kontrolujem status...",
|
"partyStatusCheckingText": "kontrolujem status...",
|
||||||
"partyStatusJoinableText": "tvoja párty je teraz pripojiteľná z internetu",
|
"partyStatusJoinableText": "tvoja párty je teraz pripojiteľná z internetu",
|
||||||
|
|
@ -737,10 +750,20 @@
|
||||||
"partyStatusNotPublicText": "tvoja párty nie je verejná",
|
"partyStatusNotPublicText": "tvoja párty nie je verejná",
|
||||||
"pingText": "ping",
|
"pingText": "ping",
|
||||||
"portText": "Port",
|
"portText": "Port",
|
||||||
|
"privatePartyCloudDescriptionText": "Súkromné párty bežia na vyhradených cloudových serveroch; nevyžaduje sa žiadna konfigurácia smerovača.",
|
||||||
|
"privatePartyHostText": "Usporiadajte súkromnú párty",
|
||||||
|
"privatePartyJoinText": "Pripojte sa k súkromnej párty",
|
||||||
|
"privateText": "Súkromné",
|
||||||
|
"publicHostRouterConfigText": "Môže to vyžadovať konfiguráciu presmerovania portov na vašom smerovači. Pre ľahšiu voľbu usporiadajte súkromný večierok.",
|
||||||
|
"publicText": "Verejné",
|
||||||
"requestingAPromoCodeText": "Získavam kód...",
|
"requestingAPromoCodeText": "Získavam kód...",
|
||||||
"sendDirectInvitesText": "Poslať Pozvánku",
|
"sendDirectInvitesText": "Poslať Pozvánku",
|
||||||
"shareThisCodeWithFriendsText": "Zdieľaj tento kód s kamarátmi:",
|
"shareThisCodeWithFriendsText": "Zdieľaj tento kód s kamarátmi:",
|
||||||
"showMyAddressText": "Ukáž Moju Adresu",
|
"showMyAddressText": "Ukáž Moju Adresu",
|
||||||
|
"startHostingPaidText": "Hostite teraz za ${COST}",
|
||||||
|
"startHostingText": "Hostiteľ",
|
||||||
|
"startStopHostingMinutesText": "Môžete začať a prestať hosťovať zadarmo na nasledujúcich ${MINUTES} minút.",
|
||||||
|
"stopHostingText": "Zastaviť hosťovanie",
|
||||||
"titleText": "Viac Hráčov",
|
"titleText": "Viac Hráčov",
|
||||||
"wifiDirectDescriptionBottomText": "Ak všetky zariadenia majú \"Wi-Fi Direct\" tabuľku, mali by byť schopní ho použiť\naby sa našli a pripojili medzi sebou. Keď budú všetky zariadenia pripojené,\nmôžeš formovať párty použitím tabuľky \"Lokálny Internet\" tak ako pri normálnej Wi-Fi.\n\nPre najlepšie výsledky, Wi-Fi Direct host by mal tiež byť ${APP_NAME} párty host.",
|
"wifiDirectDescriptionBottomText": "Ak všetky zariadenia majú \"Wi-Fi Direct\" tabuľku, mali by byť schopní ho použiť\naby sa našli a pripojili medzi sebou. Keď budú všetky zariadenia pripojené,\nmôžeš formovať párty použitím tabuľky \"Lokálny Internet\" tak ako pri normálnej Wi-Fi.\n\nPre najlepšie výsledky, Wi-Fi Direct host by mal tiež byť ${APP_NAME} párty host.",
|
||||||
"wifiDirectDescriptionTopText": "Wi-Fi Direct môže byť použitý na pripojenie Android zariadení bez\npoužitia Wi-Fi. Toto môže fungovať najlepšie na Androit 4.2 alebo novšom.\n\nPre jeho použitie, otvor Wi-Fi nastavenia a hľadaj \"Wi-Fi Direct\" v menu.",
|
"wifiDirectDescriptionTopText": "Wi-Fi Direct môže byť použitý na pripojenie Android zariadení bez\npoužitia Wi-Fi. Toto môže fungovať najlepšie na Androit 4.2 alebo novšom.\n\nPre jeho použitie, otvor Wi-Fi nastavenia a hľadaj \"Wi-Fi Direct\" v menu.",
|
||||||
|
|
@ -888,7 +911,7 @@
|
||||||
"playerJoinedPartyText": "${NAME} sa pripojil do párty!",
|
"playerJoinedPartyText": "${NAME} sa pripojil do párty!",
|
||||||
"playerLeftPartyText": "${NAME} odišiel z párty.",
|
"playerLeftPartyText": "${NAME} odišiel z párty.",
|
||||||
"rejectingInviteAlreadyInPartyText": "Ruším pozvánku (hráč je už v párty).",
|
"rejectingInviteAlreadyInPartyText": "Ruším pozvánku (hráč je už v párty).",
|
||||||
"serverRestartingText": "REŠTARUJEM. Prosím pripoj sa o chvíľu...",
|
"serverRestartingText": "Server sa reštartuje. Pripojte sa prosím o chvíľu ...",
|
||||||
"serverShuttingDownText": "Server sa vypína...",
|
"serverShuttingDownText": "Server sa vypína...",
|
||||||
"signInErrorText": "Error pri prihlasovaní.",
|
"signInErrorText": "Error pri prihlasovaní.",
|
||||||
"signInNoConnectionText": "Nemožno sa prihlásiť. (žiadny internet?)",
|
"signInNoConnectionText": "Nemožno sa prihlásiť. (žiadny internet?)",
|
||||||
|
|
@ -906,13 +929,19 @@
|
||||||
"jumpText": "Skočiť",
|
"jumpText": "Skočiť",
|
||||||
"keepText": "Ponechať",
|
"keepText": "Ponechať",
|
||||||
"keepTheseSettingsText": "Ponechať tieto nastavenia?",
|
"keepTheseSettingsText": "Ponechať tieto nastavenia?",
|
||||||
|
"keyboardChangeInstructionsText": "Dvojitým stlačením medzerníka zmeníte klávesnicu.",
|
||||||
|
"keyboardNoOthersAvailableText": "Nie sú k dispozícii žiadne ďalšie klávesnice.",
|
||||||
|
"keyboardSwitchText": "Prepína sa klávesnica na \"${NAME}\".",
|
||||||
"kickOccurredText": "${NAME} bol vyhodený.",
|
"kickOccurredText": "${NAME} bol vyhodený.",
|
||||||
"kickQuestionText": "Vyhodiť ${NAME}?",
|
"kickQuestionText": "Vyhodiť ${NAME}?",
|
||||||
"kickText": "Vyhodiť",
|
"kickText": "Vyhodiť",
|
||||||
|
"kickVoteCantKickAdminsText": "Správcov nemožno vyhodiť.",
|
||||||
|
"kickVoteCantKickSelfText": "Nemôžete sa vyhodiť.",
|
||||||
"kickVoteFailedNotEnoughVotersText": "Nie je dostatok hráčov pre hlasovanie.",
|
"kickVoteFailedNotEnoughVotersText": "Nie je dostatok hráčov pre hlasovanie.",
|
||||||
"kickVoteFailedText": "Hlasovanie pre vyhodenie zlyhalo.",
|
"kickVoteFailedText": "Hlasovanie pre vyhodenie zlyhalo.",
|
||||||
"kickVoteStartedText": "Hlasovanie pre vyhodenie začalo pre ${NAME}.",
|
"kickVoteStartedText": "Hlasovanie pre vyhodenie začalo pre ${NAME}.",
|
||||||
"kickVoteText": "Hlasovať pre Vyhodenie",
|
"kickVoteText": "Hlasovať pre Vyhodenie",
|
||||||
|
"kickVotingDisabledText": "Vyhadzovacie hlasovanie je zakázané.",
|
||||||
"kickWithChatText": "Napíš ${YES} pre áno a ${NO} pre nie do chatu.",
|
"kickWithChatText": "Napíš ${YES} pre áno a ${NO} pre nie do chatu.",
|
||||||
"killsTallyText": "${COUNT} zabití.",
|
"killsTallyText": "${COUNT} zabití.",
|
||||||
"killsText": "Zabitia",
|
"killsText": "Zabitia",
|
||||||
|
|
@ -982,6 +1011,9 @@
|
||||||
"maxConnectionsText": "Maximum Pripojení",
|
"maxConnectionsText": "Maximum Pripojení",
|
||||||
"maxPartySizeText": "Maximálna Veľkosť Párty",
|
"maxPartySizeText": "Maximálna Veľkosť Párty",
|
||||||
"maxPlayersText": "Maximum Hráčov",
|
"maxPlayersText": "Maximum Hráčov",
|
||||||
|
"modeArcadeText": "Arkádový režim",
|
||||||
|
"modeClassicText": "Klasický režim",
|
||||||
|
"modeDemoText": "Demo režim",
|
||||||
"mostValuablePlayerText": "Najcennejší Hráč",
|
"mostValuablePlayerText": "Najcennejší Hráč",
|
||||||
"mostViolatedPlayerText": "Najzomierajúcejší Hráč",
|
"mostViolatedPlayerText": "Najzomierajúcejší Hráč",
|
||||||
"mostViolentPlayerText": "Najvražednejší Hráč",
|
"mostViolentPlayerText": "Najvražednejší Hráč",
|
||||||
|
|
@ -1010,6 +1042,7 @@
|
||||||
"noGameCircleText": "Error: nie si prihlásený do GameCircle",
|
"noGameCircleText": "Error: nie si prihlásený do GameCircle",
|
||||||
"noScoresYetText": "Zatiaľ žiadne skóre.",
|
"noScoresYetText": "Zatiaľ žiadne skóre.",
|
||||||
"noThanksText": "Nie Vďaka",
|
"noThanksText": "Nie Vďaka",
|
||||||
|
"noTournamentsInTestBuildText": "UPOZORNENIE: Výsledky turnajov z tejto testovacej zostavy budú ignorované.",
|
||||||
"noValidMapsErrorText": "Žiadne platné mapy sa pre tento typ hry nenašli.",
|
"noValidMapsErrorText": "Žiadne platné mapy sa pre tento typ hry nenašli.",
|
||||||
"notEnoughPlayersRemainingText": "Nedostatok hráčov; začni novú hru.",
|
"notEnoughPlayersRemainingText": "Nedostatok hráčov; začni novú hru.",
|
||||||
"notEnoughPlayersText": "Potrebuješ aspoň ${COUNT} hráčov ak chceš toto hrať!",
|
"notEnoughPlayersText": "Potrebuješ aspoň ${COUNT} hráčov ak chceš toto hrať!",
|
||||||
|
|
@ -1022,6 +1055,7 @@
|
||||||
"offText": "Vypnúť",
|
"offText": "Vypnúť",
|
||||||
"okText": "Ok",
|
"okText": "Ok",
|
||||||
"onText": "Zapnúť",
|
"onText": "Zapnúť",
|
||||||
|
"oneMomentText": "Chvíľu...",
|
||||||
"onslaughtRespawnText": "${PLAYER} sa znova zjaví vo vlne ${WAVE}",
|
"onslaughtRespawnText": "${PLAYER} sa znova zjaví vo vlne ${WAVE}",
|
||||||
"orText": "${A} alebo ${B}",
|
"orText": "${A} alebo ${B}",
|
||||||
"otherText": "Ďalšie...",
|
"otherText": "Ďalšie...",
|
||||||
|
|
@ -1068,9 +1102,12 @@
|
||||||
"playerText": "Hráč",
|
"playerText": "Hráč",
|
||||||
"playlistNoValidGamesErrorText": "Tento playlist neobsahuje žiadne platné odomknuté hry.",
|
"playlistNoValidGamesErrorText": "Tento playlist neobsahuje žiadne platné odomknuté hry.",
|
||||||
"playlistNotFoundText": "playlist sa nenašiel",
|
"playlistNotFoundText": "playlist sa nenašiel",
|
||||||
|
"playlistText": "Zoznam skladieb",
|
||||||
"playlistsText": "Playlisty",
|
"playlistsText": "Playlisty",
|
||||||
"pleaseRateText": "Ak si ${APP_NAME} užívaš, prosím pouvažuj nad chvíľou\nohodnotenia a napísania recenzie. Toto poskytuje\nužitočnú spätnú väzbu a pomáha podporovať budúci rozvoj.\n\nvďaka!\n-Eric",
|
"pleaseRateText": "Ak si ${APP_NAME} užívaš, prosím pouvažuj nad chvíľou\nohodnotenia a napísania recenzie. Toto poskytuje\nužitočnú spätnú väzbu a pomáha podporovať budúci rozvoj.\n\nvďaka!\n-Eric",
|
||||||
"pleaseWaitText": "Prosím počkaj...",
|
"pleaseWaitText": "Prosím počkaj...",
|
||||||
|
"pluginsDetectedText": "Boli zistené nové doplnky. Povoľte / nakonfigurujte ich v nastaveniach.",
|
||||||
|
"pluginsText": "Pluginy",
|
||||||
"practiceText": "Tréning",
|
"practiceText": "Tréning",
|
||||||
"pressAnyButtonPlayAgainText": "Stlač hocijaké tlačidlo ak chceš hrať znova...",
|
"pressAnyButtonPlayAgainText": "Stlač hocijaké tlačidlo ak chceš hrať znova...",
|
||||||
"pressAnyButtonText": "Stlač hocijaké tlačidlo ak chceš pokračovať...",
|
"pressAnyButtonText": "Stlač hocijaké tlačidlo ak chceš pokračovať...",
|
||||||
|
|
@ -1101,7 +1138,7 @@
|
||||||
"purchasingText": "Kupujem...",
|
"purchasingText": "Kupujem...",
|
||||||
"quitGameText": "Ukončiť ${APP_NAME}?",
|
"quitGameText": "Ukončiť ${APP_NAME}?",
|
||||||
"quittingIn5SecondsText": "Ukončujem za 5 sekúnd..",
|
"quittingIn5SecondsText": "Ukončujem za 5 sekúnd..",
|
||||||
"randomPlayerNamesText": "DEFAULT_NAMES",
|
"randomPlayerNamesText": "VÝCHODNÉ_NÁZVY",
|
||||||
"randomText": "Náhodne",
|
"randomText": "Náhodne",
|
||||||
"rankText": "Umiestnenie",
|
"rankText": "Umiestnenie",
|
||||||
"ratingText": "Hodnotenie",
|
"ratingText": "Hodnotenie",
|
||||||
|
|
@ -1187,6 +1224,8 @@
|
||||||
"alwaysUseInternalKeyboardDescriptionText": "(jednoduchá, podporujúca-ovládač na-obrazovke-klávesnica pre písanie textu)",
|
"alwaysUseInternalKeyboardDescriptionText": "(jednoduchá, podporujúca-ovládač na-obrazovke-klávesnica pre písanie textu)",
|
||||||
"alwaysUseInternalKeyboardText": "Stále Používať Klávesnicu v Programe",
|
"alwaysUseInternalKeyboardText": "Stále Používať Klávesnicu v Programe",
|
||||||
"benchmarksText": "Benchmarky & Stres-Testy",
|
"benchmarksText": "Benchmarky & Stres-Testy",
|
||||||
|
"disableCameraGyroscopeMotionText": "Zakázať pohyb gyroskopu fotoaparátu",
|
||||||
|
"disableCameraShakeText": "Zakázať otrasy fotoaparátu",
|
||||||
"disableThisNotice": "(toto upozornenie môžeš vypnúť v Pokročilých nastaveniach)",
|
"disableThisNotice": "(toto upozornenie môžeš vypnúť v Pokročilých nastaveniach)",
|
||||||
"enablePackageModsDescriptionText": "(povoľuje extra módovanie ale ruší hry na internete)",
|
"enablePackageModsDescriptionText": "(povoľuje extra módovanie ale ruší hry na internete)",
|
||||||
"enablePackageModsText": "Povoliť Lokálny Balíček Módov",
|
"enablePackageModsText": "Povoliť Lokálny Balíček Módov",
|
||||||
|
|
@ -1208,7 +1247,7 @@
|
||||||
"translationFetchErrorText": "status pre jazyk nedostupný",
|
"translationFetchErrorText": "status pre jazyk nedostupný",
|
||||||
"translationFetchingStatusText": "kontrolujem status jazyka...",
|
"translationFetchingStatusText": "kontrolujem status jazyka...",
|
||||||
"translationInformMe": "Informuj ma keď môj jazyk potrebuje vylepšiť",
|
"translationInformMe": "Informuj ma keď môj jazyk potrebuje vylepšiť",
|
||||||
"translationNoUpdateNeededText": "Slovenčina je celá preložená!",
|
"translationNoUpdateNeededText": "Slovenčina je celá preložená, jupiii!",
|
||||||
"translationUpdateNeededText": "** Slovenčina potrebuje dokončiť!! **",
|
"translationUpdateNeededText": "** Slovenčina potrebuje dokončiť!! **",
|
||||||
"vrTestingText": "VR Testovanie"
|
"vrTestingText": "VR Testovanie"
|
||||||
},
|
},
|
||||||
|
|
@ -1226,10 +1265,10 @@
|
||||||
"Epic": "Spomalené Hry",
|
"Epic": "Spomalené Hry",
|
||||||
"Epic Race": "Spomalené Preteky",
|
"Epic Race": "Spomalené Preteky",
|
||||||
"FlagCatcher": "Capture the Flag",
|
"FlagCatcher": "Capture the Flag",
|
||||||
"Flying": "Sen",
|
"Flying": "Štastné myšlienky",
|
||||||
"Football": "Futbal",
|
"Football": "Futbal",
|
||||||
"ForwardMarch": "Prepad",
|
"ForwardMarch": "Prepad",
|
||||||
"GrandRomp": "Conquest",
|
"GrandRomp": "Dobytie",
|
||||||
"Hockey": "Hokej",
|
"Hockey": "Hokej",
|
||||||
"Keep Away": "Únos",
|
"Keep Away": "Únos",
|
||||||
"Marching": "Obeh",
|
"Marching": "Obeh",
|
||||||
|
|
@ -1239,7 +1278,7 @@
|
||||||
"Scary": "Kráľ Hory",
|
"Scary": "Kráľ Hory",
|
||||||
"Scores": "Obrazovka so Skóre",
|
"Scores": "Obrazovka so Skóre",
|
||||||
"Survival": "Eliminácia",
|
"Survival": "Eliminácia",
|
||||||
"ToTheDeath": "Death Match",
|
"ToTheDeath": "Zápas na život a na smrť",
|
||||||
"Victory": "Obrazovka s Finálovým Skóre"
|
"Victory": "Obrazovka s Finálovým Skóre"
|
||||||
},
|
},
|
||||||
"spaceKeyText": "medzerník",
|
"spaceKeyText": "medzerník",
|
||||||
|
|
@ -1266,7 +1305,7 @@
|
||||||
"oneTimeOnlyText": "(len jeden krát)",
|
"oneTimeOnlyText": "(len jeden krát)",
|
||||||
"purchaseAlreadyInProgressText": "Už kupovanie tohoto predmetu prebieha.",
|
"purchaseAlreadyInProgressText": "Už kupovanie tohoto predmetu prebieha.",
|
||||||
"purchaseConfirmText": "Kúpiť ${ITEM}?",
|
"purchaseConfirmText": "Kúpiť ${ITEM}?",
|
||||||
"purchaseNotValidError": "Objednávka nie je platná.\nKontaktuj ${EMAIL} ak to bol error.",
|
"purchaseNotValidError": "Objednávka nie je platná.\nKontaktuj ${EMAIL}, ak sa jedná o chybu. .",
|
||||||
"purchaseText": "Kúpiť",
|
"purchaseText": "Kúpiť",
|
||||||
"saleBundleText": "Zľava na Bundle!",
|
"saleBundleText": "Zľava na Bundle!",
|
||||||
"saleExclaimText": "Zľava!",
|
"saleExclaimText": "Zľava!",
|
||||||
|
|
@ -1362,7 +1401,7 @@
|
||||||
"Rookie ${GAME}": "Pokročilý ${GAME}",
|
"Rookie ${GAME}": "Pokročilý ${GAME}",
|
||||||
"Rookie Football": "Pokročilý Futbal",
|
"Rookie Football": "Pokročilý Futbal",
|
||||||
"Rookie Onslaught": "Pokročilý Útok",
|
"Rookie Onslaught": "Pokročilý Útok",
|
||||||
"The Last Stand": "The Last Stand",
|
"The Last Stand": "Posledný vzdor",
|
||||||
"Uber ${GAME}": "Extrémny ${GAME}",
|
"Uber ${GAME}": "Extrémny ${GAME}",
|
||||||
"Uber Football": "Extrémny Futbal",
|
"Uber Football": "Extrémny Futbal",
|
||||||
"Uber Onslaught": "Extrémny Útok",
|
"Uber Onslaught": "Extrémny Útok",
|
||||||
|
|
@ -1427,13 +1466,13 @@
|
||||||
"Assault": "Prepad",
|
"Assault": "Prepad",
|
||||||
"Capture the Flag": "Krádež",
|
"Capture the Flag": "Krádež",
|
||||||
"Chosen One": "Vyvolený",
|
"Chosen One": "Vyvolený",
|
||||||
"Conquest": "Conquest",
|
"Conquest": "Dobytie",
|
||||||
"Death Match": "Death Match",
|
"Death Match": "Death Match",
|
||||||
"Easter Egg Hunt": "Zber Vajíčok",
|
"Easter Egg Hunt": "Zber Vajíčok",
|
||||||
"Elimination": "Eliminácia",
|
"Elimination": "Eliminácia",
|
||||||
"Football": "Futbal",
|
"Football": "Futbal",
|
||||||
"Hockey": "Hokej",
|
"Hockey": "Hokej",
|
||||||
"Keep Away": "Keep Away",
|
"Keep Away": "Drž sa ďalej",
|
||||||
"King of the Hill": "Kráľ Hory",
|
"King of the Hill": "Kráľ Hory",
|
||||||
"Meteor Shower": "Sprcha Meteorov",
|
"Meteor Shower": "Sprcha Meteorov",
|
||||||
"Ninja Fight": "Ninja Boj",
|
"Ninja Fight": "Ninja Boj",
|
||||||
|
|
@ -1480,6 +1519,7 @@
|
||||||
"Swedish": "Švédčina",
|
"Swedish": "Švédčina",
|
||||||
"Turkish": "Turečtina",
|
"Turkish": "Turečtina",
|
||||||
"Ukrainian": "Ukrainčina",
|
"Ukrainian": "Ukrainčina",
|
||||||
|
"Venetian": "Benátske",
|
||||||
"Vietnamese": "Vietnamčina"
|
"Vietnamese": "Vietnamčina"
|
||||||
},
|
},
|
||||||
"leagueNames": {
|
"leagueNames": {
|
||||||
|
|
@ -1491,8 +1531,8 @@
|
||||||
"mapsNames": {
|
"mapsNames": {
|
||||||
"Big G": "Veľké G",
|
"Big G": "Veľké G",
|
||||||
"Bridgit": "Most",
|
"Bridgit": "Most",
|
||||||
"Courtyard": "Courtyard",
|
"Courtyard": "Nádvorie",
|
||||||
"Crag Castle": "Hrad",
|
"Crag Castle": "Hrad Crag",
|
||||||
"Doom Shroom": "Hríb",
|
"Doom Shroom": "Hríb",
|
||||||
"Football Stadium": "Futbalové Ihrisko",
|
"Football Stadium": "Futbalové Ihrisko",
|
||||||
"Happy Thoughts": "Sen",
|
"Happy Thoughts": "Sen",
|
||||||
|
|
@ -1525,11 +1565,11 @@
|
||||||
"Account linking successful!": "Prepojenie prebehlo úspešne!",
|
"Account linking successful!": "Prepojenie prebehlo úspešne!",
|
||||||
"Account unlinking successful!": "Odpojenie prebehlo úspešne!",
|
"Account unlinking successful!": "Odpojenie prebehlo úspešne!",
|
||||||
"Accounts are already linked.": "Účty už sú prepojené.",
|
"Accounts are already linked.": "Účty už sú prepojené.",
|
||||||
"An error has occurred; (${ERROR})": "Našiel sa error; (${ERROR})",
|
"An error has occurred; (${ERROR})": "Došlo k chybe; (${ERROR})",
|
||||||
"An error has occurred; please contact support. (${ERROR})": "Našiel sa error; prosím kontaktuj podporu. (${ERROR})",
|
"An error has occurred; please contact support. (${ERROR})": "Došlo k chybe; prosím kontaktujte podporu. (${ERROR})",
|
||||||
"An error has occurred; please contact support@froemling.net.": "Našiel sa error; prosím kontaktuj support@froemling.net.",
|
"An error has occurred; please contact support@froemling.net.": "Došlo k chybe; prosím kontaktujte support@froemling.net.",
|
||||||
"An error has occurred; please try again later.": "Našiel sa error; prosím skús to znova neskôr.",
|
"An error has occurred; please try again later.": "Došlo k chybe; skúste to neskôr prosím.",
|
||||||
"Are you sure you want to link these accounts?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nThis cannot be undone!": "Si si istý že chcete prepojiť účty?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nToto nemôže byť odvolané!",
|
"Are you sure you want to link these accounts?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nThis cannot be undone!": "Ste si istý že chcete prepojiť účty?\n\n${ACCOUNT1}\n${ACCOUNT2}\n\nToto nemôže byť odvolané!",
|
||||||
"BombSquad Pro unlocked!": "Bombsquad Pro odomknuté!",
|
"BombSquad Pro unlocked!": "Bombsquad Pro odomknuté!",
|
||||||
"Can't link 2 accounts of this type.": "Nemožno prepojiť 2 účty tohoto typu.",
|
"Can't link 2 accounts of this type.": "Nemožno prepojiť 2 účty tohoto typu.",
|
||||||
"Can't link 2 diamond league accounts.": "Nemožno prepojiť 2 účty s Diamantovou ligou.",
|
"Can't link 2 diamond league accounts.": "Nemožno prepojiť 2 účty s Diamantovou ligou.",
|
||||||
|
|
@ -1539,17 +1579,17 @@
|
||||||
"Daily maximum reached.": "Denný maximum dosiahnutý.",
|
"Daily maximum reached.": "Denný maximum dosiahnutý.",
|
||||||
"Entering tournament...": "Vstupujem do turnaja...",
|
"Entering tournament...": "Vstupujem do turnaja...",
|
||||||
"Invalid code.": "Nesprávny kód.",
|
"Invalid code.": "Nesprávny kód.",
|
||||||
"Invalid payment; purchase canceled.": "Nemožná platba; nákup zrušený.",
|
"Invalid payment; purchase canceled.": "Neplatná platba; nákup zrušený.",
|
||||||
"Invalid promo code.": "Nesprávny promo kód.",
|
"Invalid promo code.": "Nesprávny promo kód.",
|
||||||
"Invalid purchase.": "Zlý nákup.",
|
"Invalid purchase.": "Neplatný nákup.",
|
||||||
"Invalid tournament entry; score will be ignored.": "Nemožné vstupné; skóre bude ignorované.",
|
"Invalid tournament entry; score will be ignored.": "Neplatný vstup do turnaja; skóre bude ignorované.",
|
||||||
"Item unlocked!": "Item odomkutý!",
|
"Item unlocked!": "Item odomkutý!",
|
||||||
"LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "PREPOJENIE RUŠENÉ. ${ACCOUNT} obsahuje\nvzácne dáta ktoré bude STRATENÉ.\nMôžeš prepojiť \"opačne\" ak chceš\n(a stratiť dáta na TOMTO účte).",
|
"LINKING DENIED. ${ACCOUNT} contains\nsignificant data that would ALL BE LOST.\nYou can link in the opposite order if you'd like\n(and lose THIS account's data instead)": "PREPOJENIE RUŠENÉ. ${ACCOUNT} obsahuje\nvzácne dáta ktoré bude STRATENÉ.\nMôžeš prepojiť \"opačne\" ak chceš\n(a stratiť dáta na TOMTO účte).",
|
||||||
"Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Prepojiť účet ${ACCOUNT} s týmto účtom?\nVšetky dáta na účte ${ACCOUNT} bude stratené.\nToto nemôžeš odvolať. Si si istý?",
|
"Link account ${ACCOUNT} to this account?\nAll existing data on ${ACCOUNT} will be lost.\nThis can not be undone. Are you sure?": "Prepojiť účet ${ACCOUNT} s týmto účtom?\nVšetky dáta na účte ${ACCOUNT} bude stratené.\nToto nemôžeš odvolať. Si si istý?",
|
||||||
"Max number of playlists reached.": "Maximálny počet playlistov dosiahnutý.",
|
"Max number of playlists reached.": "Maximálny počet playlistov dosiahnutý.",
|
||||||
"Max number of profiles reached.": "Maximálny počet profilov dosiahnutý.",
|
"Max number of profiles reached.": "Maximálny počet profilov dosiahnutý.",
|
||||||
"Maximum friend code rewards reached.": "Maximálny počet odmien za nových hráčov dosiahnutý.",
|
"Maximum friend code rewards reached.": "Maximálny počet odmien za nových hráčov dosiahnutý.",
|
||||||
"Message is too long.": "Správa je moc dlhá.",
|
"Message is too long.": "Správa je príliš dlhá.",
|
||||||
"Profile \"${NAME}\" upgraded successfully.": "Profil \"${NAME}\" bol úspešne vylepšený.",
|
"Profile \"${NAME}\" upgraded successfully.": "Profil \"${NAME}\" bol úspešne vylepšený.",
|
||||||
"Profile could not be upgraded.": "Profil nemožno vylepšiť.",
|
"Profile could not be upgraded.": "Profil nemožno vylepšiť.",
|
||||||
"Purchase successful!": "Nákup prebehol úspešne!",
|
"Purchase successful!": "Nákup prebehol úspešne!",
|
||||||
|
|
@ -1563,6 +1603,7 @@
|
||||||
"The tournament ended before you finished.": "Turnaj sa skončil predtým ako si ho dokončil.",
|
"The tournament ended before you finished.": "Turnaj sa skončil predtým ako si ho dokončil.",
|
||||||
"This account cannot be unlinked for ${NUM} days.": "Tento účet nemôže byť odpojený v podobu ${NUM} dní.",
|
"This account cannot be unlinked for ${NUM} days.": "Tento účet nemôže byť odpojený v podobu ${NUM} dní.",
|
||||||
"This code cannot be used on the account that created it.": "Tento kód nemôže byť použitý na účte ktorý ho vytvoril.",
|
"This code cannot be used on the account that created it.": "Tento kód nemôže byť použitý na účte ktorý ho vytvoril.",
|
||||||
|
"This is currently unavailable; please try again later.": "Táto položka momentálne nie je k dispozícii; prosím skúste neskôr prosím.",
|
||||||
"This requires version ${VERSION} or newer.": "Toto požaduje verziu ${VERSION} alebo novšiu.",
|
"This requires version ${VERSION} or newer.": "Toto požaduje verziu ${VERSION} alebo novšiu.",
|
||||||
"Tournaments disabled due to rooted device.": "Turnaje zrušené kvôli \"root-nutemu\" zariadeniu.",
|
"Tournaments disabled due to rooted device.": "Turnaje zrušené kvôli \"root-nutemu\" zariadeniu.",
|
||||||
"Tournaments require ${VERSION} or newer": "Turnaje vyžadujú ${VERSION} alebo novšiu.",
|
"Tournaments require ${VERSION} or newer": "Turnaje vyžadujú ${VERSION} alebo novšiu.",
|
||||||
|
|
@ -1644,11 +1685,11 @@
|
||||||
"Despite their looks, all characters' abilities are identical,\nso just pick whichever one you most closely resemble.": "Napriek ich vzhľadu, sú schopnosti charakterov rovnaké,\ntakže si vyber, ktorý z nich sa ti najviac páči.",
|
"Despite their looks, all characters' abilities are identical,\nso just pick whichever one you most closely resemble.": "Napriek ich vzhľadu, sú schopnosti charakterov rovnaké,\ntakže si vyber, ktorý z nich sa ti najviac páči.",
|
||||||
"Don't get too cocky with that energy shield; you can still get yourself thrown off a cliff.": "Nebuď moc drsný s tým štítom; stále ťa môžu zhodiť dole z útesu.",
|
"Don't get too cocky with that energy shield; you can still get yourself thrown off a cliff.": "Nebuď moc drsný s tým štítom; stále ťa môžu zhodiť dole z útesu.",
|
||||||
"Don't run all the time. Really. You will fall off cliffs.": "Nebež celý čas. Vážne. Skončíš dole v útese.",
|
"Don't run all the time. Really. You will fall off cliffs.": "Nebež celý čas. Vážne. Skončíš dole v útese.",
|
||||||
"Don't spin for too long; you'll become dizzy and fall.": "Netoč sa moc dlho; inak odpadneš.",
|
"Don't spin for too long; you'll become dizzy and fall.": "Netoč sa príliš dlho; inak odpadneš.",
|
||||||
"Hold any button to run. (Trigger buttons work well if you have them)": "Drž hocijaké tlačidlo aby si behal. (Najlepšie fungujú bočné tlačidlá ak ich máš)",
|
"Hold any button to run. (Trigger buttons work well if you have them)": "Drž hocijaké tlačidlo aby si behal. (Najlepšie fungujú bočné tlačidlá ak ich máš)",
|
||||||
"Hold down any button to run. You'll get places faster\nbut won't turn very well, so watch out for cliffs.": "Drž hocijaké tlačidle aby si behal. Dostaneš sa na miesta \nrýchlejšie ale budeš zle zatáčať, takže bacha na útesy.",
|
"Hold down any button to run. You'll get places faster\nbut won't turn very well, so watch out for cliffs.": "Drž hocijaké tlačidle aby si behal. Dostaneš sa na miesta \nrýchlejšie ale budeš zle zatáčať, takže bacha na útesy.",
|
||||||
"Ice bombs are not very powerful, but they freeze\nwhoever they hit, leaving them vulnerable to shattering.": "Ľadové bomby nie sú moc silné, ale zamrznú každého\nkoho trafia a nechajú ich ležať krehkých na zemi.",
|
"Ice bombs are not very powerful, but they freeze\nwhoever they hit, leaving them vulnerable to shattering.": "Ľadové bomby nie sú moc silné, ale zamrznú každého\nkoho trafia a nechajú ich ležať krehkých na zemi.",
|
||||||
"If someone picks you up, punch them and they'll let go.\nThis works in real life too.": "Ak ťa dakto zobere, udri ho ak on ťa nechá.\nToto funguje aj v reálnom živote.",
|
"If someone picks you up, punch them and they'll let go.\nThis works in real life too.": "Ak vás niekto zdvihne, dajte mu päsť a on vás pustí. \n To funguje aj v reálnom živote.",
|
||||||
"If you are short on controllers, install the '${REMOTE_APP_NAME}' app\non your mobile devices to use them as controllers.": "Ak máš málo ovládačov, nainštaluj si aplikáciu \"${REMOTE_APP_NAME}\"\nna mobiloch a použi ich ako ovládače.",
|
"If you are short on controllers, install the '${REMOTE_APP_NAME}' app\non your mobile devices to use them as controllers.": "Ak máš málo ovládačov, nainštaluj si aplikáciu \"${REMOTE_APP_NAME}\"\nna mobiloch a použi ich ako ovládače.",
|
||||||
"If you get a sticky-bomb stuck to you, jump around and spin in circles. You might\nshake the bomb off, or if nothing else your last moments will be entertaining.": "Ak sa na teba zalepí sticky-bomba, skáč a toč sa v kruhoch. Mala by sa od teba\nodlepiť a ak nie, uži si posledné sekundy života.",
|
"If you get a sticky-bomb stuck to you, jump around and spin in circles. You might\nshake the bomb off, or if nothing else your last moments will be entertaining.": "Ak sa na teba zalepí sticky-bomba, skáč a toč sa v kruhoch. Mala by sa od teba\nodlepiť a ak nie, uži si posledné sekundy života.",
|
||||||
"If you kill an enemy in one hit you get double points for it.": "Ak zabiješ protivníka na jednu ranu dostaneš zaň dvojité body.",
|
"If you kill an enemy in one hit you get double points for it.": "Ak zabiješ protivníka na jednu ranu dostaneš zaň dvojité body.",
|
||||||
|
|
@ -1703,9 +1744,9 @@
|
||||||
"phrase12Text": "Pre úžasné údery, skús behať A točiť sa.",
|
"phrase12Text": "Pre úžasné údery, skús behať A točiť sa.",
|
||||||
"phrase13Text": "Ups; prepáč ${NAME}.",
|
"phrase13Text": "Ups; prepáč ${NAME}.",
|
||||||
"phrase14Text": "Môžeš brať a zahadzovať veci, vlajky, bomby... alebo ${NAME}a.",
|
"phrase14Text": "Môžeš brať a zahadzovať veci, vlajky, bomby... alebo ${NAME}a.",
|
||||||
"phrase15Text": "Nakoniec tu sú bomby.",
|
"phrase15Text": "A nakoniec sú tu bomby.",
|
||||||
"phrase16Text": "Hádzanie bômb si vyžaduje tréning.",
|
"phrase16Text": "Hádzanie bômb si vyžaduje tréning.",
|
||||||
"phrase17Text": "Jau! Nie moc dobrý hod.",
|
"phrase17Text": "Jau! Nie veľmi dobrý hod.",
|
||||||
"phrase18Text": "Pohyb ti ju pomáha hodiť ďalej.",
|
"phrase18Text": "Pohyb ti ju pomáha hodiť ďalej.",
|
||||||
"phrase19Text": "Skok ti ju pomáha hodiť vyššie.",
|
"phrase19Text": "Skok ti ju pomáha hodiť vyššie.",
|
||||||
"phrase20Text": "\"Roztoč\" svoju bombu pre ešte dlhšie hody.",
|
"phrase20Text": "\"Roztoč\" svoju bombu pre ešte dlhšie hody.",
|
||||||
|
|
@ -1716,7 +1757,7 @@
|
||||||
"phrase25Text": "No, to je asi všetko.",
|
"phrase25Text": "No, to je asi všetko.",
|
||||||
"phrase26Text": "Teraz choď na nich!",
|
"phrase26Text": "Teraz choď na nich!",
|
||||||
"phrase27Text": "A nezabudni piecť!",
|
"phrase27Text": "A nezabudni piecť!",
|
||||||
"phrase28Text": "...ale nie moc dlho...",
|
"phrase28Text": "...ale nie veľmi dlho...",
|
||||||
"phrase29Text": "Veľa Šťastia!",
|
"phrase29Text": "Veľa Šťastia!",
|
||||||
"randomName1Text": "Maroš",
|
"randomName1Text": "Maroš",
|
||||||
"randomName2Text": "Erik",
|
"randomName2Text": "Erik",
|
||||||
|
|
@ -1764,11 +1805,11 @@
|
||||||
"renameReplayButtonText": "Premenovať\nReplay",
|
"renameReplayButtonText": "Premenovať\nReplay",
|
||||||
"renameReplayText": "Premenovať \"${REPLAY}\" na:",
|
"renameReplayText": "Premenovať \"${REPLAY}\" na:",
|
||||||
"renameText": "Premenovať",
|
"renameText": "Premenovať",
|
||||||
"replayDeleteErrorText": "Error pri vymazávaní replayu.",
|
"replayDeleteErrorText": "Chyba pri vymazávaní replayu.",
|
||||||
"replayNameText": "Meno Replayu",
|
"replayNameText": "Meno Replayu",
|
||||||
"replayRenameErrorAlreadyExistsText": "Replay s takým menom už existuje.",
|
"replayRenameErrorAlreadyExistsText": "Replay s takým menom už existuje.",
|
||||||
"replayRenameErrorInvalidName": "Nemožno premenovať replay; neplatné meno.",
|
"replayRenameErrorInvalidName": "Nemožno premenovať replay; neplatné meno.",
|
||||||
"replayRenameErrorText": "Error pri premenovaní replayu.",
|
"replayRenameErrorText": "Chyba pri premenovaní replayu.",
|
||||||
"sharedReplaysText": "Zdieľané Replaye",
|
"sharedReplaysText": "Zdieľané Replaye",
|
||||||
"titleText": "Pozerať",
|
"titleText": "Pozerať",
|
||||||
"watchReplayButtonText": "Pozrieť\nReplay"
|
"watchReplayButtonText": "Pozrieť\nReplay"
|
||||||
|
|
|
||||||
16
dist/ba_data/data/languages/spanish.json
vendored
16
dist/ba_data/data/languages/spanish.json
vendored
|
|
@ -65,7 +65,7 @@
|
||||||
"Dual Wielding": {
|
"Dual Wielding": {
|
||||||
"descriptionFull": "Conecta 2 controles (de hardware o de aplicación)",
|
"descriptionFull": "Conecta 2 controles (de hardware o de aplicación)",
|
||||||
"descriptionFullComplete": "2 controles conectados (de hardware o de aplicación)",
|
"descriptionFullComplete": "2 controles conectados (de hardware o de aplicación)",
|
||||||
"name": "Doble empuñadura"
|
"name": "Juego Doble"
|
||||||
},
|
},
|
||||||
"Flawless Victory": {
|
"Flawless Victory": {
|
||||||
"description": "Gana sin ser golpeado",
|
"description": "Gana sin ser golpeado",
|
||||||
|
|
@ -96,7 +96,7 @@
|
||||||
"In Control": {
|
"In Control": {
|
||||||
"descriptionFull": "Conecta un control (de hardware o de aplicación)",
|
"descriptionFull": "Conecta un control (de hardware o de aplicación)",
|
||||||
"descriptionFullComplete": "Conectado un control (de hardware o de aplicación)",
|
"descriptionFullComplete": "Conectado un control (de hardware o de aplicación)",
|
||||||
"name": "Bajo Control"
|
"name": "En Control"
|
||||||
},
|
},
|
||||||
"Last Stand God": {
|
"Last Stand God": {
|
||||||
"description": "Anota 1000 puntos",
|
"description": "Anota 1000 puntos",
|
||||||
|
|
@ -380,7 +380,7 @@
|
||||||
"configureTouchText": "Configurar Pantalla Táctil",
|
"configureTouchText": "Configurar Pantalla Táctil",
|
||||||
"ps3Text": "Controles de PS3",
|
"ps3Text": "Controles de PS3",
|
||||||
"titleText": "Controles",
|
"titleText": "Controles",
|
||||||
"wiimotesText": "Controles de Wii",
|
"wiimotesText": "Wii Remotes",
|
||||||
"xbox360Text": "Controles de Xbox 360"
|
"xbox360Text": "Controles de Xbox 360"
|
||||||
},
|
},
|
||||||
"configGamepadSelectWindow": {
|
"configGamepadSelectWindow": {
|
||||||
|
|
@ -1508,16 +1508,16 @@
|
||||||
"Uber Runaround": "Evasiva Ultra"
|
"Uber Runaround": "Evasiva Ultra"
|
||||||
},
|
},
|
||||||
"gameDescriptions": {
|
"gameDescriptions": {
|
||||||
"Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Sé el elegido por el tiempo designado para ganar.\nElimina al Elegido para convertirte en El Elegido.",
|
"Be the chosen one for a length of time to win.\nKill the chosen one to become it.": "Sé el elegido durante el tiempo designado para ganar.\nElimina al Elegido para convertirte en El Elegido.",
|
||||||
"Bomb as many targets as you can.": "Lanza bombas a tantos blancos como puedas.",
|
"Bomb as many targets as you can.": "Lanza bombas a tantos blancos como puedas.",
|
||||||
"Carry the flag for ${ARG1} seconds.": "Carga la bandera por ${ARG1} segundos.",
|
"Carry the flag for ${ARG1} seconds.": "Carga la bandera por ${ARG1} segundos.",
|
||||||
"Carry the flag for a set length of time.": "Carga la bandera por determinado tiempo.",
|
"Carry the flag for a set length of time.": "Carga la bandera por un determinado tiempo.",
|
||||||
"Crush ${ARG1} of your enemies.": "Elimina ${ARG1} de tus enemigos.",
|
"Crush ${ARG1} of your enemies.": "Elimina ${ARG1} de tus enemigos.",
|
||||||
"Defeat all enemies.": "Elimina todos los enemigos.",
|
"Defeat all enemies.": "Elimina todos los enemigos.",
|
||||||
"Dodge the falling bombs.": "Esquiva las bombas.",
|
"Dodge the falling bombs.": "Esquiva las bombas.",
|
||||||
"Final glorious epic slow motion battle to the death.": "Gloriosa batalla final en cámara lenta épica.",
|
"Final glorious epic slow motion battle to the death.": "Gloriosa batalla final en cámara lenta épica.",
|
||||||
"Gather eggs!": "¡Recolecta huevos!",
|
"Gather eggs!": "¡Recolecta huevos!",
|
||||||
"Get the flag to the enemy end zone.": "Lleva la bandera a la zona enemiga.",
|
"Get the flag to the enemy end zone.": "Lleva la bandera enemiga a tu zona.",
|
||||||
"How fast can you defeat the ninjas?": "¿Cuán rápido puedes derrotar a los ninjas?",
|
"How fast can you defeat the ninjas?": "¿Cuán rápido puedes derrotar a los ninjas?",
|
||||||
"Kill a set number of enemies to win.": "Elimina a un número determinado \nde enemigos para ganar.",
|
"Kill a set number of enemies to win.": "Elimina a un número determinado \nde enemigos para ganar.",
|
||||||
"Last one standing wins.": "El último de pie gana.",
|
"Last one standing wins.": "El último de pie gana.",
|
||||||
|
|
@ -1693,6 +1693,7 @@
|
||||||
"Max number of profiles reached.": "Número máximo de perfiles alcanzado.",
|
"Max number of profiles reached.": "Número máximo de perfiles alcanzado.",
|
||||||
"Maximum friend code rewards reached.": "Máximo de premios por códigos de amigos alcanzado.",
|
"Maximum friend code rewards reached.": "Máximo de premios por códigos de amigos alcanzado.",
|
||||||
"Message is too long.": "El Mensaje es muy largo.",
|
"Message is too long.": "El Mensaje es muy largo.",
|
||||||
|
"No servers are available. Please try again soon.": "Sin servidores disponibles. Por favor intenta después.",
|
||||||
"Profile \"${NAME}\" upgraded successfully.": "El perfil \"${NAME}\" se ha mejorado satisfactoriamente.",
|
"Profile \"${NAME}\" upgraded successfully.": "El perfil \"${NAME}\" se ha mejorado satisfactoriamente.",
|
||||||
"Profile could not be upgraded.": "El perfil no pudo ser mejorado.",
|
"Profile could not be upgraded.": "El perfil no pudo ser mejorado.",
|
||||||
"Purchase successful!": "¡Compra exitosa!",
|
"Purchase successful!": "¡Compra exitosa!",
|
||||||
|
|
@ -1702,6 +1703,7 @@
|
||||||
"Sorry, this code has already been used.": "Perdón, este código ya ha sido usado.",
|
"Sorry, this code has already been used.": "Perdón, este código ya ha sido usado.",
|
||||||
"Sorry, this code has expired.": "Perdón, este código ha expirado.",
|
"Sorry, this code has expired.": "Perdón, este código ha expirado.",
|
||||||
"Sorry, this code only works for new accounts.": "Este código solo sirve para cuentas nuevas.",
|
"Sorry, this code only works for new accounts.": "Este código solo sirve para cuentas nuevas.",
|
||||||
|
"Still searching for nearby servers; please try again soon.": "Todavía buscando por servidores cercanos; intente de nuevo más tarde.",
|
||||||
"Temporarily unavailable; please try again later.": "Temporalmente desactivado; por favor, inténtalo luego.",
|
"Temporarily unavailable; please try again later.": "Temporalmente desactivado; por favor, inténtalo luego.",
|
||||||
"The tournament ended before you finished.": "El torneo terminó antes de que terminaras.",
|
"The tournament ended before you finished.": "El torneo terminó antes de que terminaras.",
|
||||||
"This account cannot be unlinked for ${NUM} days.": "Esta cuenta no puede ser desenlazada por ${NUM} días.",
|
"This account cannot be unlinked for ${NUM} days.": "Esta cuenta no puede ser desenlazada por ${NUM} días.",
|
||||||
|
|
@ -1795,7 +1797,7 @@
|
||||||
"If someone picks you up, punch them and they'll let go.\nThis works in real life too.": "Si alguien te levanta, golpéalos y ve como te sueltan.\nTambién funciona en la vida real.",
|
"If someone picks you up, punch them and they'll let go.\nThis works in real life too.": "Si alguien te levanta, golpéalos y ve como te sueltan.\nTambién funciona en la vida real.",
|
||||||
"If you are short on controllers, install the '${REMOTE_APP_NAME}' app\non your mobile devices to use them as controllers.": "Si no tienes suficientes controles, instala la aplicación '${REMOTE_APP_NAME}'\nen tu teléfono celulares para utilizarlos como controles.",
|
"If you are short on controllers, install the '${REMOTE_APP_NAME}' app\non your mobile devices to use them as controllers.": "Si no tienes suficientes controles, instala la aplicación '${REMOTE_APP_NAME}'\nen tu teléfono celulares para utilizarlos como controles.",
|
||||||
"If you are short on controllers, install the 'BombSquad Remote' app\non your iOS or Android devices to use them as controllers.": "Te faltan controles? Instala la aplicación 'BombSquad Remote'\nen tu dispositivo iOS o Android para usarlo como control.",
|
"If you are short on controllers, install the 'BombSquad Remote' app\non your iOS or Android devices to use them as controllers.": "Te faltan controles? Instala la aplicación 'BombSquad Remote'\nen tu dispositivo iOS o Android para usarlo como control.",
|
||||||
"If you get a sticky-bomb stuck to you, jump around and spin in circles. You might\nshake the bomb off, or if nothing else your last moments will be entertaining.": "Si te adhieres a una bomba pegajosa, salta y da muchas vueltas. Es posible que sacudas\nla bomba pagada, o sin nada más, tus últimos momentos serán entretenidos.",
|
"If you get a sticky-bomb stuck to you, jump around and spin in circles. You might\nshake the bomb off, or if nothing else your last moments will be entertaining.": "Si te adhieres a una bomba pegajosa, salta y da muchas vueltas. Es posible que sacudas\nla bomba pegada, o sin nada más, tus últimos momentos serán entretenidos.",
|
||||||
"If you kill an enemy in one hit you get double points for it.": "Si eliminas a un enemigo de un golpe ganas doble puntos.",
|
"If you kill an enemy in one hit you get double points for it.": "Si eliminas a un enemigo de un golpe ganas doble puntos.",
|
||||||
"If you pick up a curse, your only hope for survival is to\nfind a health powerup in the next few seconds.": "Si levantas una maldición, tu única esperanza es\nencontrar una caja de salud en tus últimos segundos.",
|
"If you pick up a curse, your only hope for survival is to\nfind a health powerup in the next few seconds.": "Si levantas una maldición, tu única esperanza es\nencontrar una caja de salud en tus últimos segundos.",
|
||||||
"If you stay in one place, you're toast. Run and dodge to survive..": "Si te quedas quieto, estás perdido. Corre y esquiva para sobrevivir...",
|
"If you stay in one place, you're toast. Run and dodge to survive..": "Si te quedas quieto, estás perdido. Corre y esquiva para sobrevivir...",
|
||||||
|
|
|
||||||
53
dist/ba_data/data/languages/venetian.json
vendored
53
dist/ba_data/data/languages/venetian.json
vendored
|
|
@ -498,7 +498,7 @@
|
||||||
"additionalAudioArtIdeasText": "Soni adisionałi, gràfega inisiałe e idee de ${NAME}",
|
"additionalAudioArtIdeasText": "Soni adisionałi, gràfega inisiałe e idee de ${NAME}",
|
||||||
"additionalMusicFromText": "Mùzega adisionałe de ${NAME}",
|
"additionalMusicFromText": "Mùzega adisionałe de ${NAME}",
|
||||||
"allMyFamilyText": "ła me fameja e tuti i me amighi che i gà jutà a testar el zugo",
|
"allMyFamilyText": "ła me fameja e tuti i me amighi che i gà jutà a testar el zugo",
|
||||||
"codingGraphicsAudioText": "Tradusion in łengua veneta: Còdaze Veneto\nMail: codazeveneto@gmail.com - Telegram: @LenguaVeneta\n\nProgramasion, gràfega e àudio de ${NAME}",
|
"codingGraphicsAudioText": "Tradusion in łengua veneta: Còdaze Veneto\n Mail: codazeveneto@gmail.com - Telegram: @LenguaVeneta\n\nProgramasion, gràfega e àudio de ${NAME}",
|
||||||
"languageTranslationsText": "Tradusion inte cheł'altre łengue:",
|
"languageTranslationsText": "Tradusion inte cheł'altre łengue:",
|
||||||
"legalText": "Informasion łegałi:",
|
"legalText": "Informasion łegałi:",
|
||||||
"publicDomainMusicViaText": "Mùzega a dòparo pùblego de ${NAME}",
|
"publicDomainMusicViaText": "Mùzega a dòparo pùblego de ${NAME}",
|
||||||
|
|
@ -672,16 +672,23 @@
|
||||||
"appInviteSendACodeText": "Màndaghe un còdaze",
|
"appInviteSendACodeText": "Màndaghe un còdaze",
|
||||||
"appInviteTitleText": "Invido a proar ${APP_NAME}",
|
"appInviteTitleText": "Invido a proar ${APP_NAME}",
|
||||||
"bluetoothAndroidSupportText": "(el funsiona so tuti i dispozitivi Android co el bluetooth)",
|
"bluetoothAndroidSupportText": "(el funsiona so tuti i dispozitivi Android co el bluetooth)",
|
||||||
"bluetoothDescriptionText": "Òspita/zóntate inte un grupo co'l bluetooth:",
|
"bluetoothDescriptionText": "Òspita/zóntate so un grupo co'l bluetooth:",
|
||||||
"bluetoothHostText": "Òspita",
|
"bluetoothHostText": "Òspita",
|
||||||
"bluetoothJoinText": "Zóntate",
|
"bluetoothJoinText": "Zóntate",
|
||||||
"bluetoothText": "Bluetooth",
|
"bluetoothText": "Bluetooth",
|
||||||
"checkingText": "controło...",
|
"checkingText": "controło...",
|
||||||
|
"copyCodeConfirmText": "Còdaze copià inte łe note.",
|
||||||
|
"copyCodeText": "Copia còdaze",
|
||||||
"dedicatedServerInfoText": "Inposta un server dedegà par rezultài pì boni. Daghe un ocio so bombsquadgame.com/server par capir come far.",
|
"dedicatedServerInfoText": "Inposta un server dedegà par rezultài pì boni. Daghe un ocio so bombsquadgame.com/server par capir come far.",
|
||||||
"disconnectClientsText": "'Sta oparasion ła desconetarà ${COUNT} zugador/i\nda'l to grupo. Vutu ndar vanti?",
|
"disconnectClientsText": "'Sta oparasion ła desconetarà ${COUNT} zugador/i\nda'l to grupo. Vutu ndar vanti?",
|
||||||
"earnTicketsForRecommendingAmountText": "Se i provarà el zugo, i to amighi i resevarà ${COUNT} biłieti\n(e ti A te ghin resevarè ${YOU_COUNT} par caun de łori che'l ło dopararà)",
|
"earnTicketsForRecommendingAmountText": "Se i provarà el zugo, i to amighi i resevarà ${COUNT} biłieti\n(e ti A te ghin resevarè ${YOU_COUNT} par caun de łori che'l ło dopararà)",
|
||||||
"earnTicketsForRecommendingText": "Sparpagna el zugo par\nver biłieti gratùidi...",
|
"earnTicketsForRecommendingText": "Sparpagna el zugo par\nver biłieti gratùidi...",
|
||||||
"emailItText": "Màndeło par mail",
|
"emailItText": "Màndeło par mail",
|
||||||
|
"favoritesSaveText": "Salva inte i prefarìì",
|
||||||
|
"favoritesText": "Prefarìi",
|
||||||
|
"freeCloudServerAvailableMinutesText": "Server agratis tenpo ${MINUTES} menuti.",
|
||||||
|
"freeCloudServerAvailableNowText": "Disponìbiłe server agratis!",
|
||||||
|
"freeCloudServerNotAvailableText": "Gnaun server agratis disponìbiłe.",
|
||||||
"friendHasSentPromoCodeText": "Par ti ${COUNT} biłieti de ${APP_NAME} da ${NAME}!",
|
"friendHasSentPromoCodeText": "Par ti ${COUNT} biłieti de ${APP_NAME} da ${NAME}!",
|
||||||
"friendPromoCodeAwardText": "Tute łe 'olte che'l vegnarà doparà ti A te resevarè ${COUNT} biłieti.",
|
"friendPromoCodeAwardText": "Tute łe 'olte che'l vegnarà doparà ti A te resevarè ${COUNT} biłieti.",
|
||||||
"friendPromoCodeExpireText": "El còdaze el ze soło par i zugaduri novi e el terminarà tenpo ${EXPIRE_HOURS} ore.",
|
"friendPromoCodeExpireText": "El còdaze el ze soło par i zugaduri novi e el terminarà tenpo ${EXPIRE_HOURS} ore.",
|
||||||
|
|
@ -696,19 +703,21 @@
|
||||||
"googlePlaySeeInvitesText": "Mostra invidi",
|
"googlePlaySeeInvitesText": "Mostra invidi",
|
||||||
"googlePlayText": "Google Play",
|
"googlePlayText": "Google Play",
|
||||||
"googlePlayVersionOnlyText": "(soło inte ła varsion Android / Google Play)",
|
"googlePlayVersionOnlyText": "(soło inte ła varsion Android / Google Play)",
|
||||||
"hostPublicPartyDescriptionText": "Òspita un grupo pùblego:",
|
"hostPublicPartyDescriptionText": "Òspita un grupo pùblego",
|
||||||
|
"hostingUnavailableText": "Ospitamento mìa disponìbiłe",
|
||||||
"inDevelopmentWarningText": "Nota:\n\nEl zugo in rede ła ze na funsion nova e in dezviłupo.\nPar deso, A ze dalvero racomandà che tuti i\nzugadori i sie tuti so ła mèdema rede wifi.",
|
"inDevelopmentWarningText": "Nota:\n\nEl zugo in rede ła ze na funsion nova e in dezviłupo.\nPar deso, A ze dalvero racomandà che tuti i\nzugadori i sie tuti so ła mèdema rede wifi.",
|
||||||
"internetText": "Internet",
|
"internetText": "Internet",
|
||||||
"inviteAFriendText": "I to amighi zełi sensa zugo? Invìdełi a\nproarlo e i resevarà ${COUNT} biłieti gratùidi.",
|
"inviteAFriendText": "I to amighi zełi sensa zugo? Invìdełi a\nproarlo e i resevarà ${COUNT} biłieti gratùidi.",
|
||||||
"inviteFriendsText": "Invida amighi",
|
"inviteFriendsText": "Invida amighi",
|
||||||
"joinPublicPartyDescriptionText": "Zóntate inte un grupo pùblego:",
|
"joinPublicPartyDescriptionText": "Zóntate so un grupo pùblego",
|
||||||
"localNetworkDescriptionText": "Zóntate inte un grupo so ła to rede:",
|
"localNetworkDescriptionText": "Zóntate so un grupo łogałe (LAN, Bluetooth, evc.)",
|
||||||
"localNetworkText": "Rede łogałe",
|
"localNetworkText": "Rede łogałe",
|
||||||
"makePartyPrivateText": "Canbia el me grupo in privà",
|
"makePartyPrivateText": "Canbia el me grupo in privà",
|
||||||
"makePartyPublicText": "Canbia el me grupo in pùblego",
|
"makePartyPublicText": "Canbia el me grupo in pùblego",
|
||||||
"manualAddressText": "Ndariso",
|
"manualAddressText": "Ndariso",
|
||||||
"manualConnectText": "Coneti",
|
"manualConnectText": "Coneti",
|
||||||
"manualDescriptionText": "Zóntate inte un grupo par ndariso:",
|
"manualDescriptionText": "Zóntate inte un grupo par ndariso:",
|
||||||
|
"manualJoinSectionText": "Zóntate par ndariso",
|
||||||
"manualJoinableFromInternetText": "Pòsitu èsar catà da internet?:",
|
"manualJoinableFromInternetText": "Pòsitu èsar catà da internet?:",
|
||||||
"manualJoinableNoWithAsteriskText": "NÒ*",
|
"manualJoinableNoWithAsteriskText": "NÒ*",
|
||||||
"manualJoinableYesText": "SÌ",
|
"manualJoinableYesText": "SÌ",
|
||||||
|
|
@ -716,14 +725,17 @@
|
||||||
"manualText": "A man",
|
"manualText": "A man",
|
||||||
"manualYourAddressFromInternetText": "El to ndariso da internet:",
|
"manualYourAddressFromInternetText": "El to ndariso da internet:",
|
||||||
"manualYourLocalAddressText": "El to ndariso łogałe:",
|
"manualYourLocalAddressText": "El to ndariso łogałe:",
|
||||||
|
"nearbyText": "Łogałe",
|
||||||
"noConnectionText": "<gnauna conesion>",
|
"noConnectionText": "<gnauna conesion>",
|
||||||
"otherVersionsText": "(par altre varsion)",
|
"otherVersionsText": "(par altre varsion)",
|
||||||
"partyInviteAcceptText": "Bona",
|
"partyCodeText": "Còdaze de'l grupo",
|
||||||
"partyInviteDeclineText": "Anca nò",
|
"partyInviteAcceptText": "Và ben",
|
||||||
"partyInviteGooglePlayExtraText": "(varda el paneło 'Google Play' inte ła fenestra 'Gregasion')",
|
"partyInviteDeclineText": "Mìa deso",
|
||||||
|
"partyInviteGooglePlayExtraText": "(varda el paneło 'Google Play' inte ła fenestra 'Crea grupo')",
|
||||||
"partyInviteIgnoreText": "Ignora",
|
"partyInviteIgnoreText": "Ignora",
|
||||||
"partyInviteText": "A te ze rivà un invido de ${NAME}\npar zontarte inte'l só grupo!",
|
"partyInviteText": "A te ze rivà un invido de ${NAME}\npar zontarte inte'l só grupo!",
|
||||||
"partyNameText": "Nome grupo",
|
"partyNameText": "Nome grupo",
|
||||||
|
"partyServerRunningText": "Server pa'l grupo ativo.",
|
||||||
"partySizeText": "grandesa",
|
"partySizeText": "grandesa",
|
||||||
"partyStatusCheckingText": "Varìfega condision...",
|
"partyStatusCheckingText": "Varìfega condision...",
|
||||||
"partyStatusJoinableText": "deso el to grupo el połe èsar catà da internet",
|
"partyStatusJoinableText": "deso el to grupo el połe èsar catà da internet",
|
||||||
|
|
@ -732,15 +744,25 @@
|
||||||
"partyStatusNotPublicText": "el to grupo no'l ze miga pùblego",
|
"partyStatusNotPublicText": "el to grupo no'l ze miga pùblego",
|
||||||
"pingText": "łatensa",
|
"pingText": "łatensa",
|
||||||
"portText": "Porta",
|
"portText": "Porta",
|
||||||
|
"privatePartyCloudDescriptionText": "I grupi privài i funsiona so server dedegài: no serve miga configurar un router.",
|
||||||
|
"privatePartyHostText": "Òspida un grupo privà",
|
||||||
|
"privatePartyJoinText": "Zóntate so un grupo privà",
|
||||||
|
"privateText": "Privà",
|
||||||
|
"publicHostRouterConfigText": "Podarìa servir configurar na porta spesìfega so'l to router. Ospidar un grupo privà ze pì fàsiłe.",
|
||||||
|
"publicText": "Pùblego",
|
||||||
"requestingAPromoCodeText": "Drio far domanda de un còdaze...",
|
"requestingAPromoCodeText": "Drio far domanda de un còdaze...",
|
||||||
"sendDirectInvitesText": "Manda invidi dereti",
|
"sendDirectInvitesText": "Manda invidi direti",
|
||||||
"shareThisCodeWithFriendsText": "Sparpagna 'sto còdaze co i amighi:",
|
"shareThisCodeWithFriendsText": "Sparpagna 'sto còdaze co i amighi:",
|
||||||
"showMyAddressText": "Mostra el me ndariso",
|
"showMyAddressText": "Mostra el me ndariso",
|
||||||
"titleText": "Gregasion",
|
"startHostingPaidText": "Òspita suito par ${COST}",
|
||||||
"wifiDirectDescriptionBottomText": "Se tuti i dispozitivi i gà ła sesion 'Wifi dereto', i sarà boni de dopararlo par\ncatarse e conétarse infrà de łori. Na volta che tuti i dispozitivi i sarà conetesti,\nA te podarè crear grupi inte ła sesion 'Rede łogałe', cofà ła fuse na rede wifi normałe.\n\nPar rezultài pì boni, mejo che l’ospitador de’l wifi dereto el sipie l’òspite anca de’l grupo so ${APP_NAME}.",
|
"startHostingText": "Òspita",
|
||||||
"wifiDirectDescriptionTopText": "El Wifi dereto el połe èsar doparà par conétar deretamente dispozitivi Android\nsensa pasar par ła rede wifi. El funsiona mejo so varsion Android 4.2 o pì resenti.\n\nPar dopararlo, verzi łe inpostasion wifi e controła ła funsion 'Wifi dereto'.",
|
"startStopHostingMinutesText": "Te połi tacar o fermar de ospitar grupi łìbaramente par n'antri ${MINUTES} menuti.",
|
||||||
|
"stopHostingText": "Ferma ospitamento",
|
||||||
|
"titleText": "Crea grupo",
|
||||||
|
"wifiDirectDescriptionBottomText": "Se tuti i dispozitivi i gà ła sesion 'Wifi direto', i sarà boni de dopararlo par\ncatarse e conétarse infrà de łori. Na volta che tuti i dispozitivi i sarà conetesti,\nA te podarè crear grupi inte ła sesion 'Rede łogałe', cofà ła fuse na rede wifi normałe.\n\nPar rezultài pì boni, mejo che l’ospitador de’l wifi direto el sipie l’òspite anca de’l grupo so ${APP_NAME}.",
|
||||||
|
"wifiDirectDescriptionTopText": "El Wifi direto el połe èsar doparà par conétar diretamente dispozitivi Android\nsensa pasar par ła rede wifi. El funsiona mejo so varsion Android 4.2 o pì resenti.\n\nPar dopararlo, verzi łe inpostasion wifi e controła ła funsion 'Wifi direto'.",
|
||||||
"wifiDirectOpenWiFiSettingsText": "Verzi inpostasion wifi",
|
"wifiDirectOpenWiFiSettingsText": "Verzi inpostasion wifi",
|
||||||
"wifiDirectText": "Wifi dereto",
|
"wifiDirectText": "Wifi direto",
|
||||||
"worksBetweenAllPlatformsText": "(el funsiona intrà tute łe piataforme)",
|
"worksBetweenAllPlatformsText": "(el funsiona intrà tute łe piataforme)",
|
||||||
"worksWithGooglePlayDevicesText": "(el funsiona co tuti i dispozitivi co ła varsion de’l zugo de Google Play par Android)",
|
"worksWithGooglePlayDevicesText": "(el funsiona co tuti i dispozitivi co ła varsion de’l zugo de Google Play par Android)",
|
||||||
"youHaveBeenSentAPromoCodeText": "A te ze stà mandà un còdaze promosionałe de ${APP_NAME}:"
|
"youHaveBeenSentAPromoCodeText": "A te ze stà mandà un còdaze promosionałe de ${APP_NAME}:"
|
||||||
|
|
@ -1027,6 +1049,7 @@
|
||||||
"offText": "Dezativa",
|
"offText": "Dezativa",
|
||||||
"okText": "Và ben",
|
"okText": "Và ben",
|
||||||
"onText": "Ativa",
|
"onText": "Ativa",
|
||||||
|
"oneMomentText": "Un segondo...",
|
||||||
"onslaughtRespawnText": "Rejenerasion de ${PLAYER} inte l'ondada ${WAVE}",
|
"onslaughtRespawnText": "Rejenerasion de ${PLAYER} inte l'ondada ${WAVE}",
|
||||||
"orText": "${A} o ${B}",
|
"orText": "${A} o ${B}",
|
||||||
"otherText": "Altro...",
|
"otherText": "Altro...",
|
||||||
|
|
@ -1073,6 +1096,7 @@
|
||||||
"playerText": "Zugador",
|
"playerText": "Zugador",
|
||||||
"playlistNoValidGamesErrorText": "'Sta łista de zugo ła gà rento łevełi dezblocài mìa vàłidi.",
|
"playlistNoValidGamesErrorText": "'Sta łista de zugo ła gà rento łevełi dezblocài mìa vàłidi.",
|
||||||
"playlistNotFoundText": "łista de zugo mìa catada",
|
"playlistNotFoundText": "łista de zugo mìa catada",
|
||||||
|
"playlistText": "Łista de zugo",
|
||||||
"playlistsText": "Łiste de zugo",
|
"playlistsText": "Łiste de zugo",
|
||||||
"pleaseRateText": "Se ${APP_NAME} el ze drio piazerte, tote un àtemo par\nłasarghe zó na vałudasion o scrìvarghe zó un comento. 'Ste\nopinion łe tornarà còmode par dezviłupi fuduri de'l zugo.\n\ngrasie!\n-eric",
|
"pleaseRateText": "Se ${APP_NAME} el ze drio piazerte, tote un àtemo par\nłasarghe zó na vałudasion o scrìvarghe zó un comento. 'Ste\nopinion łe tornarà còmode par dezviłupi fuduri de'l zugo.\n\ngrasie!\n-eric",
|
||||||
"pleaseWaitText": "Speta n'àtemo...",
|
"pleaseWaitText": "Speta n'àtemo...",
|
||||||
|
|
@ -1201,7 +1225,7 @@
|
||||||
"enablePackageModsText": "Ativa pacheti mod łogałi",
|
"enablePackageModsText": "Ativa pacheti mod łogałi",
|
||||||
"enterPromoCodeText": "Insarisi còdaze",
|
"enterPromoCodeText": "Insarisi còdaze",
|
||||||
"forTestingText": "Nota: vałori vàłidi soło par proe. Sortendo da l'apl łi vegnarà perdesti.",
|
"forTestingText": "Nota: vałori vàłidi soło par proe. Sortendo da l'apl łi vegnarà perdesti.",
|
||||||
"helpTranslateText": "Łe tradusion de ${APP_NAME} łe ze curàe da vołontari.\nSe A te vol darghe na ociada a cheła veneta, struca so'l boton\ncuà soto. Curada da Veneto Còdaze: codazeveneto@gmail.com",
|
"helpTranslateText": "Łe tradusion de ${APP_NAME} łe ze curàe da vołontari.\nSe A te vol darghe na ociada a cheła veneta, struca so'l boton\ncuà soto. Curada da Còdaze Veneto: codazeveneto@gmail.com",
|
||||||
"kickIdlePlayersText": "Para vìa zugadori in sonera",
|
"kickIdlePlayersText": "Para vìa zugadori in sonera",
|
||||||
"kidFriendlyModeText": "Modałidà bocia (viołensa reduzesta, evc)",
|
"kidFriendlyModeText": "Modałidà bocia (viołensa reduzesta, evc)",
|
||||||
"languageText": "Łengua",
|
"languageText": "Łengua",
|
||||||
|
|
@ -1573,6 +1597,7 @@
|
||||||
"The tournament ended before you finished.": "El tornèo el ze terminà prima che te ghesi fenìo.",
|
"The tournament ended before you finished.": "El tornèo el ze terminà prima che te ghesi fenìo.",
|
||||||
"This account cannot be unlinked for ${NUM} days.": "'Sto account no'l połe mìa èsar descołegà prima de ${NUM} dì.",
|
"This account cannot be unlinked for ${NUM} days.": "'Sto account no'l połe mìa èsar descołegà prima de ${NUM} dì.",
|
||||||
"This code cannot be used on the account that created it.": "'Sto còdaze no'l połe mìa èsar doparà inte l'account che'l ło gà creà.",
|
"This code cannot be used on the account that created it.": "'Sto còdaze no'l połe mìa èsar doparà inte l'account che'l ło gà creà.",
|
||||||
|
"This is currently unavailable; please try again later.": "Par deso, funsion miga disponìbiłe. Proa danovo pì tardi.",
|
||||||
"This requires version ${VERSION} or newer.": "A ghe serve ła varsion ${VERSION} o una pì nova.",
|
"This requires version ${VERSION} or newer.": "A ghe serve ła varsion ${VERSION} o una pì nova.",
|
||||||
"Tournaments disabled due to rooted device.": "Tornèi dezativài parvìa de'l dispozitivo co'l root.",
|
"Tournaments disabled due to rooted device.": "Tornèi dezativài parvìa de'l dispozitivo co'l root.",
|
||||||
"Tournaments require ${VERSION} or newer": "Par i tornèi A serve ła varsion ${VERSION} o una pì resente",
|
"Tournaments require ${VERSION} or newer": "Par i tornèi A serve ła varsion ${VERSION} o una pì resente",
|
||||||
|
|
|
||||||
20
dist/ba_data/data/languages/vietnamese.json
vendored
20
dist/ba_data/data/languages/vietnamese.json
vendored
|
|
@ -637,6 +637,7 @@
|
||||||
"titleFolderText": "Chọn thư mục",
|
"titleFolderText": "Chọn thư mục",
|
||||||
"useThisFolderButtonText": "Sử dụng thư mục này"
|
"useThisFolderButtonText": "Sử dụng thư mục này"
|
||||||
},
|
},
|
||||||
|
"filterText": "Bộ lọc",
|
||||||
"finalScoreText": "Điểm hoàn thành",
|
"finalScoreText": "Điểm hoàn thành",
|
||||||
"finalScoresText": "Điểm cuối cùng",
|
"finalScoresText": "Điểm cuối cùng",
|
||||||
"finalTimeText": "Thời gian hoàn thành",
|
"finalTimeText": "Thời gian hoàn thành",
|
||||||
|
|
@ -682,11 +683,18 @@
|
||||||
"bluetoothJoinText": "Vào qua bluetooth",
|
"bluetoothJoinText": "Vào qua bluetooth",
|
||||||
"bluetoothText": "Bluetooth",
|
"bluetoothText": "Bluetooth",
|
||||||
"checkingText": "Đang kiểm tra...",
|
"checkingText": "Đang kiểm tra...",
|
||||||
|
"copyCodeConfirmText": "Mã đã sao chép vào bộ nhớ",
|
||||||
|
"copyCodeText": "Sao chép mã",
|
||||||
"dedicatedServerInfoText": "Để có kết quả tốt nhất, hãy thiết lập một máy chủ chuyên dụng.Vào bombsquadgame.com/server để tìm hiểu cách.",
|
"dedicatedServerInfoText": "Để có kết quả tốt nhất, hãy thiết lập một máy chủ chuyên dụng.Vào bombsquadgame.com/server để tìm hiểu cách.",
|
||||||
"disconnectClientsText": "Điều này sẽ ngắt kết nối (các) người chơi ${COUNT}\n trong tổ đội của bạn.Bạn có chắc không?",
|
"disconnectClientsText": "Điều này sẽ ngắt kết nối (các) người chơi ${COUNT}\n trong tổ đội của bạn.Bạn có chắc không?",
|
||||||
"earnTicketsForRecommendingAmountText": "Bạn bè sẽ nhận được vé ${COUNT} nếu họ thử trò chơi\n (và bạn sẽ nhận được ${YOU_COUNT} cho mỗi người làm)",
|
"earnTicketsForRecommendingAmountText": "Bạn bè sẽ nhận được vé ${COUNT} nếu họ thử trò chơi\n (và bạn sẽ nhận được ${YOU_COUNT} cho mỗi người làm)",
|
||||||
"earnTicketsForRecommendingText": "Chia sẻ trò chơi này với bạn bè\nđể có thêm vé miễn phí...",
|
"earnTicketsForRecommendingText": "Chia sẻ trò chơi này với bạn bè\nđể có thêm vé miễn phí...",
|
||||||
"emailItText": "Gửi nó",
|
"emailItText": "Gửi nó",
|
||||||
|
"favoritesSaveText": "Lưu thành Yêu Thích",
|
||||||
|
"favoritesText": "Yêu Thích",
|
||||||
|
"freeCloudServerAvailableMinutesText": "Máy chủ trên mây miễn phí sẽ có trong ${MINUTES} phút. Dịch bởi ShockedGaming",
|
||||||
|
"freeCloudServerAvailableNowText": "Máy chủ miễn phí trên mây đã có sẵn!",
|
||||||
|
"freeCloudServerNotAvailableText": "Không có máy chủ trên mây có sẵn",
|
||||||
"friendHasSentPromoCodeText": "${COUNT} ${APP_NAME} vé từ ${NAME}",
|
"friendHasSentPromoCodeText": "${COUNT} ${APP_NAME} vé từ ${NAME}",
|
||||||
"friendPromoCodeAwardText": "Bạn sẽ nhận được ${COUNT} vé mỗi lần nó được sử dụng",
|
"friendPromoCodeAwardText": "Bạn sẽ nhận được ${COUNT} vé mỗi lần nó được sử dụng",
|
||||||
"friendPromoCodeExpireText": "Mã code sẽ hết hạn trong ${EXPIRE_HOURS} và chỉ hoạt động với người chơi mới.",
|
"friendPromoCodeExpireText": "Mã code sẽ hết hạn trong ${EXPIRE_HOURS} và chỉ hoạt động với người chơi mới.",
|
||||||
|
|
@ -701,19 +709,21 @@
|
||||||
"googlePlaySeeInvitesText": "Xem lời mời",
|
"googlePlaySeeInvitesText": "Xem lời mời",
|
||||||
"googlePlayText": "Google Play",
|
"googlePlayText": "Google Play",
|
||||||
"googlePlayVersionOnlyText": "(Phiên bản Android / Google Play)",
|
"googlePlayVersionOnlyText": "(Phiên bản Android / Google Play)",
|
||||||
"hostPublicPartyDescriptionText": "Tổ chức một tổ đội công cộng:",
|
"hostPublicPartyDescriptionText": "Làm chủ phòng công khai",
|
||||||
|
"hostingUnavailableText": "Làm chủ phòng không còn khả dụng",
|
||||||
"inDevelopmentWarningText": "Ghi chú:\n\n Chơi mạng là một tính năng mới và vẫn đang phát triển.\n Hiện tại, rất khuyến khích tất cả\n Người chơi ở trên cùng một mạng Wi-Fi.",
|
"inDevelopmentWarningText": "Ghi chú:\n\n Chơi mạng là một tính năng mới và vẫn đang phát triển.\n Hiện tại, rất khuyến khích tất cả\n Người chơi ở trên cùng một mạng Wi-Fi.",
|
||||||
"internetText": "Internet",
|
"internetText": "Internet",
|
||||||
"inviteAFriendText": "Bạn bè không có game này? Mời họ để\nthử nó và họ sẽ nhận được ${COUNT} tickets miễn phí",
|
"inviteAFriendText": "Bạn bè không có game này? Mời họ để\nthử nó và họ sẽ nhận được ${COUNT} tickets miễn phí",
|
||||||
"inviteFriendsText": "Mời bạn bè",
|
"inviteFriendsText": "Mời bạn bè",
|
||||||
"joinPublicPartyDescriptionText": "Tham gia một bữa tiệc công cộng:",
|
"joinPublicPartyDescriptionText": "Tham gia một phòng công khai",
|
||||||
"localNetworkDescriptionText": "Tham gia một bữa tiệc trên mạng của bạn:",
|
"localNetworkDescriptionText": "Tham gia một phòng lân cận (LAN, Bluetooth, v.v.)",
|
||||||
"localNetworkText": "Mạng nội bộ",
|
"localNetworkText": "Mạng nội bộ",
|
||||||
"makePartyPrivateText": "Làm cho bữa tiệc của tôi riêng tư",
|
"makePartyPrivateText": "Làm cho bữa tiệc của tôi riêng tư",
|
||||||
"makePartyPublicText": "Công khai bữa tiệc của tôi",
|
"makePartyPublicText": "Công khai bữa tiệc của tôi",
|
||||||
"manualAddressText": "Địa chỉ",
|
"manualAddressText": "Địa chỉ",
|
||||||
"manualConnectText": "Kết nối",
|
"manualConnectText": "Kết nối",
|
||||||
"manualDescriptionText": "Vào một party bằng địa chỉ IP:",
|
"manualDescriptionText": "Vào một party bằng địa chỉ IP:",
|
||||||
|
"manualJoinSectionText": "Tham gia bằng địa chỉ",
|
||||||
"manualJoinableFromInternetText": "Bạn có thể dược tham gia từ internet?:",
|
"manualJoinableFromInternetText": "Bạn có thể dược tham gia từ internet?:",
|
||||||
"manualJoinableNoWithAsteriskText": "KHÔNG*",
|
"manualJoinableNoWithAsteriskText": "KHÔNG*",
|
||||||
"manualJoinableYesText": "CÓ",
|
"manualJoinableYesText": "CÓ",
|
||||||
|
|
@ -721,14 +731,17 @@
|
||||||
"manualText": "Tự chọn",
|
"manualText": "Tự chọn",
|
||||||
"manualYourAddressFromInternetText": "Địa chỉ IP của bạn ở trên internet:",
|
"manualYourAddressFromInternetText": "Địa chỉ IP của bạn ở trên internet:",
|
||||||
"manualYourLocalAddressText": "Địa chỉ nội bộ:",
|
"manualYourLocalAddressText": "Địa chỉ nội bộ:",
|
||||||
|
"nearbyText": "Gần nhất",
|
||||||
"noConnectionText": "(không có kết nối)",
|
"noConnectionText": "(không có kết nối)",
|
||||||
"otherVersionsText": "(phiên bản khác)",
|
"otherVersionsText": "(phiên bản khác)",
|
||||||
|
"partyCodeText": "Mã phòng",
|
||||||
"partyInviteAcceptText": "Chấp nhận",
|
"partyInviteAcceptText": "Chấp nhận",
|
||||||
"partyInviteDeclineText": "Từ chối",
|
"partyInviteDeclineText": "Từ chối",
|
||||||
"partyInviteGooglePlayExtraText": "(Ở bảng 'Google Play' trong 'Nhiều Người')",
|
"partyInviteGooglePlayExtraText": "(Ở bảng 'Google Play' trong 'Nhiều Người')",
|
||||||
"partyInviteIgnoreText": "Bỏ qua",
|
"partyInviteIgnoreText": "Bỏ qua",
|
||||||
"partyInviteText": "${NAME} đã mời bạn\nvào party của họ!",
|
"partyInviteText": "${NAME} đã mời bạn\nvào party của họ!",
|
||||||
"partyNameText": "Tên Phòng",
|
"partyNameText": "Tên Phòng",
|
||||||
|
"partyServerRunningText": "Máy chủ phòng của bạn đang chạy",
|
||||||
"partySizeText": "kích cỡ tiệc",
|
"partySizeText": "kích cỡ tiệc",
|
||||||
"partyStatusCheckingText": "Kiểm tra trạng thái...",
|
"partyStatusCheckingText": "Kiểm tra trạng thái...",
|
||||||
"partyStatusJoinableText": "Phòng của bạn có thể tham gia",
|
"partyStatusJoinableText": "Phòng của bạn có thể tham gia",
|
||||||
|
|
@ -737,6 +750,7 @@
|
||||||
"partyStatusNotPublicText": "phòng của bạn không thể tham gia",
|
"partyStatusNotPublicText": "phòng của bạn không thể tham gia",
|
||||||
"pingText": "ping",
|
"pingText": "ping",
|
||||||
"portText": "Cổng",
|
"portText": "Cổng",
|
||||||
|
"privatePartyCloudDescriptionText": "Các phòng riêng chạy trên các máy chủ trên mây chuyên dụng; không cần cấu hình bộ định tuyến",
|
||||||
"requestingAPromoCodeText": "Yêu cầu mã...",
|
"requestingAPromoCodeText": "Yêu cầu mã...",
|
||||||
"sendDirectInvitesText": "Gửi trực tiếp lời mời",
|
"sendDirectInvitesText": "Gửi trực tiếp lời mời",
|
||||||
"shareThisCodeWithFriendsText": "Chia sẻ mã này với bạn bè:",
|
"shareThisCodeWithFriendsText": "Chia sẻ mã này với bạn bè:",
|
||||||
|
|
|
||||||
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/__init__.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/__init__.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/composer.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/composer.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/constructor.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/constructor.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/cyaml.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/cyaml.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/dumper.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/dumper.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/emitter.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/emitter.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/error.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/error.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/events.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/events.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/loader.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/loader.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/nodes.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/nodes.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/parser.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/parser.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/reader.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/reader.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/representer.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/representer.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/resolver.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/resolver.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/scanner.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/scanner.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/serializer.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/serializer.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/tokens.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python-site-packages/yaml/__pycache__/tokens.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/__init__.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/__init__.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_account.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_account.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_achievement.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_achievement.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_activity.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_activity.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_activitytypes.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_activitytypes.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_actor.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_actor.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_ads.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_ads.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_analytics.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_analytics.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_app.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_app.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_appconfig.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_appconfig.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_appdelegate.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_appdelegate.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_appmode.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_appmode.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_apputils.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_apputils.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_assetmanager.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_assetmanager.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_benchmark.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_benchmark.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_campaign.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_campaign.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_collision.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_collision.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_coopgame.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_coopgame.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_coopsession.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_coopsession.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_dependency.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_dependency.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_dualteamsession.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_dualteamsession.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_enums.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_enums.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_error.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_error.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_freeforallsession.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_freeforallsession.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_gameactivity.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_gameactivity.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_gameresults.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_gameresults.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_gameutils.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_gameutils.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_general.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_general.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_hooks.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_hooks.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_input.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_input.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_keyboard.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_keyboard.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_language.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_language.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_level.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_level.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_lobby.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_lobby.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_map.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_map.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_math.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_math.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_messages.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_messages.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_meta.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_meta.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_multiteamsession.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_multiteamsession.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_music.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_music.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_net.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_net.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_nodeactor.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_nodeactor.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_player.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_player.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_playlist.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_playlist.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_plugin.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_plugin.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_powerup.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_powerup.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_profile.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_profile.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_score.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_score.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_servermode.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_servermode.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_session.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_session.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_settings.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_settings.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_stats.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_stats.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_store.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_store.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_team.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_team.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_teamgame.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_teamgame.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_tips.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_tips.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_tournament.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_tournament.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/_ui.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/_ui.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/deprecated.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/deprecated.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/internal.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/internal.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_data/python/ba/__pycache__/macmusicapp.cpython-38.opt-1.pyc
vendored
Normal file
BIN
dist/ba_data/python/ba/__pycache__/macmusicapp.cpython-38.opt-1.pyc
vendored
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue