Compare commits

..

No commits in common. "73c9e8ecb7ca679bf2929abff6589fd485f749db" and "774a8bea2b5f2f42c0358076fd5e646bd9947380" have entirely different histories.

5 changed files with 33 additions and 33 deletions

View file

@ -1,30 +1,30 @@
{ {
"loading_screen_start": "Запуск ArmCord…", "loading_screen_start": "Starting ArmCord…",
"loading_screen_offline": "Видимо, вы не в сети. Подключитесь к Интернету и повторите попытку.", "loading_screen_offline": "You appear to be offline. Please connect to the Internet and try again.",
"loading_screen_update": "Доступна новая версия ArmCord. Обновите до последней версии.", "loading_screen_update": "A new version of ArmCord is available. Please update to the latest version.",
"setup_question1": "Выберите, какую настройку хотите выполнить:", "setup_question1": "Select what kind of setup you want to perform:",
"setup_question1_answer1": "Экспресс-настройка", "setup_question1_answer1": "Express Setup",
"setup_question1_answer2": "Полная настройка", "setup_question1_answer2": "Full Setup",
"setup_offline": "Видимо, вы не в сети. Подключитесь к Интернету и перезапустите ArmCord.", "setup_offline": "You appear to be offline. Please connect to the internet and restart ArmCord.",
"setup_question2": "Выберите свой канал/экземпляр Discord:", "setup_question2": "Choose your Discord channel/instance:",
"setup_question3": "Должен ли ArmCord заниматься установкой клиентских модов?", "setup_question3": "Should ArmCord handle client mods installation?",
"yes": "Да", "yes": "Yes",
"no": "Нет", "no": "No",
"next": "Далее", "next": "Next",
"setup_question4": "Выберите клиентский мод, который хотите установить:", "setup_question4": "Select a client mod you want to install:",
"setup_question4_clientmodnotice": "Почему не все? Наличие множества клиентских модов одновременно может вызвать проблемы. Если вы действительно хотите это сделать, посетите наш Discord.", "setup_question4_clientmodnotice": "Why not all of them? Having many client mods at the same time can cause issues. If you really want to do it though, check our Discord.",
"settings-theme": "Тема ArmCord:", "settings-theme": "ArmCord theme:",
"settings-theme-default": "По умолчанию", "settings-theme-default": "Default",
"settings-theme-native": "Нативная", "settings-theme-native": "Native",
"settings-tray": "Свернуть в область уведомлений", "settings-tray": "Minimize to tray",
"settings-patches": "Автоматические патчи", "settings-patches": "Automatic Patches",
"settings-channel": "Канал Discord:", "settings-channel": "Discord channel:",
"settings-invitewebsocket": "Пригласить Websocket", "settings-invitewebsocket": "Invite Websocket",
"settings-mod": "Клиентский мод:", "settings-mod": "Client mod:",
"settings-prfmMode": "Режим производительности:", "settings-prfmMode": "Performance mode:",
"settings-prfmMode-performance": "Производительность", "settings-prfmMode-performance": "Performance",
"settings-prfmMode-battery": "Батарея", "settings-prfmMode-battery": "Battery",
"settings-none": "Ничего", "settings-none": "None",
"settings-save": "Сохранить настройки", "settings-save": "Save Settings",
"settings-updater": "Проверить наличие обновлений" "settings-updater": "Check for updates"
} }

View file

@ -38,7 +38,7 @@ SOFTWARE.*/
font-family: Whitney; font-family: Whitney;
font-weight: 400; font-weight: 400;
font-style: normal; font-style: normal;
src: url(https://armcord.xyz/whitney_400.woff) format("woff"); src: url(https://armcord.smartfridge.space/whitney_400.woff) format("woff");
} }
html, html,

View file

@ -16,7 +16,7 @@
font-family: Whitney; font-family: Whitney;
font-weight: 400; font-weight: 400;
font-style: normal; font-style: normal;
src: url(https://armcord.xyz/whitney_400.woff) format("woff"); src: url(https://armcord.smartfridge.space/whitney_400.woff) format("woff");
} }
html, html,

View file

@ -31,7 +31,7 @@ SOFTWARE.*/
font-family: Whitney; font-family: Whitney;
font-weight: 400; font-weight: 400;
font-style: normal; font-style: normal;
src: url(https://armcord.xyz/whitney_400.woff) format("woff"); src: url(https://armcord.smartfridge.space/whitney_400.woff) format("woff");
} }
html, html,

View file

@ -18,7 +18,7 @@
<body> <body>
<div class="container"> <div class="container">
<video autoplay loop class="logo" id="splashscreen-armcord"> <video autoplay loop class="logo" id="splashscreen-armcord">
<source src="https://armcord.xyz/discord_loading.webm" type="video/webm" /> <source src="https://armcord.smartfridge.space/discord_loading.webm" type="video/webm" />
</video> </video>
<p id="text-splashscreen"></p> <p id="text-splashscreen"></p>
</div> </div>
@ -38,7 +38,7 @@
if (data.version !== window.armcord.version) { if (data.version !== window.armcord.version) {
var elem = document.createElement("img"); var elem = document.createElement("img");
elem.classList.add("logo"); elem.classList.add("logo");
elem.src = "https://armcord.xyz/update.webp"; elem.src = "https://armcord.smartfridge.space/update.webp";
document.body.prepend(elem); document.body.prepend(elem);
document.getElementById("splashscreen-armcord").remove(); document.getElementById("splashscreen-armcord").remove();
text.innerHTML = await armcord.getLang("loading_screen_update"); text.innerHTML = await armcord.getLang("loading_screen_update");