1 Commits
beta ... beta

Author SHA1 Message Date
c60cf79a72 Update README.md 2025-12-28 17:46:36 +00:00
1034 changed files with 60639 additions and 88601 deletions

View File

@@ -1,6 +1,6 @@
name: 👥 Bug with Modrinth Hosting
description: For issues with a Modrinth Hosting product.
labels: [hosting]
name: 👥 Bug with Modrinth Servers
description: For issues with a Modrinth Servers product.
labels: [servers]
type: 'bug'
body:
- type: checkboxes

View File

@@ -2,7 +2,7 @@
applyTo: '**/*.vue'
---
You are given a Nuxt/Vue single-file component (.vue). Your task is to convert every hard-coded natural-language string in the <template> into our localization system using vue-i18n with utilities from `@modrinth/ui`.
You are given a Nuxt/Vue single-file component (.vue). Your task is to convert every hard-coded natural-language string in the <template> into our localization system using @vintl/vintl-nuxt (which wraps FormatJS).
Please follow these rules precisely:
@@ -13,53 +13,40 @@ Please follow these rules precisely:
2. Create message definitions
- In the <script setup> block, import `defineMessage` or `defineMessages` from `@modrinth/ui`.
- In the <script setup> block, import `defineMessage` or `defineMessages` from `@vintl/vintl`.
- For each extracted string, define a message with a unique `id` (use a descriptive prefix based on the component path, e.g. `auth.welcome.long-title`) and a `defaultMessage` equal to the original English string.
Example:
const messages = defineMessages({
welcomeTitle: { id: 'auth.welcome.title', defaultMessage: 'Welcome' },
welcomeDescription: { id: 'auth.welcome.description', defaultMessage: 'You're now part of the community…' },
welcomeDescription: { id: 'auth.welcome.description', defaultMessage: 'Youre now part of the community…' },
})
3. Handle variables and ICU formats
- Replace dynamic parts with ICU placeholders: "Hello, ${user.name}!" → `{name}` and defaultMessage: 'Hello, {name}!'
- For numbers/dates/times, use ICU options (e.g., currency): `{price, number, ::currency/USD}`
- For numbers/dates/times, use ICU/FormatJS options (e.g., currency): `{price, number, ::currency/USD}`
- For plurals/selects, use ICU: `'{count, plural, one {# message} other {# messages}}'`
4. Rich-text messages (links/markup)
- In `defaultMessage`, wrap link/markup ranges with tags, e.g.:
"By creating an account, you agree to our <terms-link>Terms</terms-link> and <privacy-link>Privacy Policy</privacy-link>."
- Render rich-text messages with `<IntlFormatted>` from `@modrinth/ui` using named slots:
<IntlFormatted :message-id="messages.tosLabel">
<template #terms-link="{ children }">
<NuxtLink to="/terms">
<component :is="() => children" />
</NuxtLink>
</template>
<template #privacy-link="{ children }">
<NuxtLink to="/privacy">
<component :is="() => children" />
</NuxtLink>
</template>
</IntlFormatted>
- For simple emphasis: `'Welcome to <strong>Modrinth</strong>!'` with a slot:
<template #strong="{ children }">
<strong><component :is="() => children" /></strong>
</template>
- For more complex child handling, use `normalizeChildren` from `@modrinth/ui`:
<template #bold="{ children }">
<strong><component :is="() => normalizeChildren(children)" /></strong>
</template>
- Render rich-text messages with `<IntlFormatted>` from `@vintl/vintl/components` and map tags via `values`:
<IntlFormatted
:message="messages.tosLabel"
:values="{
'terms-link': (chunks) => <NuxtLink to='/terms'>{chunks}</NuxtLink>,
'privacy-link': (chunks) => <NuxtLink to='/privacy'>{chunks}</NuxtLink>,
}"
/>
- For simple emphasis: `'Welcome to <strong>Modrinth</strong>!'` and map `'strong': (c) => <strong>{c}</strong>`
5. Formatting in templates
- Import and use `useVIntl()` from `@modrinth/ui`; prefer `formatMessage` for simple strings:
- Import and use `useVIntl()`; prefer `formatMessage` for simple strings:
`const { formatMessage } = useVIntl()`
`<button>{{ formatMessage(messages.welcomeTitle) }}</button>`
- Pass variables as a second argument:
`{{ formatMessage(messages.greeting, { name: user.name }) }}`
- Vue methods like `$formatMessage`, `$formatNumber`, `$formatDate` are also available if needed.
6. Naming conventions and id stability
@@ -71,8 +58,7 @@ Please follow these rules precisely:
8. Update imports and remove literals
- Ensure imports from `@modrinth/ui` are present: `defineMessage`/`defineMessages`, `useVIntl`, `IntlFormatted`, and optionally `normalizeChildren`.
- Replace all hard-coded strings with `formatMessage(...)` or `<IntlFormatted>` and remove the literals.
- Ensure imports for `defineMessage`/`defineMessages`, `useVIntl`, and `<IntlFormatted>` are present. Replace all hard-coded strings with `formatMessage(...)` or `<IntlFormatted>` and remove the literals.
9. Preserve functionality

View File

@@ -1,3 +0,0 @@
# Copying
Modrinth's Github workflows are licensed under the MIT License, which is provided in the file [LICENSE](./LICENSE).

View File

@@ -1,7 +0,0 @@
Copyright 2025 Rinth, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

8
.gitignore vendored
View File

@@ -68,11 +68,3 @@ app-playground-data/*
# labrinth demo fixtures
apps/labrinth/fixtures/demo
*storybook.log
storybook-static
.wrangler/
# frontend robots.txt
apps/frontend/src/public/robots.txt

5
.idea/code.iml generated
View File

@@ -12,11 +12,6 @@
<sourceFolder url="file://$MODULE_DIR$/packages/app-lib/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/packages/ariadne/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/packages/path-util/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/packages/modrinth-log/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/packages/modrinth-maxmind/examples" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/packages/modrinth-maxmind/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/packages/modrinth-util/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/packages/muralpay/src" isTestSource="false" />
<excludeFolder url="file://$MODULE_DIR$/target" />
</content>
<orderEntry type="inheritedJdk" />

View File

@@ -13,7 +13,7 @@
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"

View File

@@ -16,13 +16,13 @@ Both have access to our dependency injection framework, examples as seen in `pac
### Website (apps/frontend)
Before a pull request can be opened for the website, run `pnpm prepr:frontend:web` from the root folder, otherwise CI will fail.
Before a pull request can be opened for the website, `pnpm web:fix` and `pnpm web:intl:extract` must be run, otherwise CI will fail.
To run a development version of the frontend, you must first copy over the relevant `.env` template file (prod, staging or local, usually prod) within the `apps/frontend` folder into `apps/frontend/.env`. Then you can run the frontend by running `pnpm web:dev` in the root folder.
### App Frontend (apps/app-frontend)
Before a pull request can be opened for the app frontend, run `pnpm prepr:frontend:app` from the root folder, otherwise CI will fail.
Before a pull request can be opened for the website, you must CD into the `app-frontend` folder; `pnpm fix` and `pnpm intl:extract` must be run, otherwise CI will fail.
To run a development version of the app frontend, you must first copy over the relevant `.env` template file (prod, staging or local, usually prod) within `packages/app-lib` into `packages/app-lib/.env`. Then you must run the app itself by running `pnpm app:dev` in the root folder.
@@ -56,7 +56,7 @@ Use `docker exec labrinth-clickhouse clickhouse-client` to access the Clickhouse
### Postgres
Use `docker exec labrinth-postgres psql -U labrinth -d labrinth -c "SELECT 1"` to access the PostgreSQL instance, replacing the `SELECT 1` with your query.
Use `docker exec labrinth-postgres psql -U postgres` to access the PostgreSQL instance.
# Guidelines

View File

@@ -8,14 +8,10 @@ For detailed information, consult each package's COPYING.md, LICENSE.txt, or LIC
The use of Modrinth branding elements, including but not limited to the wrench-in-labyrinth logo, the landing image, and any variations thereof, is strictly prohibited without explicit written permission from Rinth, Inc. This includes trademarks, logos, or other branding elements.
> All rights reserved. © 2020-2025 Rinth, Inc.
> All rights reserved. © 2020-2024 Rinth, Inc.
This includes, but may not be limited to, the following files:
- .idea/icon.svg
- .github/api_cover.png
- .github/app_cover.png
- .github/monorepo_cover.png
- .github/web_cover.png
If you fork this repository, you must remove all Modrinth branding assets from your fork.

1629
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -8,7 +8,6 @@ members = [
"packages/app-lib",
"packages/ariadne",
"packages/daedalus",
"packages/modrinth-log",
"packages/modrinth-maxmind",
"packages/modrinth-util",
"packages/path-util",
@@ -108,7 +107,7 @@ lettre = { version = "0.11.19", default-features = false, features = [
] }
maxminddb = "0.26.0"
meilisearch-sdk = { version = "0.30.0", default-features = false }
modrinth-log = { path = "packages/modrinth-log" }
modrinth-maxmind = { path = "packages/modrinth-maxmind" }
modrinth-util = { path = "packages/modrinth-util" }
muralpay = { path = "packages/muralpay" }
murmur2 = "0.1.0"
@@ -116,7 +115,6 @@ native-dialog = "0.9.2"
notify = { version = "8.2.0", default-features = false }
notify-debouncer-mini = { version = "0.7.0", default-features = false }
p256 = "0.13.2"
parking_lot = "0.12.5"
paste = "1.0.15"
path-util = { path = "packages/path-util" }
phf = { version = "0.13.1", features = ["macros"] }
@@ -151,6 +149,7 @@ sentry = { version = "0.45.0", default-features = false, features = [
"reqwest",
"rustls",
] }
sentry-actix = "0.45.0"
serde = "1.0.228"
serde_bytes = "0.11.19"
serde_cbor = "0.11.2"
@@ -239,7 +238,7 @@ manual_assert = "warn"
manual_instant_elapsed = "warn"
manual_is_variant_and = "warn"
manual_let_else = "warn"
map_unwrap_or = "allow"
map_unwrap_or = "warn"
match_bool = "warn"
needless_collect = "warn"
negative_feature_names = "warn"

122
README.md
View File

@@ -1,119 +1,11 @@
# 📘 Navigation
RocketMC
- [🔧 Install Instructions](#install-instructions)
- [✨ Features](#features)
- [🚀 Getting Started](#getting-started)
- [⚠️ Disclaimer](#disclaimer)
- [💰 Donate](#support-our-project-crypto-wallets)
Based on AstralRinth
https://github.com/AstralRinth
## Other languages
> [Русский](readme/ru_ru/README.md)
AstralRinth is based on MultiMC
Copyright © MultiMC Contributors
## Support channel
> [Telegram](https://me.astralium.su/ref/telegram_channel)
RocketMC modifications © 2025 Pernoise
---
# About Project
## **AstralRinth • Empowering Your Minecraft Experience**
**AstralRinth** — a powerful fork of Modrinth, reimagined to enhance your Minecraft journey. Whether you're a GUI enthusiast or a developer building with Modrinths API, **Theseus Core** is your launchpad into a new era of Minecraft gameplay.
## **About the Software**
**AstralRinth** is a dedicated branch of the Modrinth (a.k.a Theseus) project, focused on **offline authentication**, offering you more flexibility and control. Play Minecraft without the need for constant online verification — a user-first approach to modern modded gaming.
---
# Install Instructions
To install the launcher:
1. Visit the [releases page](https://git.astralium.su/didirus/AstralRinth/releases) to download the correct version for your system.
2. Run the downloaded file or extract and launch it, depending on the format.
### Downloadable File Extensions
| Extension | OS | Notes |
| --------- | ------- | --------------------------------------------------------------------- |
| `.msi` | Windows | Supported on all recent Windows versions (10/11) |
| `.dmg` | macOS | Works on Ventura, Sonoma, Sequoia, Tahoe _(may also support older versions)_ |
| `.deb` | Linux | Basic support; compatibility may vary by distribution |
### Installation Warnings
Avoid using builds with these prefixes — they may be unstable or experimental:
- `dev`
- `nightly`
- `dirty`
- `dirty-dev`
- `dirty-nightly`
- `dirty_dev`
- `dirty_nightly`
---
# Features
> _The launcher provides an opportunity to use the well-known Modrinth, but with an improved user experience._
## Included exclusive features
- No ads in the entire launcher.
- Custom `.svg` vector icons for a distinct UI.
- Improved compatibility with both licensed and pirate accounts.
- Use **official microsoft accounts** or **offline/pirate accounts**.
- Supports license-free access for testing or personal use.
- No dependence on official authentication services.
- Discord Rich Presence integration:
- Dynamic status messages.
- In-game timer and AFK counter.
- Strict disabling of statistics and other Modrinth metrics.
- Optimized archive/package size.
- Integrated update fetcher for seamless version management.
- Built-in update alerts for new versions posted on Git Astralium.
- Automatic download and installation capabilities.
- Database migration fixes, when error occurred (Interactive Mode) (Modrinth issue)
- Ely.by full integration
- The official account skin system is managed by ely.by
- Offline accounts must install AuthLib through the instance settings
---
# Getting Started
To begin using AstralRinth:
1. **Download Latest Release**
- Go to the [releases page](https://git.astralium.su/didirus/AstralRinth/releases)
- [How to choose a file](#downloadable-file-extensions)
- [How to choose a release](#installation-warnings)
2. **Log in or create new offline account**
- Use your official Microsoft account (MSA), or test using a non-licensed account (Offline).
3. **Launch Minecraft**
- Start Minecraft from the launcher.
- The launcher will auto-detect the recommended JVM version.
- You can also configure Java manually in the settings.
---
# Disclaimer
- **AstralRinth** is intended **solely for educational and experimental use**.
- We **do not condone piracy** — users are encouraged to purchase a legitimate Minecraft license.
- Respect all relevant licensing agreements and support Minecraft developers.
---
# Support Our Project (Crypto Wallets)
If you'd like to support development, you can donate via the following crypto wallets:
- Toncoin (TON): UQA5pGOJhIz9UAVEOh5t2ur1QVbNr_FC1eq9bOb3GwTgaiqk
- USDT (TON): UQA5pGOJhIz9UAVEOh5t2ur1QVbNr_FC1eq9bOb3GwTgaiqk
Licensed under the GNU General Public License v3.0

View File

@@ -1,9 +1,13 @@
# Copying
The source code of Modrinth App's frontend is licensed under the GNU General Public License, Version 3 only, which is provided in the file [LICENSE](./LICENSE). However, some files listed below are licensed under a different license.
The source code of the theseus repository is licensed under the GNU General Public License, Version 3 only, which is provided in the file [LICENSE](./LICENSE). However, some files listed below are licensed under a different license.
## Modrinth logo
The use of Modrinth branding elements, including but not limited to the wrench-in-labyrinth logo, the landing image, and any variations thereof, is strictly prohibited without explicit written permission from Rinth, Inc. This includes trademarks, logos, or other branding elements.
> All rights reserved. © 2020-2025 Rinth, Inc.
> All rights reserved. © 2020-2023 Rinth, Inc.
This includes, but may not be limited to, the following files:
- theseus_gui/src-tauri/icons/\*

View File

@@ -28,19 +28,18 @@
"@tauri-apps/plugin-updater": "^2.7.1",
"@tauri-apps/plugin-window-state": "^2.2.2",
"@types/three": "^0.172.0",
"intl-messageformat": "^10.7.7",
"vue-i18n": "^10.0.0",
"@vintl/vintl": "^4.4.1",
"@vueuse/core": "^11.1.0",
"dayjs": "^1.11.10",
"floating-vue": "^5.2.2",
"ofetch": "^1.3.4",
"pinia": "^3.0.0",
"pinia": "^2.1.7",
"posthog-js": "^1.158.2",
"three": "^0.172.0",
"vite-svg-loader": "^5.1.0",
"vue": "^3.5.13",
"vue-multiselect": "3.0.0",
"vue-router": "^4.6.0",
"vue-router": "4.3.0",
"vue-virtual-scroller": "v2.0.0-beta.8"
},
"devDependencies": {
@@ -49,7 +48,7 @@
"@modrinth/tooling-config": "workspace:*",
"@nuxt/eslint-config": "^0.5.6",
"@taijased/vue-render-tracker": "^1.0.7",
"@vitejs/plugin-vue": "^6.0.3",
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.4.19",
"eslint": "^9.9.1",
"eslint-plugin-turbo": "^2.5.4",
@@ -58,8 +57,7 @@
"sass": "^1.74.1",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.4",
"vite": "^6.0.0",
"vue-component-type-helpers": "^3.1.8",
"vite": "^5.4.6",
"vue-tsc": "^2.1.6"
},
"packageManager": "pnpm@9.4.0",

View File

@@ -1,5 +1,5 @@
<script setup>
import { AuthFeature, PanelVersionFeature, TauriModrinthClient } from '@modrinth/api-client'
import { AuthFeature, TauriModrinthClient } from '@modrinth/api-client'
import {
ArrowBigUpDashIcon,
ChangeSkinIcon,
@@ -31,16 +31,13 @@ import {
Button,
ButtonStyled,
commonMessages,
defineMessages,
NewsArticleCard,
NotificationPanel,
OverflowMenu,
ProgressSpinner,
provideModrinthClient,
provideNotificationManager,
providePageContext,
useDebugLogger,
useVIntl,
} from '@modrinth/ui'
import { renderString } from '@modrinth/utils'
import { useQuery } from '@tanstack/vue-query'
@@ -50,6 +47,7 @@ import { getCurrentWindow } from '@tauri-apps/api/window'
import { openUrl } from '@tauri-apps/plugin-opener'
import { type } from '@tauri-apps/plugin-os'
import { saveWindowState, StateFlags } from '@tauri-apps/plugin-window-state'
import { defineMessages, useVIntl } from '@vintl/vintl'
import { $fetch } from 'ofetch'
import { computed, onMounted, onUnmounted, provide, ref } from 'vue'
import { RouterView, useRoute, useRouter } from 'vue-router'
@@ -74,7 +72,7 @@ import { useCheckDisableMouseover } from '@/composables/macCssFix.js'
import { debugAnalytics, initAnalytics, optOutAnalytics, trackEvent } from '@/helpers/analytics'
import { check_reachable } from '@/helpers/auth.js'
import { get_user } from '@/helpers/cache.js'
import { command_listener, warning_listener, info_listener } from '@/helpers/events.js'
import { command_listener, warning_listener } from '@/helpers/events.js'
import { useFetch } from '@/helpers/fetch.js'
import { cancelLogin, get as getCreds, login, logout } from '@/helpers/mr_auth.ts'
import { list } from '@/helpers/profile.js'
@@ -84,7 +82,6 @@ import {
getOS,
isDev
} from '@/helpers/utils.js'
import i18n from '@/i18n.config'
import {
provideAppUpdateDownloadProgress
} from '@/providers/download-progress.ts'
@@ -97,7 +94,7 @@ import { generateSkinPreviews } from './helpers/rendering/batch-skin-renderer'
import { get_available_capes, get_available_skins } from './helpers/skins'
import { AppNotificationManager } from './providers/app-notifications'
// This code is modified by AstralRinth
// [AR] Imports
import { get, set } from '@/helpers/settings.ts'
import { getRemote, updateState } from '@/helpers/update.js'
@@ -113,14 +110,10 @@ const tauriApiClient = new TauriModrinthClient({
new AuthFeature({
token: async () => (await getCreds()).session,
}),
new PanelVersionFeature(),
],
})
provideModrinthClient(tauriApiClient)
providePageContext({
hierarchicalSidebarAvailable: ref(true),
showAds: ref(false),
})
const news = ref([])
const availableSurvey = ref(false)
@@ -166,10 +159,9 @@ const authUnreachable = computed(() => {
return false
})
// This code is modified by AstralRinth
onMounted(async () => {
await useCheckDisableMouseover()
await getRemote(false)
await getRemote(false) // [AR] Check for updates
document.querySelector('body').addEventListener('click', handleClick)
document.querySelector('body').addEventListener('auxclick', handleAuxClick)
@@ -213,17 +205,17 @@ const messages = defineMessages({
},
})
// This code is modified by AstralRinth
async function setupApp() {
// [AR] Patched
const settings = await get()
settings.personalized_ads = false
settings.telemetry = false
await set(settings)
stateInitialized.value = true
const {
native_decorations,
theme,
locale,
telemetry,
personalized_ads,
collapsed_navigation,
@@ -236,11 +228,6 @@ async function setupApp() {
pending_update_toast_for_version,
} = await getSettings()
// Initialize locale from saved settings
if (locale) {
i18n.global.locale.value = locale
}
if (default_page === 'Library') {
await router.push('/library')
}
@@ -259,7 +246,6 @@ async function setupApp() {
themeStore.toggleSidebar = toggle_sidebar
themeStore.devMode = developer_mode
themeStore.featureFlags = feature_flags
stateInitialized.value = true
isMaximized.value = await getCurrentWindow().isMaximized()
@@ -267,7 +253,7 @@ async function setupApp() {
isMaximized.value = await getCurrentWindow().isMaximized()
})
// This code is modified by AstralRinth
// [AR] Patched
if (!telemetry) {
console.info("[AR] • Telemetry disabled by default (Hard patched).")
optOutAnalytics()
@@ -295,15 +281,6 @@ async function setupApp() {
}),
)
// This code is modified by AstralRinth
await info_listener((e) =>
addNotification({
title: 'Info',
text: e.message,
type: 'info',
}),
)
useFetch(
`https://api.modrinth.com/appCriticalAnnouncement.json?version=${version}`,
'criticalAnnouncements',
@@ -670,7 +647,7 @@ provideAppUpdateDownloadProgress(appUpdateDownload) // [AR Note] If delete this
<NavButton
v-if="themeStore.featureFlags.servers_in_app"
v-tooltip.right="'Servers'"
to="/hosting/manage"
to="/servers/manage"
>
<ServerIcon />
</NavButton>

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:serif="http://www.serif.com/" version="1.1" viewBox="0 0 1793 199">
<g>
<g id="Layer_1">
<g id="green" fill="var(--color-brand)">
<path d="M1184.1,166.6c-8,0-15.6-1-22.9-3.1s-13.1-4.6-17.4-7.6l8.5-16.9c4.3,2.7,9.4,5,15.3,6.8,5.9,1.8,11.9,2.7,17.8,2.7s12.1-.9,15.2-2.8c3.1-1.9,4.7-4.5,4.7-7.7s-1.1-4.6-3.2-6c-2.1-1.4-4.9-2.4-8.4-3.1-3.4-.7-7.3-1.4-11.5-2-4.2-.6-8.4-1.4-12.6-2.4-4.2-1-8-2.5-11.5-4.5-3.4-2-6.2-4.6-8.4-7.9-2.1-3.3-3.2-7.7-3.2-13.2s1.7-11.3,5.2-15.8c3.4-4.5,8.3-7.9,14.5-10.3,6.2-2.4,13.6-3.7,22.2-3.7s12.9.7,19.4,2.1c6.5,1.4,11.9,3.4,16.2,6.1l-8.5,16.9c-4.5-2.7-9.1-4.6-13.6-5.6-4.6-1-9.1-1.5-13.6-1.5-6.8,0-11.8,1-15,3-3.3,2-4.9,4.6-4.9,7.7s1.1,5,3.2,6.4c2.1,1.4,4.9,2.6,8.4,3.4,3.4.8,7.3,1.5,11.5,2,4.2.5,8.4,1.3,12.6,2.4,4.2,1.1,8,2.5,11.5,4.4,3.5,1.8,6.3,4.4,8.5,7.7,2.1,3.3,3.2,7.7,3.2,13s-1.8,11.1-5.3,15.5c-3.5,4.4-8.5,7.8-14.9,10.2-6.4,2.4-14.1,3.7-23,3.7Z"/>
<path d="M1291.1,166.6c-10.6,0-19.8-2.1-27.7-6.3-7.9-4.2-14-10-18.3-17.4-4.3-7.4-6.5-15.7-6.5-25.1s2.1-17.9,6.3-25.2c4.2-7.3,10-13,17.5-17.2,7.4-4.2,15.9-6.2,25.4-6.2s17.5,2,24.8,6.1c7.2,4,12.9,9.7,17.1,17.1,4.2,7.4,6.2,16,6.2,26s0,2,0,3.2c0,1.2-.2,2.3-.3,3.4h-79.3v-14.8h67.5l-8.7,4.6c.1-5.5-1-10.3-3.4-14.4-2.4-4.2-5.6-7.4-9.7-9.8-4.1-2.4-8.8-3.6-14.2-3.6s-10.2,1.2-14.3,3.6c-4.1,2.4-7.3,5.7-9.6,9.9-2.3,4.2-3.5,9.2-3.5,14.9v3.6c0,5.7,1.3,10.7,3.9,15.1,2.6,4.4,6.3,7.8,11,10.2,4.7,2.4,10.2,3.6,16.4,3.6s10.2-.8,14.4-2.5c4.3-1.7,8.1-4.3,11.4-7.8l11.9,13.7c-4.3,5-9.6,8.8-16.1,11.5-6.5,2.7-13.9,4-22.2,4Z"/>
<path d="M1357.2,165.3v-95.1h21.2v26.2l-2.5-7.7c2.8-6.4,7.3-11.3,13.4-14.6,6.1-3.3,13.7-5,22.9-5v21.2c-1-.2-1.8-.4-2.7-.4-.8,0-1.7,0-2.5,0-8.4,0-15.1,2.5-20.1,7.4-5,4.9-7.5,12.3-7.5,22v46.1h-22.3Z"/>
<path d="M1460,165.3l-40.8-95.1h23.2l35.1,83.9h-11.4l36.3-83.9h21.4l-40.8,95.1h-23Z"/>
<path d="M1579.6,166.6c-10.6,0-19.8-2.1-27.7-6.3-7.9-4.2-14-10-18.3-17.4-4.3-7.4-6.5-15.7-6.5-25.1s2.1-17.9,6.3-25.2c4.2-7.3,10-13,17.5-17.2,7.4-4.2,15.9-6.2,25.4-6.2s17.5,2,24.8,6.1c7.2,4,12.9,9.7,17.1,17.1,4.2,7.4,6.2,16,6.2,26s0,2,0,3.2c0,1.2-.2,2.3-.3,3.4h-79.3v-14.8h67.5l-8.7,4.6c.1-5.5-1-10.3-3.4-14.4-2.4-4.2-5.6-7.4-9.7-9.8-4.1-2.4-8.8-3.6-14.2-3.6s-10.2,1.2-14.3,3.6c-4.1,2.4-7.3,5.7-9.6,9.9-2.3,4.2-3.5,9.2-3.5,14.9v3.6c0,5.7,1.3,10.7,3.9,15.1,2.6,4.4,6.3,7.8,11,10.2,4.7,2.4,10.2,3.6,16.4,3.6s10.2-.8,14.4-2.5c4.3-1.7,8.1-4.3,11.4-7.8l11.9,13.7c-4.3,5-9.6,8.8-16.1,11.5-6.5,2.7-13.9,4-22.2,4Z"/>
<path d="M1645.7,165.3v-95.1h21.2v26.2l-2.5-7.7c2.8-6.4,7.3-11.3,13.4-14.6,6.1-3.3,13.7-5,22.9-5v21.2c-1-.2-1.8-.4-2.7-.4-.8,0-1.7,0-2.5,0-8.4,0-15.1,2.5-20.1,7.4-5,4.9-7.5,12.3-7.5,22v46.1h-22.3Z"/>
<path d="M1749.9,166.6c-8,0-15.6-1-22.9-3.1s-13.1-4.6-17.4-7.6l8.5-16.9c4.3,2.7,9.4,5,15.3,6.8,5.9,1.8,11.9,2.7,17.8,2.7s12.1-.9,15.2-2.8c3.1-1.9,4.7-4.5,4.7-7.7s-1.1-4.6-3.2-6c-2.1-1.4-4.9-2.4-8.4-3.1-3.4-.7-7.3-1.4-11.5-2-4.2-.6-8.4-1.4-12.6-2.4-4.2-1-8-2.5-11.5-4.5-3.4-2-6.2-4.6-8.4-7.9-2.1-3.3-3.2-7.7-3.2-13.2s1.7-11.3,5.2-15.8c3.4-4.5,8.3-7.9,14.5-10.3,6.2-2.4,13.6-3.7,22.2-3.7s12.9.7,19.4,2.1c6.5,1.4,11.9,3.4,16.2,6.1l-8.5,16.9c-4.5-2.7-9.1-4.6-13.6-5.6-4.6-1-9.1-1.5-13.6-1.5-6.8,0-11.8,1-15,3-3.3,2-4.9,4.6-4.9,7.7s1.1,5,3.2,6.4c2.1,1.4,4.9,2.6,8.4,3.4,3.4.8,7.3,1.5,11.5,2,4.2.5,8.4,1.3,12.6,2.4,4.2,1.1,8,2.5,11.5,4.4,3.5,1.8,6.3,4.4,8.5,7.7,2.1,3.3,3.2,7.7,3.2,13s-1.8,11.1-5.3,15.5c-3.5,4.4-8.5,7.8-14.9,10.2-6.4,2.4-14.1,3.7-23,3.7Z"/>
<g>
<path d="M9.8,143l63.4-38.1-5.8-15.3,18.1-18.6,22.9-4.9,6.6,8.2-10.6,10.7-9.2,2.9-6.6,6.8,3.2,9,6.5,6.9,9.2-2.5,6.6-7.2,14.3-4.5,4.3,9.6-14.8,18.1-24.8,7.8-11.1-12.4-63.6,38.2c-3-3.9-6.5-9.4-8.8-14.7ZM192.8,65.4l-50.4,13.6c2.8,7.4,3.7,11.7,4.5,16.5l50.3-13.6c-.8-5.4-2.2-10.8-4.4-16.5Z" fill-rule="evenodd"/>
<path d="M17.3,106.5c3.6,42.1,38.9,75.2,82,75.2s60.7-18.9,74-46.3l16.4,5.7c-15.8,34.1-50.3,57.9-90.4,57.9S3.6,158.2,0,106.5h17.3ZM.3,89.4C5.3,39.2,47.8,0,99.3,0s99.5,44.6,99.5,99.5-1.1,17.4-3.3,25.5l-16.3-5.7c1.6-6.5,2.4-13.1,2.4-19.8,0-45.4-36.9-82.3-82.3-82.3S22.6,48.7,17.6,89.4H.3Z" fill-rule="evenodd"/>
<path d="M99,51.6c-26.4,0-47.9,21.5-47.9,48s21.5,48,48,48,2.7,0,4-.2l4.8,16.8c-2.9.4-5.8.6-8.8.6-36,0-65.2-29.2-65.2-65.2S63.1,34.4,99,34.4s1.8,0,2.7,0l-2.7,17.1ZM118.6,37.4c26.4,8.3,45.6,33,45.6,62.2s-16.4,50.2-39.8,60l-4.8-16.7c16.2-7.7,27.4-24.2,27.4-43.3s-13-38.1-31.1-44.9l2.7-17.2Z" fill-rule="evenodd"/>
</g>
</g>
<g id="black" fill="currentColor">
<path d="M354.8,69.2c12,0,21.7,3.4,28.6,10.4,7,7.2,10.6,17.5,10.6,31.5v54.8h-22.4v-51.9c0-8.4-1.8-14.7-5.5-19-3.8-4.1-8.9-6.3-15.9-6.3s-13.6,2.5-18.1,7.3c-4.5,5-6.8,12.2-6.8,21.3v48.5h-22.4v-51.9c0-8.4-1.8-14.7-5.5-19-3.8-4.1-8.9-6.3-15.9-6.3s-13.6,2.5-18.1,7.3c-4.5,4.8-6.8,12-6.8,21.3v48.5h-22.4v-95.6h21.3v12.2c3.6-4.3,8.1-7.5,13.4-9.8,5.4-2.3,11.3-3.4,17.9-3.4s13.6,1.3,19.2,3.9c5.5,2.9,9.8,6.8,13.1,12,3.9-5,8.9-8.9,15.2-11.8,6.3-2.7,13.1-4.1,20.6-4.1ZM466,167.2c-9.7,0-18.4-2.1-26.1-6.3-7.6-4-13.8-10.1-18.1-17.5-4.5-7.3-6.6-15.7-6.6-25.2s2.1-17.9,6.6-25.2c4.3-7.4,10.6-13.4,18.1-17.4,7.7-4.1,16.5-6.3,26.1-6.3s18.6,2.1,26.3,6.3c7.7,4.1,13.8,10,18.3,17.4,4.3,7.3,6.4,15.7,6.4,25.2s-2.1,17.9-6.4,25.2c-4.5,7.5-10.6,13.4-18.3,17.5-7.7,4.1-16.5,6.3-26.3,6.3h0ZM466,148c8.2,0,15-2.7,20.4-8.2,5.4-5.5,8.1-12.7,8.1-21.7s-2.7-16.1-8.1-21.7c-5.4-5.5-12.2-8.2-20.4-8.2s-15,2.7-20.2,8.2c-5.4,5.5-8.1,12.7-8.1,21.7s2.7,16.1,8.1,21.7c5.2,5.5,12,8.2,20.2,8.2ZM631.5,33.1v132.8h-21.5v-12.3c-3.7,4.4-8.3,7.9-13.6,10.2-5.5,2.3-11.5,3.4-18.1,3.4s-17.4-2-24.7-6.1c-7.3-4.1-13.2-9.8-17.4-17.4-4.1-7.3-6.3-15.9-6.3-25.6s2.1-18.3,6.3-25.6c4.1-7.3,10-13.1,17.4-17.2,7.3-4.1,15.6-6.1,24.7-6.1s12.2,1.1,17.4,3.2c5.2,2.1,9.8,5.4,13.4,9.7v-49h22.4ZM581.1,148c5.4,0,10.2-1.3,14.5-3.8,4.3-2.3,7.7-5.9,10.2-10.4,2.5-4.5,3.8-9.8,3.8-15.7s-1.3-11.3-3.8-15.7c-2.5-4.5-5.9-8.1-10.2-10.6-4.3-2.3-9.1-3.6-14.5-3.6s-10.2,1.3-14.5,3.6c-4.3,2.5-7.7,6.1-10.2,10.6-2.5,4.5-3.8,9.8-3.8,15.7s1.3,11.3,3.8,15.7c2.5,4.5,5.9,8.1,10.2,10.4,4.3,2.5,9.1,3.8,14.5,3.8ZM681.6,84.3c6.4-10,17.7-15,34-15v21.3c-1.7-.3-3.4-.5-5.2-.5-8.8,0-15.6,2.5-20.4,7.5-4.8,5.2-7.3,12.5-7.3,22v46.4h-22.4v-95.6h21.3v14h0ZM734.1,70.3h22.4v95.6h-22.4v-95.6ZM745.4,54.6c-4.1,0-7.5-1.3-10.2-3.9-2.7-2.4-4.2-5.9-4.1-9.5,0-3.8,1.4-7,4.1-9.7,2.7-2.5,6.1-3.8,10.2-3.8s7.5,1.3,10.2,3.6c2.7,2.5,4.1,5.5,4.1,9.3s-1.3,7.2-3.9,9.8c-2.7,2.7-6.3,4.1-10.4,4.1ZM839.5,69.2c12,0,21.7,3.6,29,10.6,7.3,7,10.9,17.5,10.9,31.3v54.8h-22.4v-51.9c0-8.4-2-14.7-5.9-19-3.9-4.1-9.5-6.3-16.8-6.3s-14.7,2.5-19.5,7.3c-4.8,5-7.2,12.2-7.2,21.5v48.3h-22.4v-95.6h21.3v12.3c3.8-4.5,8.4-7.7,14-10,5.5-2.3,12-3.4,19-3.4ZM964.8,160.7c-2.8,2.2-6,3.9-9.5,4.8-3.9,1.1-7.9,1.6-12,1.6-10.6,0-18.6-2.7-24.3-8.2-5.7-5.5-8.6-13.4-8.6-24v-46h-15.7v-17.9h15.7v-21.8h22.4v21.8h25.6v17.9h-25.6v45.5c0,4.7,1.1,8.2,3.4,10.6,2.3,2.5,5.5,3.8,9.8,3.8s9.1-1.3,12.5-3.9l6.3,15.9ZM1036.9,69.2c12,0,21.7,3.6,29,10.6,7.3,7,10.9,17.5,10.9,31.3v54.8h-22.4v-51.9c0-8.4-2-14.7-5.9-19-3.9-4.1-9.5-6.3-16.8-6.3s-14.7,2.5-19.5,7.3c-4.8,5-7.2,12.2-7.2,21.5v48.3h-22.4V33.1h22.4v48.3c3.8-3.9,8.2-7,13.8-9.1,5.4-2,11.5-3,18.1-3Z"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

@@ -2,8 +2,6 @@
@tailwind components;
@tailwind utilities;
@import '@modrinth/ui/src/styles/tailwind-utilities.css';
@font-face {
font-family: 'bundled-minecraft-font-mrapp';
font-style: normal;

View File

@@ -1,24 +1,12 @@
<template>
<div
v-if="mode !== 'isolated'"
ref="button"
<div v-if="mode !== 'isolated'" ref="button"
class="button-base mt-2 px-3 py-2 bg-button-bg rounded-xl flex items-center gap-2"
:class="{ expanded: mode === 'expanded' }"
@click="toggleMenu"
>
<Avatar
size="36px"
:src="
selectedAccount ? avatarUrl : 'https://launcher-files.modrinth.com/assets/steve_head.png'
"
/>
:class="{ expanded: mode === 'expanded' }" @click="toggleMenu">
<Avatar size="36px" :src="selectedAccount ? avatarUrl : 'https://launcher-files.modrinth.com/assets/steve_head.png'
" />
<div class="flex flex-col w-full">
<span>
<component
:is="getAccountType(selectedAccount)"
v-if="selectedAccount"
class="vector-icon"
/>
<component :is="getAccountType(selectedAccount)" v-if="selectedAccount" class="vector-icon" />
{{ selectedAccount ? selectedAccount.profile.name : 'Select account' }}
</span>
<span class="text-secondary text-xs">Minecraft account</span>
@@ -26,46 +14,32 @@
<DropdownIcon class="w-5 h-5 shrink-0" />
</div>
<transition name="fade">
<Card
v-if="showCard || mode === 'isolated'"
ref="card"
class="account-card"
:class="{ expanded: mode === 'expanded', isolated: mode === 'isolated' }"
>
<Card v-if="showCard || mode === 'isolated'" ref="card" class="account-card"
:class="{ expanded: mode === 'expanded', isolated: mode === 'isolated' }">
<div v-if="selectedAccount" class="selected account">
<Avatar size="xs" :src="avatarUrl" />
<div>
<h4>
<component :is="getAccountType(selectedAccount)" class="vector-icon" />
{{ selectedAccount.profile.name }}
<component :is="getAccountType(selectedAccount)" class="vector-icon" /> {{
selectedAccount.profile.name }}
</h4>
<p>Selected</p>
</div>
<Button
v-tooltip="'Log out'"
icon-only
color="raised"
@click="logout(selectedAccount.profile.id)"
>
<Button v-tooltip="'Log out'" icon-only color="raised" @click="logout(selectedAccount.profile.id)">
<TrashIcon />
</Button>
</div>
<div v-else class="login-section account">
<h4>Not signed in</h4>
<Button
v-tooltip="'Log via Microsoft'"
:disabled="microsoftLoginDisabled"
icon-only
@click="login()"
>
<Button v-tooltip="'Log via Microsoft'" :disabled="microsoftLoginDisabled" icon-only @click="login()">
<MicrosoftIcon v-if="!microsoftLoginDisabled" />
<SpinnerIcon v-else class="animate-spin" />
</Button>
<Button v-tooltip="'Add offline account'" icon-only @click="showOfflineLoginModal()">
<OfflineIcon />
<PirateIcon />
</Button>
<Button v-tooltip="'Log via Ely.by'" icon-only @click="showElyByLoginModal()">
<ElyByIcon v-if="!elyByLoginDisabled" />
<Button v-tooltip="'Log via Ely.by'" icon-only @click="showElybyLoginModal()">
<ElyByIcon v-if="!elybyLoginDisabled" />
<SpinnerIcon v-else class="animate-spin" />
</Button>
</div>
@@ -89,37 +63,23 @@
<SpinnerIcon v-else class="animate-spin" />
</Button>
<Button v-tooltip="'Add offline account'" icon-only @click="showOfflineLoginModal()">
<OfflineIcon />
<PirateIcon />
</Button>
<Button v-tooltip="'Log via Ely.by'" icon-only @click="showElyByLoginModal()">
<ElyByIcon v-if="!elyByLoginDisabled" />
<Button v-tooltip="'Log via Ely.by'" icon-only @click="showElybyLoginModal()">
<ElyByIcon v-if="!elybyLoginDisabled" />
<SpinnerIcon v-else class="animate-spin" />
</Button>
</div>
</Card>
</transition>
<ModalWrapper ref="addElyByModal" class="modal" header="Authenticate with Ely.by">
<ModalWrapper
ref="requestElyByTwoFactorCodeModal"
class="modal"
header="Ely.by requested 2FA code for authentication"
>
<ModalWrapper ref="addElybyModal" class="modal" header="Authenticate with Ely.by">
<ModalWrapper ref="requestElybyTwoFactorCodeModal" class="modal"
header="Ely.by requested 2FA code for authentication">
<div class="flex flex-col gap-4 px-6 py-5">
<label class="label">Enter your 2FA code</label>
<input
v-model="elyByTwoFactorCode"
type="text"
placeholder="Your 2FA code here..."
class="input"
/>
<input v-model="elybyTwoFactorCode" type="text" placeholder="Your 2FA code here..." class="input" />
<div class="mt-6 ml-auto">
<Button
:disabled="elyByLoginDisabled"
icon-only
color="primary"
class="continue-button"
@click="addElyByProfile()"
>
<Button icon-only color="primary" class="continue-button" @click="addElybyProfile()">
Continue
</Button>
</div>
@@ -127,27 +87,11 @@
</ModalWrapper>
<div class="flex flex-col gap-4 px-6 py-5">
<label class="label">Enter your player name or email (preferred)</label>
<input
v-model="elyByLogin"
type="text"
placeholder="Your player name or email here..."
class="input"
/>
<input v-model="elybyLogin" type="text" placeholder="Your player name or email here..." class="input" />
<label class="label">Enter your password</label>
<input
v-model="elyByPassword"
type="password"
placeholder="Your password here..."
class="input"
/>
<input v-model="elybyPassword" type="password" placeholder="Your password here..." class="input" />
<div class="mt-6 ml-auto">
<Button
:disabled="elyByLoginDisabled"
icon-only
color="primary"
class="continue-button"
@click="addElyByProfile()"
>
<Button icon-only color="primary" class="continue-button" @click="addElybyProfile()">
Login
</Button>
</div>
@@ -156,12 +100,7 @@
<ModalWrapper ref="addOfflineModal" class="modal" header="Add new offline account">
<div class="flex flex-col gap-4 px-6 py-5">
<label class="label">Enter your player name</label>
<input
v-model="offlinePlayerName"
type="text"
placeholder="Your player name here..."
class="input"
/>
<input v-model="offlinePlayerName" type="text" placeholder="Your player name here..." class="input" />
<div class="mt-6 ml-auto">
<Button icon-only color="primary" class="continue-button" @click="addOfflineProfile()">
Login
@@ -169,28 +108,21 @@
</div>
</div>
</ModalWrapper>
<ModalWrapper
ref="authenticationElyByErrorModal"
class="modal"
header="Error while proceeding authentication event with Ely.by"
>
<ModalWrapper ref="authenticationElybyErrorModal" class="modal"
header="Error while proceeding authentication event with Ely.by">
<div class="flex flex-col gap-4 px-6 py-5">
<label class="text-base font-medium text-red-700">
An error occurred while logging in.
</label>
<div class="mt-6 ml-auto">
<Button color="primary" class="retry-button" @click="retryAddElyByProfile">
<Button color="primary" class="retry-button" @click="retryAddElybyProfile">
Try again
</Button>
</div>
</div>
</ModalWrapper>
<ModalWrapper
ref="inputElyByErrorModal"
class="modal"
header="Error while proceeding input event with Ely.by"
>
<ModalWrapper ref="inputElybyErrorModal" class="modal" header="Error while proceeding input event with Ely.by">
<div class="flex flex-col gap-4 px-6 py-5">
<label class="text-base font-medium text-red-700">
An error occurred while adding the Ely.by account. Please follow the instructions below.
@@ -202,17 +134,13 @@
</ul>
<div class="mt-6 ml-auto">
<Button color="primary" class="retry-button" @click="retryAddElyByProfile">
<Button color="primary" class="retry-button" @click="retryAddElybyProfile">
Try again
</Button>
</div>
</div>
</ModalWrapper>
<ModalWrapper
ref="inputOfflineErrorModal"
class="modal"
header="Error while proceeding input event with offline account"
>
<ModalWrapper ref="inputErrorModal" class="modal" header="Error while proceeding input event with offline account">
<div class="flex flex-col gap-4 px-6 py-5">
<label class="text-base font-medium text-red-700">
An error occurred while adding the offline account. Please follow the instructions below.
@@ -221,10 +149,9 @@
<ul class="list-disc list-inside text-sm space-y-1">
<li>Check that you have entered the correct player name.</li>
<li>
Player name must be at least {{ minOfflinePlayerNameLength }} characters long and no more
than {{ maxOfflinePlayerNameLength }} characters.
Player name must be at least {{ minOfflinePlayerNameLength }} characters long and no more than
{{ maxOfflinePlayerNameLength }} characters.
</li>
<li>Make sure your name meets the format requirement `{{ nameExp }}`</li>
</ul>
<div class="mt-6 ml-auto">
@@ -234,7 +161,7 @@
</div>
</div>
</ModalWrapper>
<ModalWrapper ref="unexpectedErrorModal" class="modal" header="Unexpected error occurred">
<ModalWrapper ref="exceptionErrorModal" class="modal" header="Unexpected error occurred">
<div class="modal-body">
<label class="label">An unexpected error has occurred. Please try again later.</label>
</div>
@@ -242,32 +169,35 @@
</template>
<script setup>
import ModalWrapper from '@/components/ui/modal/ModalWrapper.vue'
import { trackEvent } from '@/helpers/analytics'
import {
DropdownIcon,
TrashIcon,
PirateIcon as Offline,
MicrosoftIcon as License,
ElyByIcon as Elyby,
MicrosoftIcon,
PirateIcon,
ElyByIcon,
SpinnerIcon
} from '@modrinth/assets'
import { Avatar, Button, Card, injectNotificationManager } from '@modrinth/ui'
import { ref, computed, onMounted, onBeforeUnmount, onUnmounted } from 'vue'
import {
elyby_auth_authenticate,
elyby_login,
get_default_user,
login as login_flow,
offline_login,
users,
remove_user,
set_default_user,
users,
login as login_flow,
get_default_user,
} from '@/helpers/auth'
import { trackEvent } from '@/helpers/analytics'
import { process_listener } from '@/helpers/events'
import ModalWrapper from '@/components/ui/modal/ModalWrapper.vue'
import { getPlayerHeadUrl } from '@/helpers/rendering/batch-skin-renderer.ts'
import { get_available_skins } from '@/helpers/skins'
import { handleSevereError } from '@/store/error.js'
import {
DropdownIcon,
ElyByIcon,
MicrosoftIcon,
OfflineIcon,
SpinnerIcon,
TrashIcon,
} from '@modrinth/assets'
import { Avatar, Button, Card, injectNotificationManager } from '@modrinth/ui'
import { computed, onBeforeUnmount, onMounted, onUnmounted, ref } from 'vue'
const { handleError } = injectNotificationManager()
@@ -283,88 +213,82 @@ const emit = defineEmits(['change'])
const accounts = ref({})
const microsoftLoginDisabled = ref(false)
const elyByLoginDisabled = ref(false)
const elybyLoginDisabled = ref(false)
const defaultUser = ref()
// This code is modified by AstralRinth
const clientToken = 'astralrinth'
// [AR] • Feature
const clientToken = "astralrinth"
const addOfflineModal = ref(null)
const addElyByModal = ref(null)
const requestElyByTwoFactorCodeModal = ref(null)
const authenticationElyByErrorModal = ref(null)
const inputElyByErrorModal = ref(null)
const inputOfflineErrorModal = ref(null)
const unexpectedErrorModal = ref(null)
const addElybyModal = ref(null)
const requestElybyTwoFactorCodeModal = ref(null)
const authenticationElybyErrorModal = ref(null)
const inputElybyErrorModal = ref(null)
const inputErrorModal = ref(null)
const exceptionErrorModal = ref(null)
const offlinePlayerName = ref('')
const elyByLogin = ref('')
const elyByPassword = ref('')
const elyByTwoFactorCode = ref('')
const minOfflinePlayerNameLength = 3
const elybyLogin = ref('')
const elybyPassword = ref('')
const elybyTwoFactorCode = ref('')
const minOfflinePlayerNameLength = 2
const maxOfflinePlayerNameLength = 20
const nameExp = 'a-zA-Z0-9_'
const nameRegex = new RegExp(`^[${nameExp}]+$`)
// This code is modified by AstralRinth
// [AR] • Feature
function getAccountType(account) {
switch (account.account_type) {
case 'microsoft':
return MicrosoftIcon
return License
case 'pirate':
return OfflineIcon
return Offline
case 'elyby':
return ElyByIcon
return Elyby
}
}
// This code is modified by AstralRinth
// [AR] • Feature
function showOfflineLoginModal() {
addOfflineModal.value?.show()
}
// This code is modified by AstralRinth
function showElyByLoginModal() {
addElyByModal.value?.show()
// [AR] • Feature
function showElybyLoginModal() {
addElybyModal.value?.show()
}
// This code is modified by AstralRinth
// [AR] • Feature
function retryAddOfflineProfile() {
inputOfflineErrorModal.value?.hide()
inputErrorModal.value?.hide()
clearOfflineFields()
showOfflineLoginModal()
}
// This code is modified by AstralRinth
function retryAddElyByProfile() {
authenticationElyByErrorModal.value?.hide()
inputElyByErrorModal.value?.hide()
elyByLoginDisabled.value = false
clearElyByFields()
showElyByLoginModal()
// [AR] • Feature
function retryAddElybyProfile() {
authenticationElybyErrorModal.value?.hide()
inputElybyErrorModal.value?.hide()
clearElybyFields()
showElybyLoginModal()
}
// This code is modified by AstralRinth
function clearElyByFields() {
elyByLogin.value = ''
elyByPassword.value = ''
elyByTwoFactorCode.value = ''
// [AR] • Feature
function clearElybyFields() {
elybyLogin.value = ''
elybyPassword.value = ''
elybyTwoFactorCode.value = ''
}
// This code is modified by AstralRinth
// [AR] • Feature
function clearOfflineFields() {
offlinePlayerName.value = ''
}
// This code is modified by AstralRinth
// [AR] • Feature
async function addOfflineProfile() {
const name = offlinePlayerName.value.trim()
const isValidName =
nameRegex.test(name) &&
name.length >= minOfflinePlayerNameLength &&
name.length <= maxOfflinePlayerNameLength
const isValidName = name.length >= minOfflinePlayerNameLength && name.length <= maxOfflinePlayerNameLength
if (!isValidName) {
addOfflineModal.value?.hide()
inputOfflineErrorModal.value?.show()
inputErrorModal.value?.show()
clearOfflineFields()
return
}
@@ -378,36 +302,39 @@ async function addOfflineProfile() {
await setAccount(result)
await refreshValues()
} else {
unexpectedErrorModal.value?.show()
exceptionErrorModal.value?.show()
}
} catch (error) {
handleError(error)
unexpectedErrorModal.value?.show()
exceptionErrorModal.value?.show()
} finally {
clearOfflineFields()
}
}
// This code is modified by AstralRinth
async function addElyByProfile() {
elyByLoginDisabled.value = true
if (!elyByLogin.value || !elyByPassword.value) {
addElyByModal.value?.hide()
inputElyByErrorModal.value?.show()
clearElyByFields()
// [AR] • Feature
async function addElybyProfile() {
if (!elybyLogin.value || !elybyPassword.value) {
addElybyModal.value?.hide()
inputElybyErrorModal.value?.show()
clearElybyFields()
return
}
elybyLoginDisabled.value = true
// Parse ely.by credential fields
const login = elyByLogin.value.trim()
let password = elyByPassword.value.trim()
const twoFactorCode = elyByTwoFactorCode.value.trim()
const login = elybyLogin.value.trim()
let password = elybyPassword.value.trim()
const twoFactorCode = elybyTwoFactorCode.value.trim()
if (password && twoFactorCode) {
password = `${password}:${twoFactorCode}`
}
try {
const raw_result = await elyby_auth_authenticate(login, password, clientToken)
const raw_result = await elyby_auth_authenticate(
login,
password,
clientToken
)
const json_data = JSON.parse(raw_result)
@@ -419,13 +346,13 @@ async function addElyByProfile() {
json_data.error === 'ForbiddenOperationException' &&
json_data.errorMessage?.includes('two factor')
) {
requestElyByTwoFactorCodeModal.value?.show()
requestElybyTwoFactorCodeModal.value?.show()
return
}
addElyByModal.value?.hide()
requestElyByTwoFactorCodeModal.value?.hide()
authenticationElyByErrorModal.value?.show()
addElybyModal.value?.hide()
requestElybyTwoFactorCodeModal.value?.hide()
authenticationElybyErrorModal.value?.show()
return
}
@@ -435,22 +362,22 @@ async function addElyByProfile() {
const result = await elyby_login(selectedProfileId, selectedProfileName, accessToken)
addElyByModal.value?.hide()
requestElyByTwoFactorCodeModal.value?.hide()
addElybyModal.value?.hide()
requestElybyTwoFactorCodeModal.value?.hide()
clearElyByFields()
clearElybyFields()
await setAccount(result)
await refreshValues()
} catch (err) {
handleError(err)
unexpectedErrorModal.value?.show()
exceptionErrorModal.value?.show()
} finally {
elyByLoginDisabled.value = false
elybyLoginDisabled.value = false
}
}
// This code is modified by AstralRinth
// [AR] • Feature
function convertRawStringToUUIDv4(rawId) {
if (rawId.length !== 32) {
console.warn('Invalid UUID string:', rawId)
@@ -616,6 +543,7 @@ onUnmounted(() => {
gap: 1rem;
}
.vector-icon {
width: 12px;
height: 12px;

View File

@@ -19,7 +19,7 @@ import { install } from '@/helpers/profile.js'
import { cancel_directory_change } from '@/helpers/settings.ts'
import { handleSevereError } from '@/store/error.js'
// This code is modified by AstralRinth
// [AR] Imports
import { applyMigrationFix } from '@/helpers/utils.js'
import { restartApp } from '@/helpers/utils.js'

View File

@@ -358,7 +358,7 @@ const create_instance = async () => {
creating.value = true
const loader_version_value =
loader_version.value === 'other' ? specified_loader_version.value : loader_version.value
const loaderVersion = loader.value === 'vanilla' ? null : (loader_version_value ?? 'stable')
const loaderVersion = loader.value === 'vanilla' ? null : loader_version_value ?? 'stable'
hide()
creating.value = false
@@ -367,7 +367,7 @@ const create_instance = async () => {
profile_name.value,
game_version.value,
loader.value,
loader.value === 'vanilla' ? null : (loader_version_value ?? 'stable'),
loader.value === 'vanilla' ? null : loader_version_value ?? 'stable',
icon.value,
).catch(handleError)

View File

@@ -63,7 +63,7 @@ const toTransparent = computed(() => {
<div
class="w-full aspect-[2/1] bg-cover bg-center bg-no-repeat"
:style="{
'background-color': (project.featured_gallery ?? project.gallery[0]) ? null : toColor,
'background-color': project.featured_gallery ?? project.gallery[0] ? null : toColor,
'background-image': `url(${
project.featured_gallery ??
project.gallery[0] ??

View File

@@ -191,8 +191,7 @@ const handleClose = async () => {
position: absolute;
height: 100vh;
width: 100vw;
background:
linear-gradient(180deg, rgba(66, 131, 92, 0.275) 0%, rgba(17, 35, 43, 0.5) 97.29%),
background: linear-gradient(180deg, rgba(66, 131, 92, 0.275) 0%, rgba(17, 35, 43, 0.5) 97.29%),
linear-gradient(0deg, rgba(22, 24, 28, 0.64), rgba(22, 24, 28, 0.64));
z-index: 9997;
}

View File

@@ -1,7 +1,8 @@
<script setup lang="ts">
import { DownloadIcon, ExternalIcon, RefreshCwIcon, SpinnerIcon, XIcon } from '@modrinth/assets'
import { ButtonStyled, commonMessages, defineMessages, ProgressBar, useVIntl } from '@modrinth/ui'
import { ButtonStyled, commonMessages, ProgressBar } from '@modrinth/ui'
import { formatBytes } from '@modrinth/utils'
import { defineMessages, useVIntl } from '@vintl/vintl'
import { ref } from 'vue'
import { injectAppUpdateDownloadProgress } from '@/providers/download-progress.ts'

View File

@@ -4,12 +4,11 @@ import {
Avatar,
ButtonStyled,
commonMessages,
defineMessages,
injectNotificationManager,
IntlFormatted,
useRelativeTime,
useVIntl,
} from '@modrinth/ui'
import { defineMessages, useVIntl } from '@vintl/vintl'
import { IntlFormatted } from '@vintl/vintl/components'
import { computed, onUnmounted, ref, watch } from 'vue'
import FriendsSection from '@/components/ui/friends/FriendsSection.vue'

View File

@@ -1,14 +1,8 @@
<script setup lang="ts">
import { MoreVerticalIcon, TrashIcon, UserIcon, XIcon } from '@modrinth/assets'
import {
Accordion,
Avatar,
ButtonStyled,
defineMessages,
OverflowMenu,
useVIntl,
} from '@modrinth/ui'
import { Accordion, Avatar, ButtonStyled, OverflowMenu } from '@modrinth/ui'
import { openUrl } from '@tauri-apps/plugin-opener'
import { defineMessages, useVIntl } from '@vintl/vintl'
import { useTemplateRef } from 'vue'
import ContextMenu from '@/components/ui/ContextMenu.vue'

View File

@@ -159,21 +159,20 @@ const reset_icon = () => {
const createInstance = async () => {
creatingInstance.value = true
const gameVersions = versions.value[0].game_versions
const gameVersion = gameVersions[0]
const loader =
versions.value[0].loaders[0] !== 'forge' &&
versions.value[0].loaders[0] !== 'fabric' &&
versions.value[0].loaders[0] !== 'quilt'
? 'vanilla'
: versions.value[0].loaders[0]
const loaders = versions.value[0].loaders
const loader = loaders.contains('fabric')
? 'fabric'
: loaders.contains('neoforge')
? 'neoforge'
: loaders.contains('forge')
? 'forge'
: loaders.contains('quilt')
? 'quilt'
: 'vanilla'
const id = await create(name.value, gameVersion, loader, 'latest', icon.value).catch(handleError)
const id = await create(
name.value,
versions.value[0].game_versions[0],
loader,
'latest',
icon.value,
).catch(handleError)
await installMod(id, versions.value[0].id).catch(handleError)

View File

@@ -4,13 +4,12 @@ import {
Avatar,
ButtonStyled,
Checkbox,
defineMessages,
injectNotificationManager,
OverflowMenu,
useVIntl,
} from '@modrinth/ui'
import { convertFileSrc } from '@tauri-apps/api/core'
import { open } from '@tauri-apps/plugin-dialog'
import { defineMessages, useVIntl } from '@vintl/vintl'
import { computed, type Ref, ref, watch } from 'vue'
import { useRouter } from 'vue-router'

View File

@@ -1,5 +1,6 @@
<script setup lang="ts">
import { Checkbox, defineMessages, injectNotificationManager, useVIntl } from '@modrinth/ui'
import { Checkbox, injectNotificationManager } from '@modrinth/ui'
import { defineMessages, useVIntl } from '@vintl/vintl'
import { computed, ref, watch } from 'vue'
import { edit } from '@/helpers/profile'

View File

@@ -16,9 +16,7 @@ import {
Checkbox,
Chips,
Combobox,
defineMessages,
injectNotificationManager,
useVIntl,
} from '@modrinth/ui'
import {
formatCategory,
@@ -27,6 +25,8 @@ import {
type Project,
type Version,
} from '@modrinth/utils'
import ModalWrapper from '@/components/ui/modal/ModalWrapper.vue'
import { defineMessages, useVIntl } from '@vintl/vintl'
import dayjs from 'dayjs'
import { computed, type ComputedRef, type Ref, ref, shallowRef, watch } from 'vue'
@@ -44,6 +44,10 @@ import type {
ManifestLoaderVersion,
} from '../../../helpers/types'
import { initAuthlibPatching } from '@/helpers/utils.js'
const authLibPatchingModal = ref(null)
const isAuthLibPatchedSuccess = ref(false)
const isAuthLibPatching = ref(false)
const { handleError } = injectNotificationManager()
const { formatMessage } = useVIntl()
@@ -473,9 +477,43 @@ const messages = defineMessages({
defaultMessage: 'reinstall',
},
})
async function handleInitAuthLibPatching(ismojang: boolean) {
isAuthLibPatching.value = true
let state = false
let instance_path = props.instance.loader_version != null ? props.instance.game_version + "-" + props.instance.loader_version : props.instance.game_version
try {
state = await initAuthlibPatching(instance_path, ismojang)
} catch (err) {
console.error(err)
}
isAuthLibPatching.value = false
isAuthLibPatchedSuccess.value = state
authLibPatchingModal.value.show()
}
</script>
<template>
<ModalWrapper
ref="authLibPatchingModal"
:header="'AuthLib installation report'"
:closable="true"
@close="authLibPatchingModal.hide()"
>
<div class="modal-body">
<h2 class="text-lg font-bold text-contrast space-y-2">
<p class="flex items-center gap-2 neon-text">
<span v-if="isAuthLibPatchedSuccess" class="neon-text">
AuthLib installation completed successfully! Now you can log in and play!
</span>
<span v-else class="neon-text">
Failed to install AuthLib. It's possible that no compatible AuthLib version was found for the selected game and/or mod loader version.
There may also be a problem with accessing resources behind CloudFlare.
</span>
</p>
</h2>
</div>
</ModalWrapper>
<ConfirmModalWrapper
ref="repairConfirmModal"
:title="formatMessage(messages.repairConfirmTitle)"
@@ -753,6 +791,24 @@ const messages = defineMessages({
</button>
</ButtonStyled>
</div>
<h2 class="m-0 mt-4 text-lg font-extrabold text-contrast block">
<div v-if="isAuthLibPatching" class="w-6 h-6 cursor-pointer hover:brightness-75 neon-icon pulse">
<SpinnerIcon class="size-4 animate-spin" />
</div>
Auth system (Skins) <span class="text-sm font-bold px-2 bg-brand-highlight text-brand rounded-full">Beta</span>
</h2>
<div class="mt-4 flex gap-2">
<ButtonStyled class="neon-button neon">
<button :disabled="isAuthLibPatching" @click="handleInitAuthLibPatching(true)">
Install Microsoft
</button>
</ButtonStyled>
<ButtonStyled class="neon-button neon">
<button :disabled="isAuthLibPatching" @click="handleInitAuthLibPatching(false) ">
Install Ely.By
</button>
</ButtonStyled>
</div>
</template>
<template v-else>
<template v-if="instance.linked_data && instance.linked_data.locked">

View File

@@ -1,6 +1,7 @@
<script setup lang="ts">
import { CheckCircleIcon, XCircleIcon } from '@modrinth/assets'
import { Checkbox, defineMessages, injectNotificationManager, Slider, useVIntl } from '@modrinth/ui'
import { Checkbox, injectNotificationManager, Slider } from '@modrinth/ui'
import { defineMessages, useVIntl } from '@vintl/vintl'
import { computed, readonly, ref, watch } from 'vue'
import JavaSelector from '@/components/ui/JavaSelector.vue'
@@ -8,7 +9,7 @@ import useMemorySlider from '@/composables/useMemorySlider'
import { edit, get_optimal_jre_key } from '@/helpers/profile'
import { get } from '@/helpers/settings.ts'
import type { AppSettings, InstanceSettingsTabProps } from '../../../helpers/types'
import type { AppSettings, InstanceSettingsTabProps, MemorySettings } from '../../../helpers/types'
const { handleError } = injectNotificationManager()
const { formatMessage } = useVIntl()
@@ -21,12 +22,12 @@ const overrideJavaInstall = ref(!!props.instance.java_path)
const optimalJava = readonly(await get_optimal_jre_key(props.instance.path).catch(handleError))
const javaInstall = ref({ path: optimalJava.path ?? props.instance.java_path })
const overrideJavaArgs = ref((props.instance.extra_launch_args?.length ?? 0) > 0)
const overrideJavaArgs = ref(props.instance.extra_launch_args?.length !== undefined)
const javaArgs = ref(
(props.instance.extra_launch_args ?? globalSettings.extra_launch_args).join(' '),
)
const overrideEnvVars = ref((props.instance.custom_env_vars?.length ?? 0) > 0)
const overrideEnvVars = ref(props.instance.custom_env_vars?.length !== undefined)
const envVars = ref(
(props.instance.custom_env_vars ?? globalSettings.custom_env_vars)
.map((x) => x.join('='))
@@ -41,23 +42,36 @@ const { maxMemory, snapPoints } = (await useMemorySlider().catch(handleError)) a
}
const editProfileObject = computed(() => {
return {
java_path:
overrideJavaInstall.value && javaInstall.value.path !== ''
? javaInstall.value.path.replace('java.exe', 'javaw.exe')
: null,
extra_launch_args: overrideJavaArgs.value
? javaArgs.value.trim().split(/\s+/).filter(Boolean)
: null,
custom_env_vars: overrideEnvVars.value
? envVars.value
.trim()
.split(/\s+/)
.filter(Boolean)
.map((x) => x.split('=').filter(Boolean))
: null,
memory: overrideMemorySettings.value ? memory.value : null,
const editProfile: {
java_path?: string
extra_launch_args?: string[]
custom_env_vars?: string[][]
memory?: MemorySettings
} = {}
if (overrideJavaInstall.value) {
if (javaInstall.value.path !== '') {
editProfile.java_path = javaInstall.value.path.replace('java.exe', 'javaw.exe')
}
}
if (overrideJavaArgs.value) {
editProfile.extra_launch_args = javaArgs.value.trim().split(/\s+/).filter(Boolean)
}
if (overrideEnvVars.value) {
editProfile.custom_env_vars = envVars.value
.trim()
.split(/\s+/)
.filter(Boolean)
.map((x) => x.split('=').filter(Boolean))
}
if (overrideMemorySettings.value) {
editProfile.memory = memory.value
}
return editProfile
})
watch(

View File

@@ -1,5 +1,6 @@
<script setup lang="ts">
import { Checkbox, defineMessages, injectNotificationManager, Toggle, useVIntl } from '@modrinth/ui'
import { Checkbox, injectNotificationManager, Toggle } from '@modrinth/ui'
import { defineMessages, useVIntl } from '@vintl/vintl'
import { computed, type Ref, ref, watch } from 'vue'
import { edit } from '@/helpers/profile'
@@ -25,16 +26,20 @@ const fullscreenSetting: Ref<boolean> = ref(
)
const editProfileObject = computed(() => {
if (!overrideWindowSettings.value) {
return {
force_fullscreen: null,
game_resolution: null,
const editProfile: {
force_fullscreen?: boolean
game_resolution?: [number, number]
} = {}
if (overrideWindowSettings.value) {
editProfile.force_fullscreen = fullscreenSetting.value
if (!fullscreenSetting.value) {
editProfile.game_resolution = resolution.value
}
}
return {
force_fullscreen: fullscreenSetting.value,
game_resolution: fullscreenSetting.value ? null : resolution.value,
}
return editProfile
})
watch(
@@ -90,6 +95,14 @@ const messages = defineMessages({
<Checkbox
v-model="overrideWindowSettings"
:label="formatMessage(messages.customWindowSettings)"
@update:model-value="
(value) => {
if (!value) {
resolution = globalSettings.game_resolution
fullscreenSetting = globalSettings.force_fullscreen
}
}
"
/>
<div class="mt-2 flex items-center gap-4 justify-between">
<div>

View File

@@ -6,22 +6,15 @@ import {
AstralRinthLogo,
DownloadIcon,
SpinnerIcon,
LanguagesIcon,
PaintbrushIcon,
ReportIcon,
SettingsIcon,
ShieldIcon,
} from '@modrinth/assets'
import {
commonMessages,
defineMessage,
defineMessages,
ProgressBar,
TabbedModal,
useVIntl,
} from '@modrinth/ui'
import { ProgressBar, TabbedModal } from '@modrinth/ui'
import { getVersion } from '@tauri-apps/api/app'
import { platform as getOsPlatform, version as getOsVersion } from '@tauri-apps/plugin-os'
import { defineMessage, defineMessages, useVIntl } from '@vintl/vintl'
import { computed, ref, watch } from 'vue'
import ModalWrapper from '@/components/ui/modal/ModalWrapper.vue'
@@ -29,12 +22,11 @@ import AppearanceSettings from '@/components/ui/settings/AppearanceSettings.vue'
import DefaultInstanceSettings from '@/components/ui/settings/DefaultInstanceSettings.vue'
import FeatureFlagSettings from '@/components/ui/settings/FeatureFlagSettings.vue'
import JavaSettings from '@/components/ui/settings/JavaSettings.vue'
import LanguageSettings from '@/components/ui/settings/LanguageSettings.vue'
import PrivacySettings from '@/components/ui/settings/PrivacySettings.vue'
import ResourceManagementSettings from '@/components/ui/settings/ResourceManagementSettings.vue'
import { get, set } from '@/helpers/settings.ts'
// This code is modified by AstralRinth
// [AR] Imports
import { installState, getRemote, updateState } from '@/helpers/update.js'
const updateModalView = ref(null)
@@ -74,15 +66,6 @@ const tabs = [
icon: PaintbrushIcon,
content: AppearanceSettings,
},
{
name: defineMessage({
id: 'app.settings.tabs.language',
defaultMessage: 'Language',
}),
icon: LanguagesIcon,
content: LanguageSettings,
badge: commonMessages.beta,
},
{
name: defineMessage({
id: 'app.settings.tabs.privacy',

View File

@@ -7,8 +7,9 @@ import {
MonitorIcon,
WrenchIcon,
} from '@modrinth/assets'
import { Avatar, defineMessage, TabbedModal, type TabbedModalTab, useVIntl } from '@modrinth/ui'
import { Avatar, TabbedModal, type TabbedModalTab } from '@modrinth/ui'
import { convertFileSrc } from '@tauri-apps/api/core'
import { defineMessage, useVIntl } from '@vintl/vintl'
import { ref } from 'vue'
import GeneralSettings from '@/components/ui/instance_settings/GeneralSettings.vue'

View File

@@ -21,7 +21,7 @@ async function updateJavaVersion(version) {
}
</script>
<template>
<div v-for="(javaVersion, index) in [25, 21, 17, 8]" :key="`java-${javaVersion}`">
<div v-for="(javaVersion, index) in [21, 17, 8]" :key="`java-${javaVersion}`">
<h2 class="m-0 text-lg font-extrabold text-contrast" :class="{ 'mt-4': index !== 0 }">
Java {{ javaVersion }} location
</h2>

View File

@@ -1,71 +0,0 @@
<script setup lang="ts">
import {
Admonition,
AutoLink,
IntlFormatted,
LanguageSelector,
languageSelectorMessages,
LOCALES,
useVIntl,
} from '@modrinth/ui'
import { ref, watch } from 'vue'
import { get, set } from '@/helpers/settings.ts'
import i18n from '@/i18n.config'
const { formatMessage } = useVIntl()
const platform = formatMessage(languageSelectorMessages.platformApp)
const settings = ref(await get())
watch(
settings,
async () => {
await set(settings.value)
},
{ deep: true },
)
const $isChanging = ref(false)
async function onLocaleChange(newLocale: string) {
if (settings.value.locale === newLocale) return
$isChanging.value = true
try {
i18n.global.locale.value = newLocale
settings.value.locale = newLocale
} finally {
$isChanging.value = false
}
}
</script>
<template>
<h2 class="m-0 text-lg font-extrabold text-contrast">Language</h2>
<Admonition type="warning" class="mt-2 mb-4">
{{ formatMessage(languageSelectorMessages.languageWarning, { platform }) }}
</Admonition>
<p class="m-0 mb-4">
<IntlFormatted
:message-id="languageSelectorMessages.languagesDescription"
:values="{ platform }"
>
<template #~crowdin-link="{ children }">
<AutoLink to="https://translate.modrinth.com">
<component :is="() => children" />
</AutoLink>
</template>
</IntlFormatted>
</p>
<LanguageSelector
:current-locale="settings.locale"
:locales="LOCALES"
:on-locale-change="onLocaleChange"
:is-changing="$isChanging"
/>
</template>

View File

@@ -15,10 +15,10 @@ import {
OverflowMenu,
SmartClickable,
useRelativeTime,
useVIntl,
} from '@modrinth/ui'
import { capitalizeString } from '@modrinth/utils'
import { convertFileSrc } from '@tauri-apps/api/core'
import { useVIntl } from '@vintl/vintl'
import type { Dayjs } from 'dayjs'
import dayjs from 'dayjs'
import { computed, nextTick, onMounted, onUnmounted, ref } from 'vue'

View File

@@ -1,8 +1,6 @@
<script setup lang="ts">
import { LoaderCircleIcon } from '@modrinth/assets'
import type { GameVersion } from '@modrinth/ui'
import { GAME_MODES, HeadingLink, injectNotificationManager } from '@modrinth/ui'
import { platform } from '@tauri-apps/plugin-os'
import type { Dayjs } from 'dayjs'
import dayjs from 'dayjs'
import { computed, onMounted, onUnmounted, ref, watch } from 'vue'
@@ -41,7 +39,6 @@ const props = defineProps<{
const theme = useTheming()
const jumpBackInItems = ref<JumpBackInItem[]>([])
const loading = ref(true)
const serverData = ref<Record<string, ServerData>>({})
const protocolVersions = ref<Record<string, ProtocolVersion | null>>({})
const gameVersions = ref<GameVersion[]>(await get_game_versions().catch(() => []))
@@ -49,11 +46,6 @@ const gameVersions = ref<GameVersion[]>(await get_game_versions().catch(() => []
const MIN_JUMP_BACK_IN = 3
const MAX_JUMP_BACK_IN = 6
const TWO_WEEKS_AGO = dayjs().subtract(14, 'day')
const MAX_LINUX_POPULATES = 3
// Track populate calls on Linux to prevent server ping spam
const isLinux = platform() === 'linux'
const linuxPopulateCount = ref(0)
type BaseJumpBackInItem = {
last_played: Dayjs
@@ -79,19 +71,11 @@ watch([() => props.recentInstances, () => showWorlds.value], async () => {
})
})
populateJumpBackIn()
.catch(() => {
console.error('Failed to populate jump back in')
})
.finally(() => {
loading.value = false
})
await populateJumpBackIn().catch(() => {
console.error('Failed to populate jump back in')
})
async function populateJumpBackIn() {
// On Linux, limit automatic populates to prevent server ping spam
if (isLinux && linuxPopulateCount.value >= MAX_LINUX_POPULATES) return
if (isLinux) linuxPopulateCount.value++
console.info('Repopulating jump back in...')
const worldItems: WorldJumpBackInItem[] = []
@@ -240,7 +224,6 @@ const checkProcesses = async () => {
onMounted(() => {
checkProcesses()
linuxPopulateCount.value = 0
})
onUnmounted(() => {
@@ -250,15 +233,7 @@ onUnmounted(() => {
</script>
<template>
<div v-if="loading" class="flex flex-col gap-2">
<span class="flex mt-1 mb-3 leading-none items-center gap-1 text-primary text-lg font-bold">
Jump back in
</span>
<div class="text-center py-4">
<LoaderCircleIcon class="mx-auto size-8 animate-spin text-contrast" />
</div>
</div>
<div v-else-if="jumpBackInItems.length > 0" class="flex flex-col gap-2">
<div v-if="jumpBackInItems.length > 0" class="flex flex-col gap-2">
<HeadingLink v-if="theme.getFeatureFlag('worlds_tab')" to="/worlds" class="mt-1">
Jump back in
</HeadingLink>

View File

@@ -17,19 +17,18 @@ import {
UserIcon,
XIcon,
} from '@modrinth/assets'
import type { MessageDescriptor } from '@modrinth/ui'
import {
Avatar,
ButtonStyled,
commonMessages,
defineMessages,
OverflowMenu,
SmartClickable,
useRelativeTime,
useVIntl,
} from '@modrinth/ui'
import { formatNumber, getPingLevel } from '@modrinth/utils'
import { convertFileSrc } from '@tauri-apps/api/core'
import type { MessageDescriptor } from '@vintl/vintl'
import { defineMessages, useVIntl } from '@vintl/vintl'
import dayjs from 'dayjs'
import { Tooltip } from 'floating-vue'
import type { Component } from 'vue'
@@ -189,9 +188,7 @@ const messages = defineMessages({
>
<Avatar
:src="
world.type === 'server' && serverStatus
? (serverStatus.favicon ?? world.icon)
: world.icon
world.type === 'server' && serverStatus ? serverStatus.favicon ?? world.icon : world.icon
"
size="48px"
/>

View File

@@ -1,12 +1,7 @@
<script setup lang="ts">
import { PlayIcon, PlusIcon, XIcon } from '@modrinth/assets'
import {
ButtonStyled,
commonMessages,
defineMessages,
injectNotificationManager,
useVIntl,
} from '@modrinth/ui'
import { ButtonStyled, commonMessages, injectNotificationManager } from '@modrinth/ui'
import { defineMessages, useVIntl } from '@vintl/vintl'
import { ref } from 'vue'
import InstanceModalTitlePrefix from '@/components/ui/modal/InstanceModalTitlePrefix.vue'

View File

@@ -1,12 +1,7 @@
<script setup lang="ts">
import { SaveIcon, XIcon } from '@modrinth/assets'
import {
ButtonStyled,
commonMessages,
defineMessage,
injectNotificationManager,
useVIntl,
} from '@modrinth/ui'
import { ButtonStyled, commonMessages, injectNotificationManager } from '@modrinth/ui'
import { defineMessage, useVIntl } from '@vintl/vintl'
import { computed, ref } from 'vue'
import ModalWrapper from '@/components/ui/modal/ModalWrapper.vue'

View File

@@ -1,13 +1,7 @@
<script setup lang="ts">
import { ChevronRightIcon, SaveIcon, UndoIcon, XIcon } from '@modrinth/assets'
import {
Avatar,
ButtonStyled,
commonMessages,
defineMessages,
injectNotificationManager,
useVIntl,
} from '@modrinth/ui'
import { Avatar, ButtonStyled, commonMessages, injectNotificationManager } from '@modrinth/ui'
import { defineMessages, useVIntl } from '@vintl/vintl'
import { computed, ref } from 'vue'
import ModalWrapper from '@/components/ui/modal/ModalWrapper.vue'

View File

@@ -1,5 +1,6 @@
<script setup lang="ts">
import { Checkbox, defineMessage, useVIntl } from '@modrinth/ui'
import { Checkbox } from '@modrinth/ui'
import { defineMessage, useVIntl } from '@vintl/vintl'
import { computed } from 'vue'
const { formatMessage } = useVIntl()

View File

@@ -1,5 +1,6 @@
<script setup lang="ts">
import { Combobox, defineMessages, type MessageDescriptor, useVIntl } from '@modrinth/ui'
import { Combobox } from '@modrinth/ui'
import { defineMessages, type MessageDescriptor, useVIntl } from '@vintl/vintl'
import type { ServerPackStatus } from '@/helpers/worlds.ts'

View File

@@ -17,7 +17,7 @@ export async function offline_login(name) {
return await invoke('plugin:auth|offline_login', { name: name })
}
// This code is modified by AstralRinth
// [AR] • Feature
export async function elyby_login(uuid, login, accessToken) {
return await invoke('plugin:auth|elyby_login', {
uuid,
@@ -26,7 +26,7 @@ export async function elyby_login(uuid, login, accessToken) {
})
}
// This code is modified by AstralRinth
// [AR] • Feature
export async function elyby_auth_authenticate(login, password, clientToken) {
return await invoke('plugin:auth|elyby_auth_authenticate', {
login,

View File

@@ -97,8 +97,3 @@ export async function warning_listener(callback) {
export async function friend_listener(callback) {
return await listen('friend', (event) => callback(event.payload))
}
// This code is modified by AstralRinth
export async function info_listener(callback) {
return await listen('info', (event) => callback(event.payload))
}

View File

@@ -36,7 +36,6 @@ export type AppSettings = {
max_concurrent_writes: number
theme: ColorTheme
locale: string
default_page: 'home' | 'library'
collapsed_navigation: boolean
hide_nametag_skins_page: boolean

View File

@@ -27,17 +27,22 @@ export async function getOS() {
return await invoke('plugin:utils|get_os')
}
// This code is modified by AstralRinth
// [AR] Feature. Updater
export async function initUpdateLauncher(downloadUrl, filename, osType, autoUpdateSupported) {
console.log('Downloading build', downloadUrl, filename, osType, autoUpdateSupported)
return await invoke('plugin:utils|init_update_launcher', { downloadUrl, filename, osType, autoUpdateSupported })
}
// This code is modified by AstralRinth
// [AR] Migration. Patch
export async function applyMigrationFix(eol) {
return await invoke('plugin:utils|apply_migration_fix', { eol })
}
// [AR] Feature. Ely.by
export async function initAuthlibPatching(minecraftVersion, isMojang) {
return await invoke('plugin:utils|init_authlib_patching', { minecraftVersion, isMojang })
}
export async function isNetworkMetered() {
return await invoke('plugin:utils|is_network_metered')
}

View File

@@ -1,18 +0,0 @@
import { buildLocaleMessages, createMessageCompiler, type CrowdinMessages } from '@modrinth/ui'
import { createI18n } from 'vue-i18n'
const localeModules = import.meta.glob<{ default: CrowdinMessages }>('./locales/*/index.json', {
eager: true,
})
const i18n = createI18n({
legacy: false,
locale: 'en-US',
fallbackLocale: 'en-US',
messageCompiler: createMessageCompiler(),
missingWarn: false,
fallbackWarn: false,
messages: buildLocaleMessages(localeModules),
})
export default i18n

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "قد تكون خوادم مصادقة ماينكرافت معطلة حاليًا. تحقق من اتصالك بالإنترنت وحاول مرة أخرى لاحقًا."
},
"app.auth-servers.unreachable.header": {
"message": "تعذر الوصول إلى خوادم المصادقة"
},
"app.settings.developer-mode-enabled": {
"message": "تم تفعيل وضع المطوّر."
},
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "تثبيتات جافا"
},
"app.settings.tabs.language": {
"message": "اللغة"
},
"app.settings.tabs.privacy": {
"message": "الخصوصية"
},
@@ -33,7 +24,7 @@
"message": "إدارة الموارد"
},
"app.update-toast.body": {
"message": "تطبيق Modrinth الإصدار {version} جاهز للتثبيت! أعد التحميل لتحديث التطبيق الآن، أو سيتم التحديث تلقائيًا عند إغلاق تطبيق Modrinth."
"message": "تطبيق Modrinth الإصدار {version} جاهز للتثبيت!\nأعد التحميل لتحديث التطبيق الآن، أو سيتم التحديث تلقائيًا عند إغلاق تطبيق Modrinth."
},
"app.update-toast.body.download-complete": {
"message": "تطبيق Modrinth الإصدار {version} جاهز للتثبيت!\nأعد التحميل لتحديث التطبيق الآن، أو سيتم التحديث تلقائيًا عند إغلاق تطبيق Modrinth."

View File

@@ -1,12 +1,6 @@
{
"app.auth-servers.unreachable.body": {
"message": "Mahimong dili maabot karon ang mga Minecraft nga magsisilbi sa pagpamatuod. Susiha ang imong pagkakatay sa internet ug unya sulayi pag-usab."
},
"app.auth-servers.unreachable.header": {
"message": "Dili maabot ang mga magsisilbi sa pagpamatuod"
},
"app.settings.developer-mode-enabled": {
"message": "Nagadagan ang paagi sa tigpalambo."
"message": "Gipaandar ang paagi sa tigpalambo."
},
"app.settings.downloading": {
"message": "Gakarganug sa v{version}"
@@ -30,13 +24,13 @@
"message": "Pagdumala sa kahinguhaan"
},
"app.update-toast.body": {
"message": "Andam na mataud ang Modrinth App v{version}! Sa pagpasibo karun pagkarga kausab, kun unya sa kinaugalingon kini sunod sa pagtak-op sa Modrinth App."
"message": "Andam na mataud ang Modrinth App v{version}! Pagkarga kausab aron mapasibo, o kinaugalingon pagtak-op sa Modrinth App."
},
"app.update-toast.body.download-complete": {
"message": "Nahuman ang pagkarganug sa Modrinth App v{version}. Sa pagpasibo karun pagkarga kausab, kun unya sa kinaugalingon kini sunod sa pagtak-op sa Modrinth App."
"message": "Nahuman ang pagkarganug sa Modrinth App v{version}. Pagkarga kausab aron mapasibo, o kinaugalingon pagtak-op sa Modrinth App."
},
"app.update-toast.body.metered": {
"message": "Magamit na karon ang Modrinth App v{version}! Wala namo karganugi daan kay inihap man ang imong pum-ot."
"message": "Magamit na karon ang Modrinth App! Wala namo karganugi daan kay inihap man ang imong pum-ot."
},
"app.update-toast.changelog": {
"message": "Talaan sa Kausaban"
@@ -60,7 +54,7 @@
"message": "Panuplok diri aron malantaw ang talaan sa kausaban."
},
"app.update.complete-toast.title": {
"message": "Malampusong nataud ang hubad nga {version}!"
"message": "Malampusong nataud ang bersiyon nga {version}!"
},
"app.update.download-update": {
"message": "Karganugi ang kausaban"
@@ -132,7 +126,7 @@
"message": "{title} - {count}"
},
"friends.sign-in-to-add-friends": {
"message": "<link>Pag-sign-in sa Modrinth nga kaakohan</link> aron makadugang og mga higala ug mahibal-an ang ginadula nila!"
"message": "<link>Pag-sign-in sa Modrinth account</link> aron makadugang og mga higala ug mahibal-an ang ginadula nila!"
},
"instance.add-server.add-and-play": {
"message": "Idugang ug dulaa"
@@ -213,7 +207,7 @@
"message": "Paghulad sa pananglitan"
},
"instance.settings.tabs.general.duplicate-instance.description": {
"message": "Himoan og hulari kining pananglitan, apil na ang imong mga kalibutan, paghan-ay, kausaban, ug uban pa."
"message": "Buhatan og awat kining pananglitan, apil na ang imong mga kalibutan, paghan-ay, kausaban, ug uban pa."
},
"instance.settings.tabs.general.edit-icon": {
"message": "Usba ang amoy"
@@ -231,7 +225,7 @@
"message": "Mga pundok sa librarya"
},
"instance.settings.tabs.general.library-groups.create": {
"message": "Paghimo og bag-o nga pundok"
"message": "Pagbuhat og bag-o nga pundok"
},
"instance.settings.tabs.general.library-groups.description": {
"message": "Gitugotan sa mga pundok sa librarya nga imong mahan-ay ang imong mga pananglitan sa nagkalain-lain nga bahin sa imong librarya."
@@ -285,13 +279,13 @@
"message": "Pagtaud"
},
"instance.settings.tabs.installation.change-version.already-installed.modded": {
"message": "Nataud na man ang {platform} {version} alang sa Minecraft {game_version}"
"message": "Nataud naman ang {platform} {version} alang sa Minecraft {game_version}"
},
"instance.settings.tabs.installation.change-version.already-installed.vanilla": {
"message": "Nataud na man ang Banilya nga {game_version}"
"message": "Nataud naman ang Banilya nga {game_version}"
},
"instance.settings.tabs.installation.change-version.button": {
"message": "Pulihan og hubad"
"message": "Pulihan og bersiyon"
},
"instance.settings.tabs.installation.change-version.button.install": {
"message": "Itaud"
@@ -300,10 +294,10 @@
"message": "Gataud"
},
"instance.settings.tabs.installation.change-version.cannot-while-fetching": {
"message": "Gapangita og mga hubad sa putos sa kausaban"
"message": "Gapangita og mga bersiyon sa mga putos sa kausaban"
},
"instance.settings.tabs.installation.change-version.in-progress": {
"message": "Gataud sa bag-o nga hubad"
"message": "Gataud sa bag-o nga bersiyon"
},
"instance.settings.tabs.installation.currently-installed": {
"message": "Pagkakarong taud"
@@ -311,11 +305,8 @@
"instance.settings.tabs.installation.debug-information": {
"message": "Kasayoran sa pagputli:"
},
"instance.settings.tabs.installation.fetching-modpack-details": {
"message": "Gapangita og mga kinuti sa putos sa kausaban"
},
"instance.settings.tabs.installation.game-version": {
"message": "Hubad sa dula"
"message": "Bersiyon sa dula"
},
"instance.settings.tabs.installation.install": {
"message": "Itaud"
@@ -324,20 +315,14 @@
"message": "Nagtaud karon"
},
"instance.settings.tabs.installation.loader-version": {
"message": "Hubad sa {loader}"
"message": "Bersiyon sa {loader}"
},
"instance.settings.tabs.installation.minecraft-version": {
"message": "Minecraft {version}"
},
"instance.settings.tabs.installation.no-connection": {
"message": "Dili makapangita og mga kinuti sa nakagapos nga putos sa kausapan. Palihug sa pagsusi sa imong pagkakutay sa internet."
},
"instance.settings.tabs.installation.no-loader-versions": {
"message": "Dili magamit ang {loader} sa Minecraft {version}. Sulayi ang ubang tigkarga sa kausaban."
},
"instance.settings.tabs.installation.no-modpack-found": {
"message": "Nakakatay kining pananglitan sa usa ka putos sa kausaban, apan kining putos sa kausaban dili makita didto sa Modrinth."
},
"instance.settings.tabs.installation.platform": {
"message": "Pantawan"
},
@@ -348,13 +333,10 @@
"message": "Nagtaud pag-usab sa putos sa kusaban"
},
"instance.settings.tabs.installation.reinstall.confirm.description": {
"message": "Mahimo nga mobalik sa sinugdan ang tanang gitaod ug giusab nga sulod sa unsay giandam sa putos sa kausaban, tangtangon ang mga kausaban ug sulod nga imong gidugang sa lintunganay nga putos sa kausaban. Mahimo nga maayo ang mga tuhaw nga batasan kon naay pagbag-o sa pananglitan, apan kon gasalig na ang imong kalibutan sa dinugang nga sulod, mahimo nga madaut ani ang daan nga mga kalibutan."
},
"instance.settings.tabs.installation.reinstall.confirm.title": {
"message": "Segurado kang gusto nimong mataud pag-usab kining pananglitan?"
"message": "Mahimo nga mobalik sa sinugdan ang tanang gitaod o giusab nga sulod sa unsay ihatag sa putos sa kausaban, tangtangon ang mga kausaban o sulod nga imong gidugang apil na ang lintunganay nga putos sa kausaban. Mahimo nga maayo ang mga tuhaw nga batasan kon naay pagbag-o sa pananglitan, apan kon gasalig na ang imong kalibutan sa dinugang nga sulod, mahimo nga madaut ani ang daan nga mga kalibutan."
},
"instance.settings.tabs.installation.reinstall.description": {
"message": "Mabalik ang mga sulod sa pananglitan sa sinugdang kahimtang, tangtangon ang mga kausaban ug sulod nga imong gidugang sa lintunganay nga putos sa kausaban."
"message": "Ibalik ang mga sulod sa pananglitan sa unang kahimtang, tangtangon ang mga kausaban o sulod nga imong gidugang apil na ang lintunganay nga putos sa kausaban."
},
"instance.settings.tabs.installation.reinstall.title": {
"message": "Itaud pag-usab ang putos sa kausaban"
@@ -366,7 +348,7 @@
"message": "Gaayo"
},
"instance.settings.tabs.installation.repair.confirm.description": {
"message": "Sa pag-ayo, mataud pagbalik ang mga sinaligan sa Minecraft ug mangita og mga kadunot. Mahimo nga masulbad niini ang mga isyu kun dili malunsad ang dula tungod sa mga kasaypan matud sa tiglunsad, apan dili ni masulbad ang mga isyu ug pagdusmog matud sa mga gitaud nga kausaban."
"message": "Sa pag-ayo, mataud pagbalik ang mga sinaligan sa Minecraft ug mangita og mga kadunot. Mahimo nga masulbad niini ang mga isyu kun dili malunsad ang dula tungod sa mga kasaypan matud sa tiglansad, apan dili ni masulbad ang mga isyu o pagdusmog matud sa mga gitaud nga kausaban."
},
"instance.settings.tabs.installation.repair.confirm.title": {
"message": "Ayohon ang pananglitan?"
@@ -378,10 +360,10 @@
"message": "Sa kasamtang pag-usab "
},
"instance.settings.tabs.installation.show-all-versions": {
"message": "Ipakita ang tanang hubad"
"message": "Ipakita ang tanang bersiyon"
},
"instance.settings.tabs.installation.tooltip.action.change-version": {
"message": "pulihan og hubad"
"message": "pulihan og bersiyon"
},
"instance.settings.tabs.installation.tooltip.action.install": {
"message": "itaud"
@@ -402,28 +384,22 @@
"message": "Dili maka-{action} samtang nag-ayo"
},
"instance.settings.tabs.installation.unknown-version": {
"message": "(diinilang hubad)"
"message": "(diinilang bersiyon)"
},
"instance.settings.tabs.installation.unlink.button": {
"message": "Pagbugto sa pananglitan"
},
"instance.settings.tabs.installation.unlink.confirm.description": {
"message": "Kun imong ipadayon, dili na nimo makatay kini pagbalik nga wala mohimo og bag-o nga pananglitan. Dili na ka makadawat og pagpasibo sa putos sa kausaban ug mahimo kining naandan nga."
},
"instance.settings.tabs.installation.unlink.confirm.title": {
"message": "Segurado kang gusto nimong mabugto kining pananglitan?"
"message": "Kun imong ipadayon, dili na nimo makatay pagbalik nga wala mohimo og bag-o nga pananglitan. Dili na ka makadawat og pagpasibo sa putos sa kausaban ug mahimo kining naandan nga."
},
"instance.settings.tabs.installation.unlink.description": {
"message": "Nakagapos kining pananglitan sa usa ka putos sa kausaban, pasabot ani nga dili mapasibo ang mga kausaban ug dili nimo mausab ang tigkarga sa kausaban ug ang hubad sa Minecraft. Kanunay nga mabugto kining pananglitan ug putos sa kausaban kon bugtohon."
"message": "Nakakatay kining pananglitan sa usa ka putos sa kausaban, pasabot ani nga dili mapasibo ang mga kausaban og dili nimo mausab ang tigkarga sa kausaban o ang bersiyon sa Minecraft. Kanunay nga mabugto kining pananglitan og putos sa kausabon kun tangtangon ang katay."
},
"instance.settings.tabs.installation.unlink.title": {
"message": "Bugtoi sa putos sa kausaban"
"message": "Pagbugto sa putos sa kausaban"
},
"instance.settings.tabs.java": {
"message": "Java ug memorya"
},
"instance.settings.tabs.java.environment-variables": {
"message": "Mga lantugi sa kalikopan"
"message": "Java at memorya"
},
"instance.settings.tabs.java.hooks": {
"message": "Mga kaw-it"
@@ -446,24 +422,15 @@
"instance.settings.tabs.window.fullscreen": {
"message": "Punong-tabil"
},
"instance.settings.tabs.window.fullscreen.description": {
"message": "Himuon nga mosugad ang dula sa punong-tabil paglansad (gamit ang options.txt)."
},
"instance.settings.tabs.window.height": {
"message": "Gitas-on"
},
"instance.settings.tabs.window.height.description": {
"message": "Ang gitas-on sa tamboanan sa dula kon malansad."
},
"instance.settings.tabs.window.height.enter": {
"message": "Ibutang ang gitas-on..."
},
"instance.settings.tabs.window.width": {
"message": "Gilapdon"
},
"instance.settings.tabs.window.width.description": {
"message": "Ang gilapdon sa tamboanan sa dula kon malansad."
},
"instance.settings.tabs.window.width.enter": {
"message": "Ibutang ang gilapdon..."
},
@@ -473,11 +440,8 @@
"instance.worlds.a_minecraft_server": {
"message": "Usa ka Minecraft nga Magsisilbi"
},
"instance.worlds.cant_connect": {
"message": "Dili makakutay sa magsisilbi"
},
"instance.worlds.copy_address": {
"message": "Hulari ang padad-anan"
"message": "Awata ang padad-anan"
},
"instance.worlds.dont_show_on_home": {
"message": "Ayaw pakit-a sa Puloy-anan"
@@ -485,24 +449,9 @@
"instance.worlds.filter.available": {
"message": "Magamit"
},
"instance.worlds.game_already_open": {
"message": "Bukas na man ang pananglitan"
},
"instance.worlds.hardcore": {
"message": "Mahanasnon nga paagi"
},
"instance.worlds.incompatible_server": {
"message": "Dili mobagay sa magsisilbi"
},
"instance.worlds.no_contact": {
"message": "Dili makahinabi sa magsisilbi"
},
"instance.worlds.no_server_quick_play": {
"message": "Dumalang makalukso ka lamang sa mga magsisilbing naa sa Minecraft Alpha 1.0.5+"
},
"instance.worlds.no_singleplayer_quick_play": {
"message": "Dumalang makalukso ka lamang sa mga inusarang dulang kalibutang naa sa Minecraft 1.20+"
},
"instance.worlds.play_instance": {
"message": "Dulai ang pananglitan"
},
@@ -518,15 +467,6 @@
"instance.worlds.world_in_use": {
"message": "Gigamit ang kalibotan"
},
"search.filter.locked.instance": {
"message": "Inako na sa pananglitan"
},
"search.filter.locked.instance-game-version.title": {
"message": "Inako na sa pananglitan ang hubad sa dula"
},
"search.filter.locked.instance-loader.title": {
"message": "Inako na sa pananglitan ang tigkarga sa laro"
},
"search.filter.locked.instance.sync": {
"message": "Pagdungan sa pananglitan"
}

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Autořizační servery Minecraftu aktuálně nejsou k dispozici. Zkontrolujte si své připojení k internetu a zkuste to znovu později."
},
"app.auth-servers.unreachable.header": {
"message": "Připojení k autorizačním serverům se nezdařilo"
},
"app.settings.developer-mode-enabled": {
"message": "Vývojářský režim povolen."
},
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Instalace Javy"
},
"app.settings.tabs.language": {
"message": "Jazyk"
},
"app.settings.tabs.privacy": {
"message": "Soukromí"
},
@@ -33,19 +24,19 @@
"message": "Správa zdrojů"
},
"app.update-toast.body": {
"message": "Aplikace Modrinth v{version} je připravena k instalaci! Naninstalujte aktualizaci nyní nebo automaticky po zavření aplikace Modrinth."
"message": "Modrinth App v{version} je připravena k instalaci! Znovu načtěte aktualizaci nyní nebo automaticky po zavření aplikace Modrinth."
},
"app.update-toast.body.download-complete": {
"message": "Stahování aplikace Modrinth v{version} bylo dokončeno. Naninstalujte aktualizaci nyní nebo automaticky po zavření aplikace Modrinth."
"message": "Modrinth App v{version} byla dokončena ke stažení. Znovu načtěte aktualizaci nyní nebo automaticky po zavření aplikace Modrinth."
},
"app.update-toast.body.metered": {
"message": "Aplikace Modrinth v{version} je nyní k dispozici! Protože jste v měřené síti, nebyla stažena automaticky."
"message": "Modrinth App v{version} je nyní k dispozici! Protože jste v síti s měřením, nebyla stažena automaticky."
},
"app.update-toast.changelog": {
"message": "Seznam změn"
},
"app.update-toast.download": {
"message": "Stahování ({size})"
"message": "Stáhnout ({size})"
},
"app.update-toast.downloading": {
"message": "Stahování..."
@@ -54,10 +45,10 @@
"message": "Načíst znovu"
},
"app.update-toast.title": {
"message": "Aktualizace je k dispozici"
"message": "K dispozici je aktualizace"
},
"app.update-toast.title.download-complete": {
"message": "Stahování bylo dokončeno"
"message": "Stahování dokončeno"
},
"app.update.complete-toast.text": {
"message": "Kliknutím sem zobrazíte seznam změn."
@@ -72,70 +63,7 @@
"message": "Stahování aktualizace ({percent}%)"
},
"app.update.reload-to-update": {
"message": "Restartovat aplikaci pro nainstalování aktualizace"
},
"friends.action.add-friend": {
"message": "Přidat přítele"
},
"friends.action.view-friend-requests": {
"message": "{count} {count, plural, one {žádost} few {žádosti} other {žádostí}} o přátelství"
},
"friends.add-friend.submit": {
"message": "Poslat žádost o přátelství"
},
"friends.add-friend.title": {
"message": "Přidávání kamaráda"
},
"friends.add-friend.username.description": {
"message": "Může být jiné než jejich Minecraft jméno!"
},
"friends.add-friend.username.placeholder": {
"message": "Zadejte uživatelské jméno Modrinth..."
},
"friends.add-friend.username.title": {
"message": "Jak se váš kamarád jmenuje na Modrinthu?"
},
"friends.add-friends-to-share": {
"message": "<link>Přidejte si přátelé</link> a podívejte se, co hrají!"
},
"friends.friend.cancel-request": {
"message": "Zrušit žádost"
},
"friends.friend.remove-friend": {
"message": "Odebrat přítele"
},
"friends.friend.request-sent": {
"message": "Žádost o přátelství odeslána"
},
"friends.friend.view-profile": {
"message": "Zobrazit profil"
},
"friends.heading": {
"message": "Kamarádi"
},
"friends.heading.active": {
"message": "Aktivní"
},
"friends.heading.offline": {
"message": "Offline"
},
"friends.heading.online": {
"message": "Online"
},
"friends.heading.pending": {
"message": "Čeká na vyřízení"
},
"friends.no-friends-match": {
"message": "Žádní přátelé neodpovídají '{query}''"
},
"friends.search-friends-placeholder": {
"message": "Hledat přátele..."
},
"friends.section.heading": {
"message": "{title} - {count}"
},
"friends.sign-in-to-add-friends": {
"message": "<link>Přihlašte se ke svému Modrinth účtu</link>, abyste jsi přidali přátele a uviděli co hrají!"
"message": "Znovu načíst pro nainstalování aktualizace"
},
"instance.add-server.add-and-play": {
"message": "Přidat a hrát"
@@ -150,7 +78,7 @@
"message": "Zapnuto"
},
"instance.add-server.resource-pack.prompt": {
"message": "Ptát se"
"message": "Na dotaz"
},
"instance.add-server.title": {
"message": "Přidat server"
@@ -159,7 +87,7 @@
"message": "Upravit server"
},
"instance.edit-world.hide-from-home": {
"message": "Skrýt z domovské obrazovky"
"message": "Schovat z domovské stránky"
},
"instance.edit-world.name": {
"message": "Název"
@@ -168,16 +96,16 @@
"message": "Minecraft svět"
},
"instance.edit-world.reset-icon": {
"message": "Resetovat ikonu"
"message": "Reset ikony"
},
"instance.edit-world.title": {
"message": "Upravit svět"
},
"instance.filter.disabled": {
"message": "Vypnuté projekty"
"message": "Vypnout projekty"
},
"instance.filter.updates-available": {
"message": "K dispozice jsou aktualizace"
"message": "Aktualizace jsou dostupné"
},
"instance.server-modal.address": {
"message": "Adresa"
@@ -189,19 +117,19 @@
"message": "Minecraft Server"
},
"instance.server-modal.resource-pack": {
"message": "Balíčky textur"
"message": "Balíček textur"
},
"instance.settings.tabs.general": {
"message": "Obecné"
},
"instance.settings.tabs.general.delete": {
"message": "Odstranit instalaci"
"message": "Smazat instanci"
},
"instance.settings.tabs.general.delete.button": {
"message": "Odstranit instalaci"
"message": "Smazat instanci"
},
"instance.settings.tabs.general.delete.description": {
"message": "Trvale smaže instalaci z vašeho zařízení, včetně vašich světů, konfigurací a veškerého nainstalovaného obsahu. Buďte opatrní, protože jakmile instalaci smažete, nebude možné ji obnovit."
"message": "Trvale smaže instanci z vašeho zařízení, včetně vašich světů, konfigurací a veškerého nainstalovaného obsahu. Buďte opatrní, protože jakmile instanci smažete, ne možné ji obnovit."
},
"instance.settings.tabs.general.deleting.button": {
"message": "Mazání..."
@@ -213,34 +141,34 @@
"message": "Nelze duplikovat při instalaci."
},
"instance.settings.tabs.general.duplicate-instance": {
"message": "Duplikovat instalaci"
"message": "Duplikovat instanci"
},
"instance.settings.tabs.general.duplicate-instance.description": {
"message": "Vytvoří kopii této instalace, včetně světů, konfigurací, modů atd."
"message": "Vytvoří kopii této instance, včetně světů, konfigurací, modů atd."
},
"instance.settings.tabs.general.edit-icon": {
"message": "Upravit ikonu"
},
"instance.settings.tabs.general.edit-icon.remove": {
"message": "Odstranit ikonu"
"message": "Icona odstranit"
},
"instance.settings.tabs.general.edit-icon.replace": {
"message": "Změnit ikonu"
"message": "Ikona replikace"
},
"instance.settings.tabs.general.edit-icon.select": {
"message": "Vybrat ikonu"
"message": "Výber ikona"
},
"instance.settings.tabs.general.library-groups": {
"message": "Skupina knihoven"
},
"instance.settings.tabs.general.library-groups.create": {
"message": "Vytvořit novou skupinu"
"message": "Vytvoří novou skupinu"
},
"instance.settings.tabs.general.library-groups.description": {
"message": "Skupiny knihoven vám umožňují uspořádat instalace do různých sekcí."
"message": "Skupiny knihoven vám umožňují uspořádat instance do různých sekcí v knihovně."
},
"instance.settings.tabs.general.library-groups.enter-name": {
"message": "Zadejte název skupiny"
"message": "Zadej název skupiny"
},
"instance.settings.tabs.general.name": {
"message": "Název"
@@ -267,7 +195,7 @@
"message": "Před spuštěním"
},
"instance.settings.tabs.hooks.pre-launch.description": {
"message": "Spouštějí se před spuštěním instalace."
"message": "Spouštějí se před spuštěním instance."
},
"instance.settings.tabs.hooks.pre-launch.enter": {
"message": "Zadejte příkaz k provedení před spuštěním..."
@@ -288,28 +216,28 @@
"message": "Instalace"
},
"instance.settings.tabs.installation.change-version.already-installed.modded": {
"message": "{platform} {version} pro Minecraft {game_version} již je nainstalována"
"message": "{platform} {version} pro Minecraft {game_version} již nainstalována"
},
"instance.settings.tabs.installation.change-version.already-installed.vanilla": {
"message": "Vanilla {game_version} již je nainstalována"
"message": "Vanilla {game_version} již nainstalována"
},
"instance.settings.tabs.installation.change-version.button": {
"message": "Změnit verzi"
"message": "Změnit instalaci"
},
"instance.settings.tabs.installation.change-version.button.install": {
"message": "Instalovat"
},
"instance.settings.tabs.installation.change-version.button.installing": {
"message": "Instalování"
"message": "Instalace"
},
"instance.settings.tabs.installation.change-version.cannot-while-fetching": {
"message": "Načítání verzí modpacku"
},
"instance.settings.tabs.installation.change-version.in-progress": {
"message": "Instalace nové verze"
"message": "Instalace nových verzí"
},
"instance.settings.tabs.installation.currently-installed": {
"message": "Aktuálně nainstalováno"
"message": "Aktuální instalace"
},
"instance.settings.tabs.installation.debug-information": {
"message": "Debugové informace:"
@@ -324,7 +252,7 @@
"message": "Instalovat"
},
"instance.settings.tabs.installation.install.in-progress": {
"message": "Probíhá instalace"
"message": "Probíhající instalace"
},
"instance.settings.tabs.installation.loader-version": {
"message": "{loader} verze"
@@ -333,13 +261,13 @@
"message": "Minecraft {version}"
},
"instance.settings.tabs.installation.no-connection": {
"message": "Nelze načíst podrobnosti o modpacku. Prosím, zkontrolujte své připojení k internetu."
"message": "Nelze načíst podrobnosti o modpacku. Zkontrolujte připojení k internetu."
},
"instance.settings.tabs.installation.no-loader-versions": {
"message": "{loader} není dostupný pro Minecraft {version}. Zkuste jiný mod loader."
},
"instance.settings.tabs.installation.no-modpack-found": {
"message": "Tato instalace je připojená k modpacku, který ake nebyl najit na Modrinthu."
"message": "Tato instalace je připojená k modpacku, ale modpack nebyl najit na Modrinthu."
},
"instance.settings.tabs.installation.platform": {
"message": "Platforma"
@@ -351,7 +279,7 @@
"message": "Přeinstalovávání modpacku"
},
"instance.settings.tabs.installation.reinstall.confirm.description": {
"message": "Přeinstalace resetuje veškerý nainstalovaný nebo upravený obsah kromě toho, co poskytuje modpack, a odstraní všechny módy nebo obsah, které jste přidali do původní instalace. To může opravit neočekávané chyby, ale pokud vaše světy závisejí na doinstalovaném obsahu, možná budou poškozeny."
"message": "Přeinstalace resetuje veškerý nainstalovaný nebo upravený obsah na to, co poskytuje modpack, a odstraní všechny mody nebo obsah, které jste přidali do původní instalaci. To může opravit neočekávané chyby, ale pokud vaše světy závisejí na nově instalovaném obsahu, možná budou poškozeny."
},
"instance.settings.tabs.installation.reinstall.confirm.title": {
"message": "Opravdu si přejete přeinstalovat tuto instalaci?"
@@ -384,7 +312,7 @@
"message": "Ukázat všechny verze"
},
"instance.settings.tabs.installation.tooltip.action.change-version": {
"message": "změnit verzi"
"message": "Změnit verzi"
},
"instance.settings.tabs.installation.tooltip.action.install": {
"message": "Instalovat"
@@ -504,7 +432,7 @@
"message": "Můžeš rovnou skočit na server pouze v Minecraftu Alpha 1.0.5+"
},
"instance.worlds.no_singleplayer_quick_play": {
"message": "Můžeš se rovnou připojit do světa jednoho hráče pouze v Minecraftu 1.20+"
"message": "Můžeš rovnou skočit do světa jednoho hráče pouze v Minecraftu 1.20+"
},
"instance.worlds.play_instance": {
"message": "Hrát instanci"

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Minecraft authentication servere kan måske være nede lige nu. Tjek din internet forbindelse og prøv igen senere."
},
"app.auth-servers.unreachable.header": {
"message": "Kan ikke nå autentificeringsservere"
},
"app.settings.developer-mode-enabled": {
"message": "Udvikler-tilstand aktiveret."
},
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Javainstallationer"
},
"app.settings.tabs.language": {
"message": "Sprog"
},
"app.settings.tabs.privacy": {
"message": "Privatliv"
},

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Die Authentifizierungsserver von Minecraft sind eventuell momentan nicht erreichbar. Überprüfe deine Internetverbindung und versuche es später erneut."
},
"app.auth-servers.unreachable.header": {
"message": "Authentifizierungsserver sind nicht erreichbar"
},
"app.settings.developer-mode-enabled": {
"message": "Entwicklermodus aktiviert."
},
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Java Installationen"
},
"app.settings.tabs.language": {
"message": "Sprache"
},
"app.settings.tabs.privacy": {
"message": "Datenschutz"
},

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Die Authentifizierungsserver von Minecraft sind eventuell momentan nicht erreichbar. Überprüfe deine Internetverbindung und versuche es später erneut."
},
"app.auth-servers.unreachable.header": {
"message": "Authentifizierungsserver sind nicht erreichbar"
},
"app.settings.developer-mode-enabled": {
"message": "Entwicklermodus aktiviert."
},
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Java-Installationen"
},
"app.settings.tabs.language": {
"message": "Sprache"
},
"app.settings.tabs.privacy": {
"message": "Datenschutz"
},
@@ -33,10 +24,10 @@
"message": "Ressourcenmanagement"
},
"app.update-toast.body": {
"message": "Modrinth App v{version} ist bereit zur Installation! Jetzt neu laden, um zu aktualisieren, oder automatisch beim Schließen der Modrinth App."
"message": "Modrinth App v{version} ist bereit zur Installation! Neu laden, um jetzt zu aktualisieren, oder automatisch, wenn du die Modrinth App schließt."
},
"app.update-toast.body.download-complete": {
"message": "Modrinth App v{version} ist bereit zur Installation! Jetzt neu laden, um zu aktualisieren, oder automatisch beim Schließen der Modrinth App."
"message": "Modrinth App v{version} wurde heruntergeladen. Neu laden, um jetzt zu aktualisieren, oder automatisch, wenn du die Modrinth App schließt."
},
"app.update-toast.body.metered": {
"message": "Modrinth App v{version} ist jetzt verfügbar! Da du ein getaktetes Netzwerk nutzt, haben wir den Download nicht automatisch gestartet."
@@ -72,7 +63,7 @@
"message": "Update wird heruntergeladen ({percent}%)"
},
"app.update.reload-to-update": {
"message": "Neu laden, um das Update zu installieren"
"message": "Neu laden um Update zu installieren"
},
"friends.action.add-friend": {
"message": "Freund hinzufügen"
@@ -81,7 +72,7 @@
"message": "{count} {count, plural, one {Freundesanfrage} other {Freundesanfragen}}"
},
"friends.add-friend.submit": {
"message": "Freundschaftsanfrage senden"
"message": "Freundesanfrage senden"
},
"friends.add-friend.title": {
"message": "Einen Freund hinzufügen"
@@ -105,7 +96,7 @@
"message": "Freund entfernen"
},
"friends.friend.request-sent": {
"message": "Freundschaftsanfrage gesendet"
"message": "Freundesanfrage gesendet"
},
"friends.friend.view-profile": {
"message": "Profil anzeigen"
@@ -159,7 +150,7 @@
"message": "Server bearbeiten"
},
"instance.edit-world.hide-from-home": {
"message": "Von der Startseite verbergen"
"message": "Von Startseite verbergen"
},
"instance.edit-world.name": {
"message": "Name"
@@ -201,7 +192,7 @@
"message": "Instanz löschen"
},
"instance.settings.tabs.general.delete.description": {
"message": "Löscht eine Instanz dauerhaft von deinem Gerät, einschließlich deiner Welten, Einstellungen und aller installierten Inhalte. Sei vorsichtig, eine gelöschte Instanz ist nicht wiederherstellbar."
"message": "Löscht eine Instanz dauerhaft von deinem Gerät, einschließlich deiner Welten, Einstellungen und aller installierten Inhalte. Sei vorsichtig, da eine gelöschte Instanz nicht wiederhergestellt werden kann."
},
"instance.settings.tabs.general.deleting.button": {
"message": "Wird gelöscht..."
@@ -210,13 +201,13 @@
"message": "Kopieren"
},
"instance.settings.tabs.general.duplicate-button.tooltip.installing": {
"message": "Kann während der Installation nicht dupliziert werden."
"message": "Kann während der Installation nicht kopiert werden."
},
"instance.settings.tabs.general.duplicate-instance": {
"message": "Instanz duplizieren"
},
"instance.settings.tabs.general.duplicate-instance.description": {
"message": "Erstellt eine Kopie dieser Instanz, inklusive aller Welten, Einstellungen, Mods, usw."
"message": "Erstellt eine Kopie dieser Instanz, inklusive aller Welten, Einstellungen, Modifikationen, usw."
},
"instance.settings.tabs.general.edit-icon": {
"message": "Icon bearbeiten"
@@ -246,10 +237,10 @@
"message": "Name"
},
"instance.settings.tabs.hooks": {
"message": "Startargumente"
"message": "Start Hooks"
},
"instance.settings.tabs.hooks.custom-hooks": {
"message": "Benutzerdefinierte Startargumente"
"message": "Benutzerdefinierte Start Hooks"
},
"instance.settings.tabs.hooks.description": {
"message": "Hooks ermöglichen es fortgeschrittenen Benutzern, bestimmte Systembefehle vor und nach dem Spielstart auszuführen."
@@ -270,7 +261,7 @@
"message": "Wird vor dem Starten der Instanz ausgeführt."
},
"instance.settings.tabs.hooks.pre-launch.enter": {
"message": "Vor Spielstart auszuführenden Befehl eingeben..."
"message": "Vor Spielstart auszuführender Befehl eingeben..."
},
"instance.settings.tabs.hooks.title": {
"message": "Start-Hooks"

View File

@@ -23,9 +23,6 @@
"app.settings.tabs.java-installations": {
"message": "Java installations"
},
"app.settings.tabs.language": {
"message": "Language"
},
"app.settings.tabs.privacy": {
"message": "Privacy"
},

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Los servidores de autenticación de Minecraft pueden no estar funcionando en este momento. Verifica tu conexión a internet e inténtalo de nuevo más tarde."
},
"app.auth-servers.unreachable.header": {
"message": "No se puede acceder a los servidores de autenticación"
},
"app.settings.developer-mode-enabled": {
"message": "Modo desarrollador activado."
},
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Instalaciones de Java"
},
"app.settings.tabs.language": {
"message": "Idioma"
},
"app.settings.tabs.privacy": {
"message": "Privacidad"
},
@@ -33,13 +24,13 @@
"message": "Gestión de recursos"
},
"app.update-toast.body": {
"message": "¡Modrinth App v{version} lista para instalar! Actualiza ahora o automáticamente al cerrar la aplicación."
"message": La aplicación Modrinth v{version} está lista para instalarse! Actualiza ahora o automáticamente al cerrar la aplicación Modrinth."
},
"app.update-toast.body.download-complete": {
"message": "La descarga de la Modrinth App v{version} ha finalizado. Actualiza ahora o automáticamente al cerrar la aplicación Modrinth."
"message": "La descarga de la aplicación Modrinth v{version} ha finalizado. Actualice ahora o automáticamente al cerrar la aplicación Modrinth."
},
"app.update-toast.body.metered": {
"message": "¡Modrinth App v{version} ya está disponible! Como estás en una red con límite de datos, no se descargó automáticamente."
"message": La aplicación Modrinth v{version} ya está disponible! Como estás conectado a una red con límite de datos, no la hemos descargado automáticamente."
},
"app.update-toast.changelog": {
"message": "Registro de cambios"
@@ -60,7 +51,7 @@
"message": "Descarga completada"
},
"app.update.complete-toast.text": {
"message": "Haz clic aquí para ver el registro de cambios."
"message": "Haga clic aquí para ver el registro de cambios."
},
"app.update.complete-toast.title": {
"message": "¡La versión {version} se ha instalado correctamente!"
@@ -87,10 +78,10 @@
"message": "Añadiendo un amigo"
},
"friends.add-friend.username.description": {
"message": "¡Podría ser distinto a su nombre de usuario de Minecraft!"
"message": "¡Podría ser distinto a su nombre de Minecraft!"
},
"friends.add-friend.username.placeholder": {
"message": "Ingresa tu nombre de usuario de Modrinth..."
"message": "Escribe el nombre de usuario de Modrinth..."
},
"friends.add-friend.username.title": {
"message": "¿Cuál es el nombre de usuario de Modrinth de tu amigo?"
@@ -168,7 +159,7 @@
"message": "Mundo de Minecraft"
},
"instance.edit-world.reset-icon": {
"message": "Restablecer ícono"
"message": "Resetear ícono"
},
"instance.edit-world.title": {
"message": "Editar mundo"
@@ -189,7 +180,7 @@
"message": "Servidor de Minecraft"
},
"instance.server-modal.resource-pack": {
"message": "Paquete de recursos"
"message": "Resource pack"
},
"instance.settings.tabs.general": {
"message": "General"
@@ -201,7 +192,7 @@
"message": "Eliminar instancia"
},
"instance.settings.tabs.general.delete.description": {
"message": "Elimina permanentemente una instancia de tu dispositivo, incluidos tus mundos, configuraciones y todo el contenido instalado. Ten cuidado, una vez eliminada, no hay forma de recuperarla."
"message": "Elimina permanentemente una instancia de tu dispositivo, incluyendo tus mundos, configuraciones y todo el contenido instalado. Ten cuidado, ya que una vez que elimines una instancia no hay forma de recuperarla."
},
"instance.settings.tabs.general.deleting.button": {
"message": "Eliminando..."
@@ -222,7 +213,7 @@
"message": "Editar ícono"
},
"instance.settings.tabs.general.edit-icon.remove": {
"message": "Eliminar ícono"
"message": "Remover ícono"
},
"instance.settings.tabs.general.edit-icon.replace": {
"message": "Reemplazar ícono"
@@ -240,16 +231,16 @@
"message": "Los grupos de la librería te ayudan a organizar tus instancias en diferentes secciones en tu librería."
},
"instance.settings.tabs.general.library-groups.enter-name": {
"message": "Ingresa el nombre del grupo"
"message": "Escribe el nombre del grupo"
},
"instance.settings.tabs.general.name": {
"message": "Nombre"
},
"instance.settings.tabs.hooks": {
"message": "Hooks de inicio"
"message": "Lanzar hooks"
},
"instance.settings.tabs.hooks.custom-hooks": {
"message": "Hooks de inicio personalizados"
"message": "Hooks personalizados"
},
"instance.settings.tabs.hooks.description": {
"message": "Los hooks permiten que usuarios avanzados ejecuten comandos del sistema antes y despues de lanzar el juego."
@@ -258,7 +249,7 @@
"message": "Post-cierre"
},
"instance.settings.tabs.hooks.post-exit.description": {
"message": "Ejecutados después de que el juego se cierre."
"message": "Ejecutados luego de que el juego se cierra."
},
"instance.settings.tabs.hooks.post-exit.enter": {
"message": "Introduce el comando post-cierre..."
@@ -270,19 +261,19 @@
"message": "Ejecutados antes de que la instancia inicie."
},
"instance.settings.tabs.hooks.pre-launch.enter": {
"message": "Introduce el comando pre-inicio..."
"message": "Introducir comando pre-inicio..."
},
"instance.settings.tabs.hooks.title": {
"message": "Hooks de inicio del juego"
"message": "Hooks de inicio de juego"
},
"instance.settings.tabs.hooks.wrapper": {
"message": "Wrapper"
},
"instance.settings.tabs.hooks.wrapper.description": {
"message": "Comando Wrapper para iniciar Minecraft."
"message": "Comando de capa para lanzar Minecraft."
},
"instance.settings.tabs.hooks.wrapper.enter": {
"message": "Introduce el comando Wrapper..."
"message": "Introduce el comando capa..."
},
"instance.settings.tabs.installation": {
"message": "Instalación"
@@ -291,7 +282,7 @@
"message": "{platform} {version} ya está instalado para Minecraft {game_version}"
},
"instance.settings.tabs.installation.change-version.already-installed.vanilla": {
"message": "Vanilla {game_version} ya está instalada"
"message": "{game_version} vanilla ya está instalado"
},
"instance.settings.tabs.installation.change-version.button": {
"message": "Cambiar versión"
@@ -336,7 +327,7 @@
"message": "No se pueden obtener los detalles del modpack vinculado. Por favor, verifica tu conexión a internet."
},
"instance.settings.tabs.installation.no-loader-versions": {
"message": "{loader} no está disponible para Minecraft {version}. Prueba con otro mod loader."
"message": "{loader} no esta disponible para Minecraft {version}. Prueba con otro mod loader."
},
"instance.settings.tabs.installation.no-modpack-found": {
"message": "Esta instancia está vinculada a un modpack, pero no se pudo encontrar el modpack en Modrinth."
@@ -351,13 +342,13 @@
"message": "Reinstalando modpack"
},
"instance.settings.tabs.installation.reinstall.confirm.description": {
"message": "La reinstalación restablecerá todo el contenido instalado o modificado a lo que proporciona el modpack, eliminando cualquier mod o contenido que hayas agregado sobre la instalación original. Esto puede solucionar comportamientos inesperados si se han hecho cambios en la instancia, pero si tus mundos dependen de contenido adicional instalado, podría romper los mundos existentes."
"message": "Reinstalar restablecerá todo el contenido instalado o modificado a lo que proporciona el modpack, eliminando cualquier mod o contenido que hayas agregado encima de la instalación original. Esto puede solucionar comportamientos inesperados si se han hecho cambios en la instancia, pero si tus mundos dependen de contenido adicional instalado, podría afectar los mundos existentes."
},
"instance.settings.tabs.installation.reinstall.confirm.title": {
"message": "¿Estás seguro de que quieres reinstalar esta instancia?"
},
"instance.settings.tabs.installation.reinstall.description": {
"message": "Restablece el contenido de la instancia a su estado original, eliminando cualquier mod o contenido que hayas agregado sobre el modpack original."
"message": "Restablece el contenido de la instancia a su estado original, eliminando cualquier mod o contenido que hayas agregado encima del modpack original."
},
"instance.settings.tabs.installation.reinstall.title": {
"message": "Reinstalar modpack"
@@ -369,7 +360,7 @@
"message": "Reparando"
},
"instance.settings.tabs.installation.repair.confirm.description": {
"message": "Reparar reinstala las dependencias de Minecraft y verifica la integridad de los archivos. Esto puede solucionar problemas si tu juego no se inicia por errores relacionados con el launcher, pero no resolverá problemas debidos a mods instalados."
"message": "Reparar reinstala las dependencias de Minecraft y verifica si hay archivos dañados. Esto puede solucionar problemas si tu juego no se inicia por errores relacionados con el launcher, pero no resolverá problemas causados por mods instalados."
},
"instance.settings.tabs.installation.repair.confirm.title": {
"message": "¿Reparar instancia?"
@@ -411,13 +402,13 @@
"message": "Desvincular instancia"
},
"instance.settings.tabs.installation.unlink.confirm.description": {
"message": "Si continúas, no podrás volver a vincularla sin crear una nueva instancia. Ya no recibirás actualizaciones del modpack y pasará a ser una instancia normal."
"message": "Si continúas, no podrás volver a vincularla sin crear una instancia completamente nueva. Ya no recibirás actualizaciones del modpack y se convertirá en una instancia normal."
},
"instance.settings.tabs.installation.unlink.confirm.title": {
"message": "¿Estás seguro de que quieres desvincular esta instancia?"
},
"instance.settings.tabs.installation.unlink.description": {
"message": "Esta instancia está vinculada a un modpack, lo que significa que los mods no pueden actualizarse y no puedes cambiar el mod loader ni la versión de Minecraft. Desvincularla la desconectará permanentemente del modpack."
"message": "Esta instancia está vinculada a un modpack, lo que significa que los mods no se pueden actualizar y no puedes cambiar el mod loader ni la versión de Minecraft. Desvincularla desconectará permanentemente esta instancia del modpack."
},
"instance.settings.tabs.installation.unlink.title": {
"message": "Desvincular del modpack"
@@ -444,13 +435,13 @@
"message": "Ventana"
},
"instance.settings.tabs.window.custom-window-settings": {
"message": "Configuración de ventana personalizada"
"message": "Opciones personalizadas de ventana"
},
"instance.settings.tabs.window.fullscreen": {
"message": "Pantalla completa"
},
"instance.settings.tabs.window.fullscreen.description": {
"message": "Inicia el juego en pantalla completa al iniciarlo (usando options.txt)."
"message": "Inicia el juego en pantalla completa al ejecutarlo (usando options.txt)."
},
"instance.settings.tabs.window.height": {
"message": "Altura"

View File

@@ -1,7 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Los servidores de autenticación de Minecraft podrían estar inactivos. Comprueba tu conexión a internet e inténtalo más tarde."
},
"app.settings.developer-mode-enabled": {
"message": "Modo desarrollador activado."
},
@@ -20,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Instalaciones de Java"
},
"app.settings.tabs.language": {
"message": "Idioma"
},
"app.settings.tabs.privacy": {
"message": "Privacidad"
},
@@ -36,7 +30,7 @@
"message": "La descarga de la versión v{version} de Modrinth ha finalizado. Actualice ahora o automáticamente al cerrar la aplicación."
},
"app.update-toast.body.metered": {
"message": "¡La versión v{version} de Modrinth App ya está disponible! Como estás conectado a una red con límite de datos, no la hemos descargado automáticamente."
"message": "¡La versión v{version} de Modrinth ya está disponible! Como estás conectado a una red con límite de datos, no la hemos descargado automáticamente."
},
"app.update-toast.changelog": {
"message": "Registro de cambios"
@@ -93,7 +87,7 @@
"message": "¿Cuál es el apodo de tu amigo en Modrinth?"
},
"friends.add-friends-to-share": {
"message": "<link>Añade amigos</link> para ver a qué están jugando!"
"message": "<link>Añade amigos</link> para ver a qué están jugando."
},
"friends.friend.cancel-request": {
"message": "Cancelar petición"
@@ -132,7 +126,7 @@
"message": "{title}: {count}"
},
"friends.sign-in-to-add-friends": {
"message": "<link>Inicia sesión en una cuenta Modrinth</link> para añadir amigos y ver a qué están jugando!"
"message": "<link>Inicia sesión en una cuenta Modrinth</link> para añadir amigos y ver a qué están jugando."
},
"instance.add-server.add-and-play": {
"message": "Añadir y jugar"
@@ -276,7 +270,7 @@
"message": "Wrapper"
},
"instance.settings.tabs.hooks.wrapper.description": {
"message": "comando Wrapper para lanzar Minecraft."
"message": ".."
},
"instance.settings.tabs.hooks.wrapper.enter": {
"message": "Introducir comando para el wrapper..."

View File

@@ -1,7 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Minecrafti autentimiserverid võivad praegu all olla. Kontrolli oma internetiühendust ja proovi hiljem uuesti."
},
"app.settings.developer-mode-enabled": {
"message": "Arendajarežiim sisse lülitatud."
},
@@ -23,9 +20,6 @@
"app.settings.tabs.resource-management": {
"message": "Ressursside haldus"
},
"app.update-toast.body": {
"message": "Modrinth App v{version} on valmis installimiseks! Uuendamiseks taaskäivitage kohe või automaatselt, kui sulgeted Modritnth App."
},
"instance.add-server.add-and-play": {
"message": "Lisa ja mängi"
},

View File

@@ -2,14 +2,11 @@
"app.settings.developer-mode-enabled": {
"message": "حالت برنامه‌نویس روشن شد."
},
"app.settings.downloading": {
"message": "درحال دانلود v{version}"
},
"app.settings.tabs.appearance": {
"message": "ظاهر"
},
"app.settings.tabs.default-instance-options": {
"message": "گزینه‌های پیش‌فرض اینستنس نسخهٔ جدا"
"message": "گزینه‌های پیش‌فرض اینستنس (نسخهٔ جدا)"
},
"app.settings.tabs.feature-flags": {
"message": "سوییچ قابلیت‌ها"
@@ -23,81 +20,6 @@
"app.settings.tabs.resource-management": {
"message": "مدیریت منابع"
},
"app.update-toast.changelog": {
"message": "تغییرات"
},
"app.update-toast.reload": {
"message": "بارگذاری دوباره"
},
"app.update-toast.title": {
"message": "بروزرسانی دردسترس"
},
"app.update-toast.title.download-complete": {
"message": "دانلود کامل شد"
},
"app.update.complete-toast.text": {
"message": "کلیک کنین تا تغییرات رو ببینید."
},
"app.update.download-update": {
"message": "دانلود بروزرسانی"
},
"app.update.downloading-update": {
"message": "درحال دانلود آپدیت ({percent}%)"
},
"friends.action.add-friend": {
"message": "افزودن یک دوست"
},
"friends.action.view-friend-requests": {
"message": "{count} دوست {count, plural, one {request} other {requests}}"
},
"friends.add-friend.submit": {
"message": "ارسال درخواست دوستی"
},
"friends.add-friend.title": {
"message": "افزودن دوست"
},
"friends.add-friend.username.description": {
"message": "این ممکنه با یوزرنیم ماینکرافتش متفاوت باشه!"
},
"friends.add-friend.username.placeholder": {
"message": "وارد کردن یوزرنیم مودرینث..."
},
"friends.add-friend.username.title": {
"message": "یوزرنیم مودرینث دوست شما چیست؟"
},
"friends.add-friends-to-share": {
"message": "<link>افزودن دوستان</link> تا ببینید دارن چی بازی میکنن!"
},
"friends.friend.cancel-request": {
"message": "لغو درخواست"
},
"friends.friend.remove-friend": {
"message": "حذف دوست"
},
"friends.friend.request-sent": {
"message": "درخواست دوستی ارسال شد"
},
"friends.friend.view-profile": {
"message": "مشاهده پروفایل"
},
"friends.heading": {
"message": "دوستان"
},
"friends.heading.active": {
"message": "فعال"
},
"friends.heading.offline": {
"message": "آفلاین"
},
"friends.heading.online": {
"message": "آنلاین"
},
"friends.search-friends-placeholder": {
"message": "جست‌وجو دوستان..."
},
"friends.section.heading": {
"message": "{title} - {count}"
},
"instance.add-server.add-and-play": {
"message": "اضافه کردن و پلی دادن"
},

View File

@@ -1,16 +1,7 @@
{
"app.auth-servers.unreachable.body": {
"message": "Minecraftin todennuspalvelimet eivät ehkä ole tällä hetkellä tavoitettavissa. Tarkista internetyhteytesi ja yritä myöhemmin uudelleen."
},
"app.auth-servers.unreachable.header": {
"message": "Todennuspalvelimiin ei saada yhteyttä"
},
"app.settings.developer-mode-enabled": {
"message": "Kehittäjätila käytössä."
},
"app.settings.downloading": {
"message": "Ladataan v{version}"
},
"app.settings.tabs.appearance": {
"message": "Ulkonäkö"
},
@@ -23,120 +14,12 @@
"app.settings.tabs.java-installations": {
"message": "Java asennukset"
},
"app.settings.tabs.language": {
"message": "Kieli"
},
"app.settings.tabs.privacy": {
"message": "Yksityisyys"
},
"app.settings.tabs.resource-management": {
"message": "Resurssien hallinta"
},
"app.update-toast.body": {
"message": "Modrinth-sovellus v{version} on valmis asennettavaksi! Lataa sovellus uudelleen päivittääksesi sen nyt tai automaattisesti, kun suljet Modrinth-sovelluksen."
},
"app.update-toast.body.download-complete": {
"message": "Modrinth-sovellus v{version} on ladattu. Lataa sovellus uudelleen päivittääksesi sen nyt tai automaattisesti, kun suljet Modrinth-sovelluksen."
},
"app.update-toast.body.metered": {
"message": "Modrinth-sovellus v{version} on nyt saatavilla! Koska käytät käyttömaksullista verkkoa, emme ladanneet sitä automaattisesti."
},
"app.update-toast.changelog": {
"message": "Muutosloki"
},
"app.update-toast.download": {
"message": "Lataa ({size})"
},
"app.update-toast.downloading": {
"message": "Ladataan..."
},
"app.update-toast.reload": {
"message": "Uudelleen lataa"
},
"app.update-toast.title": {
"message": "Päivitys saatavilla"
},
"app.update-toast.title.download-complete": {
"message": "Lataus valmis"
},
"app.update.complete-toast.text": {
"message": "Klikkaa tästä nähdäksesi muutoslokin."
},
"app.update.complete-toast.title": {
"message": "Versio {version} asennettiin onnistuneesti!"
},
"app.update.download-update": {
"message": "Lataa päivitys"
},
"app.update.downloading-update": {
"message": "Ladataan päivitystä ({percent}%)"
},
"app.update.reload-to-update": {
"message": "Lataa uudelleen asentaaksesi päivityksen"
},
"friends.action.add-friend": {
"message": "Lisää ystävä"
},
"friends.action.view-friend-requests": {
"message": "{count} ystävä{count, plural, one {pyyntö} other {pyyntöä}}"
},
"friends.add-friend.submit": {
"message": "Lähetä kaveripyyntö"
},
"friends.add-friend.title": {
"message": "Lisätään kaveria"
},
"friends.add-friend.username.description": {
"message": "Se ei voi olla eri kuin heidän Minecraft-käyttäjänimi!"
},
"friends.add-friend.username.placeholder": {
"message": "Syötä Modrinth-käyttäjätunnus..."
},
"friends.add-friend.username.title": {
"message": "Mikä on ystäväsi Modrinth-käyttäjänimi?"
},
"friends.add-friends-to-share": {
"message": "<link>Lisää kavereita</link> nähdäksesi mitä he pelaavat!"
},
"friends.friend.cancel-request": {
"message": "Peruuta pyyntö"
},
"friends.friend.remove-friend": {
"message": "Poista ystävä"
},
"friends.friend.request-sent": {
"message": "Ystäväpyyntö lähetetty"
},
"friends.friend.view-profile": {
"message": "Näytä profiili"
},
"friends.heading": {
"message": "Ystävät"
},
"friends.heading.active": {
"message": "Aktiiviset"
},
"friends.heading.offline": {
"message": "Offline-tilassa"
},
"friends.heading.online": {
"message": "Online-tilassa"
},
"friends.heading.pending": {
"message": "Odotetaan"
},
"friends.no-friends-match": {
"message": "Ei ystäviä, jotka vastaavat ''{query}''"
},
"friends.search-friends-placeholder": {
"message": "Hae ystäviä..."
},
"friends.section.heading": {
"message": "{title} - {count}"
},
"friends.sign-in-to-add-friends": {
"message": "<link>Kirjaudu Modrinth-tilille</link> lisätäksesi ystäviä ja nähdäksesi mitä he pelaavat!"
},
"instance.add-server.add-and-play": {
"message": "Lisää ja pelaa"
},
@@ -147,7 +30,7 @@
"message": "Poistettu käytöstä"
},
"instance.add-server.resource-pack.enabled": {
"message": "Käytössä"
"message": "Päällä"
},
"instance.add-server.resource-pack.prompt": {
"message": "Kehote"

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Maaaring hindi maaabot ang mga authentication server ng Minecraft sa ngayon. Tingnan mo ang iyong internet connection at muling subukan mamaya."
},
"app.auth-servers.unreachable.header": {
"message": "Hindi maabot ang mga authentication server"
},
"app.settings.developer-mode-enabled": {
"message": "Nakabukas ang moda ng nagdidibelop."
},
@@ -18,25 +12,22 @@
"message": "Mga pagpipilian sa default na instansiya"
},
"app.settings.tabs.feature-flags": {
"message": "Mga hudyat ng tampok"
"message": "Mga feature flag"
},
"app.settings.tabs.java-installations": {
"message": "Mga instalasyon ng Java"
},
"app.settings.tabs.language": {
"message": "Wika"
},
"app.settings.tabs.privacy": {
"message": "Pribasiya"
},
"app.settings.tabs.resource-management": {
"message": "Pamamahala ng paglalaan"
"message": "Pamamahala ng resource"
},
"app.update-toast.body": {
"message": "Ang Modrinth App v{version} ay handa nang ma-install. Mag-reload upang ma-update ngayon, o awtomatiko sa pagsara ng Modrinth App."
"message": "Ang Modrinth App v{version} ay handa nang ma-install. Mag-reload upang ma-update ngayon, o awtomatiko pagsara ng Modrinth App."
},
"app.update-toast.body.download-complete": {
"message": "Tapos nang ma-download ang Modrinth App v{version}. Mag-reload upang ma-update ngayon, o awtomatiko sa pagsara ng Modrinth App."
"message": "Tapos nang ma-download ang Modrinth App v{version}. Mag-reload upang ma-update ngayon, o awtomatiko pagsara ng Modrinth App."
},
"app.update-toast.body.metered": {
"message": "Magagamit na ngayon ang Modrinth App v{version}! Hindi namin dinanload kaagad dahil naka-metro ang inyong network."
@@ -60,7 +51,7 @@
"message": "Nakumpleto ang pagdownload"
},
"app.update.complete-toast.text": {
"message": "Dito pumindot upang matingnan ang changelog."
"message": "Magpindot rito upang matingnan ang changelog."
},
"app.update.complete-toast.title": {
"message": "Tagumpay na na-install ang bersiyong {version}!"
@@ -135,7 +126,7 @@
"message": "{title} - {count}"
},
"friends.sign-in-to-add-friends": {
"message": "<link>Mag-sign in sa Modrinth account</link> upang maidagdag ang mga kaibigan at malaman ang kanilang nilalaro!"
"message": "<link>Mag-sign-in sa Modrinth account</link> upang maidagdag ang mga kaibigan at malaman ang kanilang nilalaro!"
},
"instance.add-server.add-and-play": {
"message": "Idagdag at laruin"
@@ -195,13 +186,13 @@
"message": "General"
},
"instance.settings.tabs.general.delete": {
"message": "Tanggalin ang instansiya"
"message": "I-delete ang instansiya"
},
"instance.settings.tabs.general.delete.button": {
"message": "Tanggalin ang instansiya"
"message": "I-delete ang instansiya"
},
"instance.settings.tabs.general.delete.description": {
"message": "Habambuhay na matatanggal ang instansiya sa iyong device, kasama ang iyong mga mundo, kompigurasyon, at lahat ng naka-install na kontento. Mag-ingat, kapag nagtanggal ka ng instansiya ay hindi na ito mababawi."
"message": "Permanenteng matatanggal ang instansiya sa iyong device, kasali na ang iyong mga mundo, konpigurasyon, at lahat ng nakainstall na kontento. Mag-ingat, kapag magtanggal ka ng instansiya ay hindi na ito mababawi."
},
"instance.settings.tabs.general.deleting.button": {
"message": "Nagde-delete..."
@@ -216,7 +207,7 @@
"message": "I-duplicate ang instansiya"
},
"instance.settings.tabs.general.duplicate-instance.description": {
"message": "Lilikhaan ng kopya ang instansiyang ito, kasama ang mga mundo, kumpigurasyon, mod, at iba pa."
"message": "Gagawan ng kopya ng instansiyang ito, kasali na ang mga mundo, konpigurasyon, mods, at iba pa."
},
"instance.settings.tabs.general.edit-icon": {
"message": "Baguhin ang ikono"
@@ -234,7 +225,7 @@
"message": "Mga grupo ng librerya"
},
"instance.settings.tabs.general.library-groups.create": {
"message": "Lumikha ng bagong grupo"
"message": "Gumawa ng bagong grupo"
},
"instance.settings.tabs.general.library-groups.description": {
"message": "Binibigyan ng mga grupo ng librerya na iyong maayos ang iyong mga instansiya sa iba't-ibang pangkat in iyong librerya."
@@ -252,7 +243,7 @@
"message": "Mga custom na launch hook"
},
"instance.settings.tabs.hooks.description": {
"message": "Binibigyan-daan ng mga hook ang mga ekspertong tagagamit na makapagtakbo ng mga system command bago at pagkatapos ma-launch ang laro."
"message": "Binibigyan-daan ng mga hook ang mga ekspertong user na makapagtakbo ng mga system command bago at pagkatapos ma-launch ang laro."
},
"instance.settings.tabs.hooks.post-exit": {
"message": "Post-exist"
@@ -314,9 +305,6 @@
"instance.settings.tabs.installation.debug-information": {
"message": "Impormasyon sa pagdebug:"
},
"instance.settings.tabs.installation.fetching-modpack-details": {
"message": "Nagfe-fetch ng mga detalye ng modpack"
},
"instance.settings.tabs.installation.game-version": {
"message": "Bersiyon ng laro"
},
@@ -332,15 +320,9 @@
"instance.settings.tabs.installation.minecraft-version": {
"message": "Minecraft {version}"
},
"instance.settings.tabs.installation.no-connection": {
"message": "Hindi maka-fetch ng mga detalye ng linked modpack. Mangyaring tingnan ang iyong internet connection."
},
"instance.settings.tabs.installation.no-loader-versions": {
"message": "Hindi magagamit ang {loader} sa Minecraft {version}. Sumubok ng ibang mod loader."
},
"instance.settings.tabs.installation.no-modpack-found": {
"message": "Naka-link itong instansiya sa isang modpack, pero ang modpack na ito ay hindi makikita sa Modrinth."
},
"instance.settings.tabs.installation.platform": {
"message": "Plataporma"
},
@@ -351,13 +333,10 @@
"message": "Ini-re-reinstall ang modpack"
},
"instance.settings.tabs.installation.reinstall.confirm.description": {
"message": "Ang pagrere-install ay maaaring ma-reset ang lahat ng na-install at binago na kontento sa kung anong hinahandog ng modpack, tatanggalin ang mga mods at kontentong idinagdag mo sa orihinal na modpack. Maaari nitong masiayos ang mga hindi inaasahang pag-uugali kung may pagbabagong naganap sa instansiya, ngunit kung dumedepende na ang iyong mundo sa karagdagang kontento, maaari nitong masira ang mga umiiral na mundo."
},
"instance.settings.tabs.installation.reinstall.confirm.title": {
"message": "Sigurado ka bang gusto mong i-reinstall ang instansiyang ito?"
"message": "Ang pagrere-install ay maaaring mare-reset ang lahat ng na-install o binago na kontento sa kung anong ibibigay ng modpack, tatanggalin ang mga mods o kontentong idinagdag mo lalo na ang mga orihinal na modpack. Maaari nitong masiayos ang mga hindi inaasahang pag-uugali kung may pagbabagong naganap sa instansiya, ngunit kung dumedepende na ang iyong mundo sa karagdagang kontento, maaari nitong masira ang mga umiiral na mundo."
},
"instance.settings.tabs.installation.reinstall.description": {
"message": "Mare-reset ang mga kontento ng instansiya sa orihinal niyang estado, tatanggalin ang mga mods at kontentong idinagdag mo sa orihinal na modpack."
"message": "I-reset ang mga kontento ng instansiya sa orihinal niyang estado, tatanggalin ang mga mods o kontentong idinagdag mo lalo na ang mga orihinal na modpack."
},
"instance.settings.tabs.installation.reinstall.title": {
"message": "I-reinstall ang modpack"
@@ -369,7 +348,7 @@
"message": "Inaayos"
},
"instance.settings.tabs.installation.repair.confirm.description": {
"message": "Sa pagre-repair, mare-reinstall ang mga dependency ng Minecraft at maghahanap ng mga kurapsiyon. Maaaring maresolbe nito ang mga isyu kung hindi malu-launch ang laro dahil sa mga launcher-related error, ngunit hindi nito mareresolbe ang mga isyu at pag-crash na dulot ng mga na-install na mod."
"message": "Sa pagre-repair, mare-reinstall ang mga dependency ng Minecraft at maghahanap ng mga kurapsiyon. Maaaring maresolbe nito ang mga isyu kung hindi malu-launch ang laro dahil sa mga launcher-related error, ngunit hindi nito mareresolbe ang mga isyu o pag-crash na dulot nga mga na-install na mod."
},
"instance.settings.tabs.installation.repair.confirm.title": {
"message": "Ayusin ang instansiya?"
@@ -413,11 +392,8 @@
"instance.settings.tabs.installation.unlink.confirm.description": {
"message": "Kapag ipagpatuloy mo, hindi mo na itong mai-link muli ng hindi gagawa ng bagong instansiya. Hindi ka makakatanggap ng mga update ng modpack at magiging normal na itong."
},
"instance.settings.tabs.installation.unlink.confirm.title": {
"message": "Sigurado ka bang gusto mong i-unlik ang instansiyang ito?"
},
"instance.settings.tabs.installation.unlink.description": {
"message": "Ang instansiyang ito ay naka-link sa isang modpack, ibig sabihin ang mga mod ay hindi mai-update at hindi mo mapapalitan ang mod loader at ang bersiyon ng Minecraft. Permanenteng madi-diskonekta ang instansiyang ito sa modpack kung mag-unlink."
"message": "Ang instansiyang ito ay naka-link sa isang modpack, ibig sabihin ang mga mod ay hindi mai-update at hindi mo mapapalitan ang mod loader o ang bersiyon ng Minecraft."
},
"instance.settings.tabs.installation.unlink.title": {
"message": "I-unlink sa modpack"
@@ -425,9 +401,6 @@
"instance.settings.tabs.java": {
"message": "Java at memorya"
},
"instance.settings.tabs.java.environment-variables": {
"message": "Environment variables"
},
"instance.settings.tabs.java.hooks": {
"message": "Mga hook"
},
@@ -449,24 +422,15 @@
"instance.settings.tabs.window.fullscreen": {
"message": "Fullscreen"
},
"instance.settings.tabs.window.fullscreen.description": {
"message": "Gagawing magsisimulang naka-fullscreen ang laro pag-launch (gamit ang options.txt)."
},
"instance.settings.tabs.window.height": {
"message": "Taas"
},
"instance.settings.tabs.window.height.description": {
"message": "Ang taas ng game window kung na-launch."
},
"instance.settings.tabs.window.height.enter": {
"message": "Ilagay ang taas..."
},
"instance.settings.tabs.window.width": {
"message": "Lapad"
},
"instance.settings.tabs.window.width.description": {
"message": "Ang lapad ng game window kung na-launch."
},
"instance.settings.tabs.window.width.enter": {
"message": "Ilagay ang lapad..."
},
@@ -476,9 +440,6 @@
"instance.worlds.a_minecraft_server": {
"message": "Isang Minecraft Server"
},
"instance.worlds.cant_connect": {
"message": "Hndi makakonekta sa server"
},
"instance.worlds.copy_address": {
"message": "Kopyahin ang adres"
},
@@ -488,24 +449,9 @@
"instance.worlds.filter.available": {
"message": "Magagamit"
},
"instance.worlds.game_already_open": {
"message": "Bukas naman ang instansiya"
},
"instance.worlds.hardcore": {
"message": "Modong eksperto"
},
"instance.worlds.incompatible_server": {
"message": "Hindi magkatugma sa server"
},
"instance.worlds.no_contact": {
"message": "Hindi makontak ang server"
},
"instance.worlds.no_server_quick_play": {
"message": "Deretso kang makakalukso lamang sa mga server na nasa Minecraft Alpha 1.0.5+"
},
"instance.worlds.no_singleplayer_quick_play": {
"message": "Deretso kang makakalukso lamang sa mga pang-isahang larong mundo na nasa Minecraft 1.20+"
},
"instance.worlds.play_instance": {
"message": "Laruin ang instansiya"
},
@@ -521,15 +467,6 @@
"instance.worlds.world_in_use": {
"message": "Ginagamit ang mundo"
},
"search.filter.locked.instance": {
"message": "Sagot na ng instansiya"
},
"search.filter.locked.instance-game-version.title": {
"message": "Sagot na ng instansiya ang bersiyon ng laro"
},
"search.filter.locked.instance-loader.title": {
"message": "Sagot na ng instansiya ang loader ng laro"
},
"search.filter.locked.instance.sync": {
"message": "Maki-sync sa instansiya"
}

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Les serveurs d'authentification de Minecraft sont peut-être actuellement hors ligne. Vérifiez votre connexion Internet et essayez à nouveau dans quelques instants."
},
"app.auth-servers.unreachable.header": {
"message": "Impossible de contacter les serveurs d'authentification"
},
"app.settings.developer-mode-enabled": {
"message": "Mode développeur activé."
},
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Installations de Java"
},
"app.settings.tabs.language": {
"message": "Langue"
},
"app.settings.tabs.privacy": {
"message": "Confidentialité"
},
@@ -33,16 +24,16 @@
"message": "Gestion des ressources"
},
"app.update-toast.body": {
"message": "Modrinth App v{version} est prête à être installée ! Relancez l'application pour faire la mise à jour maintenant, ou automatiquement à la fermeture de Modrinth App."
"message": "L'application Modrinth v{version} est prêtes à être installé ! Relancez l'application pour faire la mise à jour maintenant ou la mise à jour se fera automatiquement lorsque vous fermerez l'application Modrinth."
},
"app.update-toast.body.download-complete": {
"message": "Le téléchargement de Modrinth App v{version} est terminé ! Relancez l'application pour mettre à jour maintenant, ou automatiquement à la fermeture de Modrinth App."
"message": "L'application Modrinth v{version} a finis d'être téléchargé ! Relancez l'application pour faire la mise à jour maintenant ou la mise à jour se fera automatiquement lorsque vous fermerez l'application Modrinth."
},
"app.update-toast.body.metered": {
"message": "Modrinth App v{version} est disponible dès maintenant ! Lorsque vous êtes sur un réseau limité ou en données mobiles, nous ne téléchargerons pas les mises à jour automatiquement."
"message": "L'application Modrinth v{version} est disponible dès maintenant ! Lorsque vous êtes sur un réseau limité ou en donnée mobile, nous ne téléchargerons pas les mises à jour automatiquement."
},
"app.update-toast.changelog": {
"message": "Journal des modifications"
"message": "Notes de changement"
},
"app.update-toast.download": {
"message": "Télécharger ({size})"
@@ -51,7 +42,7 @@
"message": "Téléchargement..."
},
"app.update-toast.reload": {
"message": "Recharger"
"message": "Rechargement"
},
"app.update-toast.title": {
"message": "Mise à jour disponible"
@@ -78,7 +69,7 @@
"message": "Ajouter un ami"
},
"friends.action.view-friend-requests": {
"message": "{count} {count, plural, one {demande} other {demandes}} d'ami"
"message": "{count} {count, plural,one {demande}other {demandes}} d'ami"
},
"friends.add-friend.submit": {
"message": "Envoyer une demande d'ami"
@@ -126,7 +117,7 @@
"message": "En attente"
},
"friends.no-friends-match": {
"message": "Aucuns amis ne correspondent à « {query} »"
"message": "Aucuns amis ne correspondent à \"{query}\""
},
"friends.search-friends-placeholder": {
"message": "Chercher des amis..."
@@ -249,7 +240,7 @@
"message": "Crochets de lancement"
},
"instance.settings.tabs.hooks.custom-hooks": {
"message": "Crochets de lancement personnalisés"
"message": "Crochets de lancement custom"
},
"instance.settings.tabs.hooks.description": {
"message": "Les crochets permettent aux usagers avancés d'exécuter certaines commandes systèmes avant et après le lancement du jeu."
@@ -258,7 +249,7 @@
"message": "Post-fermeture"
},
"instance.settings.tabs.hooks.post-exit.description": {
"message": "Exécuté après la fermeture du jeu."
"message": "Exécuté après fermeture."
},
"instance.settings.tabs.hooks.post-exit.enter": {
"message": "Entrer commande de post-fermeture..."
@@ -369,7 +360,7 @@
"message": "Réparation"
},
"instance.settings.tabs.installation.repair.confirm.description": {
"message": "La réparation réinstalle les dépendances de Minecraft et vérifie la corruption. Cela peut résoudre les problèmes de lancement du jeu en raison d'erreurs liées au launcher, mais ne résoudra pas les problèmes ou plantages liés aux mods installés."
"message": "La réparation réinstalle les dépendances de Minecraft et vérifie la corruption. Cela peut résoudre les problèmes de lancement du jeu en raison d'erreurs liées au lanceur, mais ne résoudra pas les problèmes ou plantages liés aux mods installés."
},
"instance.settings.tabs.installation.repair.confirm.title": {
"message": "Réparer l'instance ?"

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "ייתכן ששרתי האימות של Minecraft מושבתים כרגע. בדוק את חיבור האינטרנט שלך ונסה שוב מאוחר יותר."
},
"app.auth-servers.unreachable.header": {
"message": "לא ניתן לגשת לשרתי האימות"
},
"app.settings.developer-mode-enabled": {
"message": "מצב מפתח מופעל."
},
@@ -71,63 +65,15 @@
"app.update.reload-to-update": {
"message": "רענן בכדי להתקין את העדכונים"
},
"friends.action.add-friend": {
"message": "להוסיף חבר"
},
"friends.add-friend.submit": {
"message": "שלח בקשת חברות"
},
"friends.add-friend.title": {
"message": "מוסיף חבר"
},
"friends.add-friend.username.placeholder": {
"message": "הכנס שם משתמש של Modrinth..."
},
"friends.add-friend.username.title": {
"message": "מה השם משתמש של החבר שלך בModrinth"
},
"friends.add-friends-to-share": {
"message": "<link>הוסף חברים</link> כדי לראות במה הם משחקים!"
},
"friends.friend.cancel-request": {
"message": "בטל בקשה"
},
"friends.friend.remove-friend": {
"message": "הסר חבר"
},
"friends.friend.request-sent": {
"message": "בקשת חברות נשלחה"
},
"friends.friend.view-profile": {
"message": "הצג פרופיל"
},
"friends.heading": {
"message": "חברים"
},
"friends.heading.active": {
"message": "פעיל"
},
"friends.heading.offline": {
"message": "לא מקוון"
},
"friends.heading.online": {
"message": "מחובר"
},
"friends.heading.pending": {
"message": "ממתין"
},
"friends.no-friends-match": {
"message": "אין חברים התואמים ל \"{query}\""
},
"friends.search-friends-placeholder": {
"message": "חפש חברים..."
},
"friends.section.heading": {
"message": "{title} - {count}"
},
"friends.sign-in-to-add-friends": {
"message": "<link>התחבר לחשבון Modrinth </link> כדי להוסיף חברים ולראות מה הם משחקים!"
},
"instance.add-server.add-and-play": {
"message": "הוסף ושחק"
},
@@ -363,7 +309,7 @@
"message": "התיקון מתקין מחדש את התלויות של מיינקראפט ובודק דברים מקולקלים. פעולה זו עשויה לפתור בעיות שמונעות את הפעלת המשחק עקב שגיאות הקשורות למשגר, אך לא תפתור בעיות או קריסות הקשורות למודים המותקנים."
},
"instance.settings.tabs.installation.repair.confirm.title": {
"message": "לתקן את המכונה?"
"message": "תקן"
},
"instance.settings.tabs.installation.repair.in-progress": {
"message": "תיקון בתהליך"

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "A Minecraft hitelesítő szerverek lehet, hogy nem üzemelnek. Bizonyosodj meg róla, hogy van internetkapcsolatod és próbáld meg újra."
},
"app.auth-servers.unreachable.header": {
"message": "Nem lehet elérni a hitelesítési kiszolgálókat"
},
"app.settings.developer-mode-enabled": {
"message": "Fejlesztői mód bekapcsolva."
},
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Telepített Java példányok"
},
"app.settings.tabs.language": {
"message": "Nyelv"
},
"app.settings.tabs.privacy": {
"message": "Adatvédelem"
},
@@ -135,10 +126,10 @@
"message": "{title} - {count}"
},
"friends.sign-in-to-add-friends": {
"message": "<link>Lépj be Modrinth fiókodba</link>, hogy felvehess barátokat és lásd mivel játszanak!"
"message": "<link>Lépj be Modrinth fiókba</link>, hogy felvehess barátokat és lásd mivel játszanak!"
},
"instance.add-server.add-and-play": {
"message": "Hozzáadás és csatlakozás"
"message": "Hozzáadás és játék"
},
"instance.add-server.add-server": {
"message": "Szerver hozzáadása"
@@ -150,7 +141,7 @@
"message": "Engedélyezve"
},
"instance.add-server.resource-pack.prompt": {
"message": "Mindig kérdezzen"
"message": "Kérdezzen"
},
"instance.add-server.title": {
"message": "Adjon hozzá egy szervert"
@@ -195,13 +186,13 @@
"message": "Általános"
},
"instance.settings.tabs.general.delete": {
"message": "Profil törlése"
"message": "Példány törlése"
},
"instance.settings.tabs.general.delete.button": {
"message": "Profil törlése"
"message": "Példány törlése"
},
"instance.settings.tabs.general.delete.description": {
"message": "Örökké eltávolít egy profilt az eszközről, beleértve a világait, beállításait és minden telepített tartalmat. Legyen óvatos, mert ha egyszer kitöröl egy profilt, azt többé nem lehet visszaállítani."
"message": "Örökké eltávolít egy példányt az eszközről, beleértve a világait, beállításait és minden telepített tartalmat. Legyen óvatos, mert ha egyszer kitöröl egy példányt azt többé nem lehet visszaállítani."
},
"instance.settings.tabs.general.deleting.button": {
"message": "Törlés..."
@@ -213,10 +204,10 @@
"message": "Telepítés közben nem lehet duplikálni."
},
"instance.settings.tabs.general.duplicate-instance": {
"message": "Profil duplikálása"
"message": "Példány duplikálása"
},
"instance.settings.tabs.general.duplicate-instance.description": {
"message": "Készít egy másolatot erről a profilról, beleértve a világokat, beállításokat, modokat, stb."
"message": "Készít egy másolatot erről a példányról, beleértve a világokat, beállításokat, modokat, stb."
},
"instance.settings.tabs.general.edit-icon": {
"message": "Ikon szerkesztése"
@@ -234,13 +225,13 @@
"message": "Könyvtár gyűjtemények"
},
"instance.settings.tabs.general.library-groups.create": {
"message": "Új csoport létrehozása"
"message": "Új gyűjtemény létrehozása"
},
"instance.settings.tabs.general.library-groups.description": {
"message": "A könyvtárgyűjtemények segítenek külön kategóriákba rendszerezni a profiljaidat."
"message": "A könyvtár gyűjtemények segítenek külön kategóriákba rendszerezni a profiljait."
},
"instance.settings.tabs.general.library-groups.enter-name": {
"message": "Add meg a gyűjtemény nevét"
"message": "Adja meg a gyűjtemény nevét"
},
"instance.settings.tabs.general.name": {
"message": "Név"
@@ -258,7 +249,7 @@
"message": "Kilépés után"
},
"instance.settings.tabs.hooks.post-exit.description": {
"message": "A játék bezárása után fut."
"message": "Játék bezárása után fut."
},
"instance.settings.tabs.hooks.post-exit.enter": {
"message": "Írjon be kilépés utáni parancsokat..."
@@ -267,7 +258,7 @@
"message": "Indítás előtt"
},
"instance.settings.tabs.hooks.pre-launch.description": {
"message": "Futtatás a profil futtatása előtt."
"message": "Futtatás a példány futtatása előtt."
},
"instance.settings.tabs.hooks.pre-launch.enter": {
"message": "Írjon be indítás előtti parancsokat..."
@@ -279,16 +270,16 @@
"message": "Indítóparancs"
},
"instance.settings.tabs.hooks.wrapper.description": {
"message": "Indítóparancs a Minecraft elindításához."
"message": "Wrapper kommand a Minecraft elindításához."
},
"instance.settings.tabs.hooks.wrapper.enter": {
"message": "Írjon ide indítóparancsot..."
"message": "Írd ide a wrapper kommandot..."
},
"instance.settings.tabs.installation": {
"message": "Telepítés"
},
"instance.settings.tabs.installation.change-version.already-installed.modded": {
"message": "{platform} {version} már telepítve van ehhez: Minecraft {game_version}"
"message": "{platform} {version} a Minecraft-hoz {game_version} már telepítve van"
},
"instance.settings.tabs.installation.change-version.already-installed.vanilla": {
"message": "A vanilla {game_version} már telepítve van"
@@ -324,7 +315,7 @@
"message": "Telepítés"
},
"instance.settings.tabs.installation.install.in-progress": {
"message": "Telepítés folyamatban"
"message": "A telepítés folyamatban"
},
"instance.settings.tabs.installation.loader-version": {
"message": "{loader} verzió"
@@ -333,34 +324,34 @@
"message": "Minecraft {version}"
},
"instance.settings.tabs.installation.no-connection": {
"message": "Nem lehetséges a csatolt modcsomag részleteit lekérdezni. Kérlek nézd meg az internetkapcsolatod."
"message": "Nem lehetséges a csatolt modpack részleteit lekérdezni. Kérlek nézd meg az internetkapcsolatod."
},
"instance.settings.tabs.installation.no-loader-versions": {
"message": "{loader} nem elérhető a Minecraft {version} verziójához. Próbálj meg egy másik modbetöltőt."
"message": "{loader} nem elérhető a Minecraft {version} verziójához. Próbálj meg egy másik loader-t."
},
"instance.settings.tabs.installation.no-modpack-found": {
"message": "A profilod linkelve van egy Modrinth modcsomaghoz, de a modcsomag nem található online."
"message": "A \"Példányod\" linkelve van egy Modrinth modpack-hoz, de a modpack nem található online."
},
"instance.settings.tabs.installation.platform": {
"message": "Platform"
},
"instance.settings.tabs.installation.reinstall.button": {
"message": "Modcsomag újratelepítése"
"message": "Modpack újratelepítése"
},
"instance.settings.tabs.installation.reinstall.button.reinstalling": {
"message": "Modcsomag újratelepítése"
"message": "Modpack újratelepítése"
},
"instance.settings.tabs.installation.reinstall.confirm.description": {
"message": "Az újratelepítés visszaállítja az összes telepített vagy módosított tartalmat a modcsomag által biztosított állapotra, eltávolítva az eredeti telepítéshez hozzáadott modokat vagy tartalmakat. Ez megoldhatja a váratlan hibákat, de fontos tudni hogyha használsz világokat amelyekben utólagosan hozzáadott tartalom van, azok a világok korruptálódhatnak."
"message": "Az újratelepítés visszaállítja az összes telepített vagy módosított tartalmat a modpack által biztosított állapotra, eltávolítva az eredeti telepítéshez hozzáadott modokat vagy tartalmakat. Ez megoldhatja a váratlan hibákat, de fontos tudni hogyha használsz világokat amelyekben utólagosan hozzáadott tartalom van, azok a világok korruptálódhatnak."
},
"instance.settings.tabs.installation.reinstall.confirm.title": {
"message": "Biztosan szeretnéd újratelepíteni ezt a profilt?"
"message": "Biztosan szeretnéd újratelepíteni ezt a példányt?"
},
"instance.settings.tabs.installation.reinstall.description": {
"message": "Visszaállítja a profilod tartalmát az eredeti állapotába, eltávolítva az eredeti modcsomaghoz hozzáadott összes modot és tartalmat."
"message": "Visszaállítja a Példányod tartalmát az eredeti állapotába, eltávolítva az eredeti modpackhoz hozzáadott összes modot és tartalmat."
},
"instance.settings.tabs.installation.reinstall.title": {
"message": "Modcsomag újratelepítése"
"message": "Modpack újratelepítése"
},
"instance.settings.tabs.installation.repair.button": {
"message": "Javítás"
@@ -369,10 +360,10 @@
"message": "Javítás"
},
"instance.settings.tabs.installation.repair.confirm.description": {
"message": "A javítás újratelepíti a Minecraft alapját és ellenőrzi, hogy nincs-e sérülés. Ez megoldhatja a problémákat, ha a játék nem az indítóval kapcsolatos hibák miatt nem indul el, de nem oldja meg a telepített modokkal kapcsolatos problémákat vagy összeomlásokat."
"message": "A javítás újratelepíti a Minecraft alapját és ellenőrzi, hogy nincs-e sérülés. Ez megoldhatja a problémákat, ha a játék nem launcherrel kapcsolatos hibák miatt nem indul el, de nem oldja meg a telepített modokkal kapcsolatos problémákat vagy összeomlásokat."
},
"instance.settings.tabs.installation.repair.confirm.title": {
"message": "Profil javítása?"
"message": "Példány javítása?"
},
"instance.settings.tabs.installation.repair.in-progress": {
"message": "Javítás folyamatban"
@@ -408,19 +399,19 @@
"message": "(ismeretlen verzió)"
},
"instance.settings.tabs.installation.unlink.button": {
"message": "Profil leválasztása"
"message": "Példány leválasztása"
},
"instance.settings.tabs.installation.unlink.confirm.description": {
"message": "Ha folytatod, akkor nem tudod újra összekapcsolni anélkül, hogy egy teljesen új profilt hoznál létre. Többé nem fogja megkapni a modcsomag frissítéseit, és normál állapotba kerül."
"message": ""
},
"instance.settings.tabs.installation.unlink.confirm.title": {
"message": "Biztosan le szeretnéd választani ezt a profilt?"
"message": "Biztosan szeretné ezt az példányt leválasztani?"
},
"instance.settings.tabs.installation.unlink.description": {
"message": "Ez az profil egy modcsomaghoz van kapcsolva, ami azt jelenti, hogy a modok nem frissíthetőek, és nem lehet megváltoztatni a modbetöltőt vagy a Minecraft verziót. A kapcsolódás megszüntetése véglegesen leválasztja ezt a profilt a modcsomagról."
"message": "Ez az példány egy modpackhoz van kapcsolva, ami azt jelenti, hogy a modok nem frissíthetőek, és nem lehet megváltoztatni a mod betöltőt vagy a Minecraft verziót. A kapcsolódás megszüntetése véglegesen leválasztja ezt a példányt a modpackről."
},
"instance.settings.tabs.installation.unlink.title": {
"message": "Modcsomagról való leválasztás"
"message": "Modpack-ről való leválasztás"
},
"instance.settings.tabs.java": {
"message": "Java és memória"
@@ -429,7 +420,7 @@
"message": "Környezeti változók"
},
"instance.settings.tabs.java.hooks": {
"message": "Horgok"
"message": "Hookok"
},
"instance.settings.tabs.java.java-arguments": {
"message": "Java argumentumok"
@@ -447,7 +438,7 @@
"message": "Egyedi ablak beállítások"
},
"instance.settings.tabs.window.fullscreen": {
"message": "Teljes képernyő"
"message": "Teljesképernyő"
},
"instance.settings.tabs.window.fullscreen.description": {
"message": "A játék indításakor teljes képernyős módban indítsa el (az options.txt fájl segítségével)."
@@ -459,7 +450,7 @@
"message": "A játék ablakának magassága indításkor."
},
"instance.settings.tabs.window.height.enter": {
"message": "Magasság megadása..."
"message": "Magaság megadása..."
},
"instance.settings.tabs.window.width": {
"message": "Szélesség"
@@ -468,7 +459,7 @@
"message": "A játék ablakának szélessége indításkor."
},
"instance.settings.tabs.window.width.enter": {
"message": "Szélesség megadása..."
"message": "Hosszúság megadása..."
},
"instance.settings.title": {
"message": "Beállítások"
@@ -489,7 +480,7 @@
"message": "Elérhető"
},
"instance.worlds.game_already_open": {
"message": "A profil már meg van nyitva"
"message": "Példány már megnyitva"
},
"instance.worlds.hardcore": {
"message": "Hardcore mód"
@@ -498,16 +489,16 @@
"message": "A Szerver nem kompatibilis"
},
"instance.worlds.no_contact": {
"message": "Nem lehet kapcsolatot létesíteni a szerverrel"
"message": "A szerverrel nem lehet kapcsolatott létesíteni"
},
"instance.worlds.no_server_quick_play": {
"message": "Csak Minecraft Alpha 1.0.5+-tól tudsz egyből szerverhez csatlakozni"
"message": "Csak Minecraft Alpha 1.0.5+ tól tudsz egyből szerverhez csatlakozni"
},
"instance.worlds.no_singleplayer_quick_play": {
"message": "Csak Minecraft 1.20+-tól tudsz egyből egyjátékos világba belépni"
"message": "Csak Minecraft 1.20+ tól tudsz egyből egyjátékos világba belépni"
},
"instance.worlds.play_instance": {
"message": "Játék a profillal"
"message": "Példány "
},
"instance.worlds.type.server": {
"message": "Szerver"
@@ -522,15 +513,15 @@
"message": "A világ használatban van"
},
"search.filter.locked.instance": {
"message": "A profil által van megadva"
"message": "Profil által van megadva"
},
"search.filter.locked.instance-game-version.title": {
"message": "A játékverzió a profil által van megadva"
"message": "A játék verzió a profil által van megadva"
},
"search.filter.locked.instance-loader.title": {
"message": "A modbetöltő a profil által van megadva"
"message": "A betöltő a profil által van megadva"
},
"search.filter.locked.instance.sync": {
"message": "Profil szinkronizálása"
"message": "Profil Szinkronizálása"
}
}

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Server autentikasi Minecraft mungkin sedang tidak tersedia saat ini. Periksa koneksi internet Anda dan coba lagi nanti."
},
"app.auth-servers.unreachable.header": {
"message": "Tidak dapat terhubung ke server autentikasi"
},
"app.settings.developer-mode-enabled": {
"message": "Mode pengembang dihidupkan."
},
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Pemasangan Java"
},
"app.settings.tabs.language": {
"message": "Bahasa"
},
"app.settings.tabs.privacy": {
"message": "Privasi"
},
@@ -93,7 +84,7 @@
"message": "Masukkan nama pengguna Modrinth..."
},
"friends.add-friend.username.title": {
"message": "Apa nama pengguna Modrinth teman Anda?"
"message": "Apakah nama pengguna Modrinth teman Anda?"
},
"friends.add-friends-to-share": {
"message": "<link>Tambah teman</link> untuk melihat apa yang mereka mainkan!"
@@ -141,7 +132,7 @@
"message": "Tambah dan mainkan"
},
"instance.add-server.add-server": {
"message": "Tambah server"
"message": "Tambah peladen"
},
"instance.add-server.resource-pack.disabled": {
"message": "Dimatikan"
@@ -153,10 +144,10 @@
"message": "Konfirmasi"
},
"instance.add-server.title": {
"message": "Tambah server"
"message": "Tambah peladen"
},
"instance.edit-server.title": {
"message": "Sunting server"
"message": "Sunting peladen"
},
"instance.edit-world.hide-from-home": {
"message": "Sembunyikan dari Beranda"
@@ -186,7 +177,7 @@
"message": "Nama"
},
"instance.server-modal.placeholder-name": {
"message": "Server Minecraft"
"message": "Peladen Minecraft"
},
"instance.server-modal.resource-pack": {
"message": "Paket sumber"
@@ -474,10 +465,10 @@
"message": "Pengaturan"
},
"instance.worlds.a_minecraft_server": {
"message": "Server Minecraft"
"message": "Peladen Minecraft"
},
"instance.worlds.cant_connect": {
"message": "Tidak dapat menghubungkan ke server"
"message": "Tidak dapat menghubungkan ke peladen"
},
"instance.worlds.copy_address": {
"message": "Salin alamat"
@@ -495,13 +486,13 @@
"message": "Mode Menantang"
},
"instance.worlds.incompatible_server": {
"message": "Server tidak cocok"
"message": "Peladen tidak cocok"
},
"instance.worlds.no_contact": {
"message": "Server tidak dapat dihubungi"
"message": "Peladen tidak dapat dihubungi"
},
"instance.worlds.no_server_quick_play": {
"message": "Anda hanya dapat memasuki server secara langsung pada Minecraft versi Alpha 1.0.5 ke atas"
"message": "Anda hanya dapat memasuki peladen secara langsung pada Minecraft versi Alpha 1.0.5 ke atas"
},
"instance.worlds.no_singleplayer_quick_play": {
"message": "Anda hanya dapat memasuki dunia bermain sendiri secara langsung pada Minecraft versi Alpha 1.20 ke atas"
@@ -510,7 +501,7 @@
"message": "Mainkan wujud"
},
"instance.worlds.type.server": {
"message": "Server"
"message": "Peladen"
},
"instance.worlds.type.singleplayer": {
"message": "Bermain sendiri"

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "I server di autenticazione di Minecraft stanno riscontrando problemi. Controlla la tua connessione a Internet e riprova più tardi."
},
"app.auth-servers.unreachable.header": {
"message": "Impossibile raggiungere i server di autenticazione"
},
"app.settings.developer-mode-enabled": {
"message": "Modalità sviluppatore attiva."
},
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Installazioni Java"
},
"app.settings.tabs.language": {
"message": "Lingua"
},
"app.settings.tabs.privacy": {
"message": "Privacy"
},
@@ -33,16 +24,16 @@
"message": "Gestione risorse"
},
"app.update-toast.body": {
"message": "Modrinth App v{version} è pronta per essere installata! Ricarica per aggiornare ora, o avverrà in automatico alla chiusura di Modrinth App."
"message": "Modrinth App v{version} è pronta per essere installata! Ricarica per aggiornare ora, altrimenti ciò avverrà in automatico alla chiusura di Modrinth App."
},
"app.update-toast.body.download-complete": {
"message": "Modrinth App v{version} è stata scaricata. Ricarica per aggiornare ora, o avverrà in automatico alla chiusura di Modrinth App."
"message": "Modrinth App v{version} è stata scaricata. Ricarica per aggiornare ora, altrimenti ciò avverrà in automatico alla chiusura di Modrinth App."
},
"app.update-toast.body.metered": {
"message": "Modrinth App v{version} è ora disponibile! Poiché sei su una rete a consumo, non l''abbiamo scaricata automaticamente."
"message": "Modrinth App v{version} è ora disponibile! Poiché sei su una rete a consumo, non l'abbiamo scaricata automaticamente."
},
"app.update-toast.changelog": {
"message": "Novità"
"message": "Changelog"
},
"app.update-toast.download": {
"message": "Scarica ({size})"
@@ -60,7 +51,7 @@
"message": "Download completato"
},
"app.update.complete-toast.text": {
"message": "Clicca qui per leggere le ultime novità in inglese."
"message": "Clicca qui per leggere il changelog."
},
"app.update.complete-toast.title": {
"message": "La versione {version} è stata installata con successo!"
@@ -72,19 +63,19 @@
"message": "Scaricando aggiornamento ({percent}%)"
},
"app.update.reload-to-update": {
"message": "Ricarica per installare l''aggiornamento"
"message": "Ricarica per installare aggiornamento"
},
"friends.action.add-friend": {
"message": "Stringi un''amicizia"
"message": "Stringi un'amicizia"
},
"friends.action.view-friend-requests": {
"message": "{count} {count, plural, one {richiesta} other {richieste}} d''amicizia"
"message": "{count} {count, plural, one {richiesta} other {richieste}} d'amicizia"
},
"friends.add-friend.submit": {
"message": "Invia richiesta d''amicizia"
"message": "Invia richiesta d'amicizia"
},
"friends.add-friend.title": {
"message": "Stringendo l''amicizia"
"message": "Stringendo l'amicizia"
},
"friends.add-friend.username.description": {
"message": "Potrebbe essere diverso dal nome utente di Minecraft!"
@@ -93,10 +84,10 @@
"message": "Inserisci il nome utente Modrinth..."
},
"friends.add-friend.username.title": {
"message": "Con quale utente Modrinth vuoi stringere l''amicizia?"
"message": "Con quale utente Modrinth vuoi stringere l'amicizia?"
},
"friends.add-friends-to-share": {
"message": "<link>Stringi un''amicizia</link> per sapere a cosa stanno giocando!"
"message": "<link>Stringi un'amicizia</link> per sapere a cosa stanno giocando!"
},
"friends.friend.cancel-request": {
"message": "Annulla richiesta"
@@ -105,7 +96,7 @@
"message": "Annulla amicizia"
},
"friends.friend.request-sent": {
"message": "Richiesta d''amicizia inviata"
"message": "Richiesta d'amicizia inviata"
},
"friends.friend.view-profile": {
"message": "Visita profilo"
@@ -114,7 +105,7 @@
"message": "Amicizie"
},
"friends.heading.active": {
"message": "Presente"
"message": "Attivo"
},
"friends.heading.offline": {
"message": "Offline"
@@ -126,7 +117,7 @@
"message": "In sospeso"
},
"friends.no-friends-match": {
"message": "Nessuna amicizia corrisponde a ''{query}''"
"message": "Nessuna amicizia pertinente a ''{query}''"
},
"friends.search-friends-placeholder": {
"message": "Cerca amicizie..."
@@ -135,7 +126,7 @@
"message": "{title} - {count}"
},
"friends.sign-in-to-add-friends": {
"message": "<link>Accedi all''account Modrinth</link> per stringere amicizie e sapere a cosa stanno giocando!"
"message": "<link>Accedi all'account Modrinth</link> per stringere amicizie e sapere a cosa stanno giocando!"
},
"instance.add-server.add-and-play": {
"message": "Aggiungi e gioca"
@@ -159,7 +150,7 @@
"message": "Modifica server"
},
"instance.edit-world.hide-from-home": {
"message": "Nascondi dalla pagina home"
"message": "Nascondi dalla pagina Home"
},
"instance.edit-world.name": {
"message": "Nome"
@@ -189,7 +180,7 @@
"message": "Server di Minecraft"
},
"instance.server-modal.resource-pack": {
"message": "Pacchetto di risorse"
"message": "Pacchetto risorse"
},
"instance.settings.tabs.general": {
"message": "Generale"
@@ -201,7 +192,7 @@
"message": "Elimina istanza"
},
"instance.settings.tabs.general.delete.description": {
"message": "Elimina permanentemente un''istanza dal tuo dispositivo, compresi i tuoi mondi, file di configurazione e tutto il contenuto installato. Fai attenzione: eliminata un''istanza non c'è modo di recuperarla."
"message": "Elimina permanentemente un'istanza dal tuo dispositivo, compresi i tuoi mondi, file di configurazione, e tutto il contenuto installato. Fai attenzione: eliminata un'istanza non c'è modo di recuperarla."
},
"instance.settings.tabs.general.deleting.button": {
"message": "Eliminando..."
@@ -210,7 +201,7 @@
"message": "Duplica"
},
"instance.settings.tabs.general.duplicate-button.tooltip.installing": {
"message": "Impossibile duplicare durante l''installazione."
"message": "Impossibile duplicare durante l'installazione."
},
"instance.settings.tabs.general.duplicate-instance": {
"message": "Duplica istanza"
@@ -246,13 +237,13 @@
"message": "Nome"
},
"instance.settings.tabs.hooks": {
"message": "Hook di avvio"
"message": "Appigli di lancio"
},
"instance.settings.tabs.hooks.custom-hooks": {
"message": "Hook di avvio personalizzati"
"message": "Appigli di lancio personalizzati"
},
"instance.settings.tabs.hooks.description": {
"message": "I hook permettono a utenti avanzati di eseguire comandi di sistema prima e dopo l''avvio del gioco."
"message": "Gli appigli, o hook, permettono a utenti avanzati di eseguire comandi di sistema prima e dopo il lancio del gioco."
},
"instance.settings.tabs.hooks.post-exit": {
"message": "Post-uscita"
@@ -267,13 +258,13 @@
"message": "Pre-lancio"
},
"instance.settings.tabs.hooks.pre-launch.description": {
"message": "Eseguito prima dell''avvio dell''istanza."
"message": "Eseguito prima dell'avvio dell'istanza."
},
"instance.settings.tabs.hooks.pre-launch.enter": {
"message": "Inserisci comando pre-avvio..."
"message": "Inserisci comando pre-lancio..."
},
"instance.settings.tabs.hooks.title": {
"message": "Hook all''avvio del gioco"
"message": "Appigli all'avvio del gioco"
},
"instance.settings.tabs.hooks.wrapper": {
"message": "Wrapper"
@@ -303,19 +294,19 @@
"message": "Installando"
},
"instance.settings.tabs.installation.change-version.cannot-while-fetching": {
"message": "Ottenendo versioni del pacchetto di mod"
"message": "Ottenendo versioni del modpack"
},
"instance.settings.tabs.installation.change-version.in-progress": {
"message": "Installando nuova versione"
},
"instance.settings.tabs.installation.currently-installed": {
"message": "Installazione corrente"
"message": "Già installato"
},
"instance.settings.tabs.installation.debug-information": {
"message": "Informazioni per il debug:"
},
"instance.settings.tabs.installation.fetching-modpack-details": {
"message": "Ottenendo dettagli del pacchetto di mod"
"message": "Ottenendo dettagli del modpack"
},
"instance.settings.tabs.installation.game-version": {
"message": "Versione del gioco"
@@ -333,34 +324,34 @@
"message": "Minecraft {version}"
},
"instance.settings.tabs.installation.no-connection": {
"message": "Impossibile ottenere i dettagli del pacchetto di mod collegato. Si prega di controllare la connessione a Internet."
"message": "Non è stato possibile ottenere i dettagli del modpack collegato. Si prega di verificare la connessione a internet."
},
"instance.settings.tabs.installation.no-loader-versions": {
"message": "{loader} non è disponibile per Minecraft {version}. Prova un altro loader."
},
"instance.settings.tabs.installation.no-modpack-found": {
"message": "L''istanza è collegata a un pacchetto di mod, ma non è stato possibile trovarlo su Modrinth."
"message": "L'istanza è collegata a un modpack, ma non è stato possibile trovarlo su Modrinth."
},
"instance.settings.tabs.installation.platform": {
"message": "Piattaforma"
},
"instance.settings.tabs.installation.reinstall.button": {
"message": "Reinstalla pacchetto di mod"
"message": "Reinstalla modpack"
},
"instance.settings.tabs.installation.reinstall.button.reinstalling": {
"message": "Reinstallando pacchetto di mod"
"message": "Reinstallando modpack"
},
"instance.settings.tabs.installation.reinstall.confirm.description": {
"message": "La reinstallazione resetterà tutto il contenuto installato o modificato a ciò che è fornito dal pacchetto di mod, rimuovendo ogni mod o contenuto che tu abbia aggiunto all''installazione originale. Questo potrebbe risolvere comportamenti inaspettati se ci sono state modifiche all''istanza, ma se ora i tuoi mondi dipendessero da contenuto aggiuntivo installato, essi verrebbero corrotti."
"message": "La reinstallazione resetterà tutto il contenuto installato o modificato a ciò che è fornito dal modpack, rimuovendo ogni mod o contenuto che tu abbia aggiunto all'installazione originale. Questo potrebbe risolvere comportamenti inaspettati se ci sono state modifiche all'istanza, ma se ora i tuoi mondi dipendessero da contenuto aggiuntivo installato, essi verrebbero corrotti."
},
"instance.settings.tabs.installation.reinstall.confirm.title": {
"message": "Vuoi davvero reinstallare questa istanza?"
},
"instance.settings.tabs.installation.reinstall.description": {
"message": "Resetta il contenuto dell''istanza al suo stato originale, rimuovendo ogni mod o contenuto che tu abbia aggiunto al pacchetto di mod originale."
"message": "Resetta il contenuto dell'istanza al suo stato originale, rimuovendo ogni mod o contenuto che tu abbia aggiunto al modpack originale."
},
"instance.settings.tabs.installation.reinstall.title": {
"message": "Reinstalla pacchetto di mod"
"message": "Reinstalla modpack"
},
"instance.settings.tabs.installation.repair.button": {
"message": "Ripara"
@@ -372,13 +363,13 @@
"message": "La riparazione reinstalla le dipendenze di Minecraft e verifica eventuali corruzioni. Questo potrebbe risolvere problemi di avvio del gioco se dovuti a errori legati al launcher, ma non risolverà problemi o crash legati alle mod installate."
},
"instance.settings.tabs.installation.repair.confirm.title": {
"message": "Riparare l''istanza?"
"message": "Riparare l'istanza?"
},
"instance.settings.tabs.installation.repair.in-progress": {
"message": "Riparazione in corso"
},
"instance.settings.tabs.installation.reset-selections": {
"message": "Resetta ad attuale"
"message": "Resetta a corrente"
},
"instance.settings.tabs.installation.show-all-versions": {
"message": "Mostra tutte le versioni"
@@ -396,7 +387,7 @@
"message": "ripara"
},
"instance.settings.tabs.installation.tooltip.cannot-while-installing": {
"message": "Impossibile {action} durante l''installazione"
"message": "Impossibile {action} durante l'installazione"
},
"instance.settings.tabs.installation.tooltip.cannot-while-offline": {
"message": "Impossibile {action} senza connessione"
@@ -411,25 +402,25 @@
"message": "Scollega istanza"
},
"instance.settings.tabs.installation.unlink.confirm.description": {
"message": "Procedendo non potrai più ricollegarla se non creando una nuova istanza da zero. Diventerà una normale installazione, per cui non riceverai più aggiornamenti dal pacchetto di mod."
"message": "Se procedi, non potrai ricollegarla senza creare una nuova istanza da zero. Non riceverai più aggiornamenti dal modpack e diventerà una normale installazione."
},
"instance.settings.tabs.installation.unlink.confirm.title": {
"message": "Vuoi davvero scollegare questa istanza?"
},
"instance.settings.tabs.installation.unlink.description": {
"message": "Questa istanza è collegata a un pacchetto di mod, cioè le mod non possono essere aggiornate manualmente, e non puoi cambiare loader di mod né versione di Minecraft. Lo scollegamento disconnetterà definitivamente questa istanza dal pacchetto di mod."
"message": "Questa istanza è collegata a un modpack, cioè le mod non possono essere aggiornate manualmente, e non puoi cambiare loader di mod né versione di Minecraft. Lo scollegamento disconnetterà definitivamente questa istanza dal modpack."
},
"instance.settings.tabs.installation.unlink.title": {
"message": "Scollega dal pacchetto di mod"
"message": "Scollega dal modpack"
},
"instance.settings.tabs.java": {
"message": "Java e memoria"
},
"instance.settings.tabs.java.environment-variables": {
"message": "Variabili d''ambiente"
"message": "Variabili d'ambiente"
},
"instance.settings.tabs.java.hooks": {
"message": "Hook"
"message": "Appigli"
},
"instance.settings.tabs.java.java-arguments": {
"message": "Argomenti Java"
@@ -456,7 +447,7 @@
"message": "Altezza"
},
"instance.settings.tabs.window.height.description": {
"message": "L''altezza della finestra del gioco all''avvio."
"message": "L'altezza della finestra del gioco all'avvio."
},
"instance.settings.tabs.window.height.enter": {
"message": "Inserisci altezza..."
@@ -465,7 +456,7 @@
"message": "Larghezza"
},
"instance.settings.tabs.window.width.description": {
"message": "La larghezza della finestra del gioco all''avvio."
"message": "La larghezza della finestra del gioco all'avvio."
},
"instance.settings.tabs.window.width.enter": {
"message": "Inserisci larghezza..."
@@ -474,7 +465,7 @@
"message": "Impostazioni"
},
"instance.worlds.a_minecraft_server": {
"message": "Un server Minecraft"
"message": "Un Server Minecraft"
},
"instance.worlds.cant_connect": {
"message": "Impossibile connettersi al server"
@@ -483,7 +474,7 @@
"message": "Copia indirizzo"
},
"instance.worlds.dont_show_on_home": {
"message": "Non mostrare nella home"
"message": "Non mostrare nella Home"
},
"instance.worlds.filter.available": {
"message": "Disponibile"
@@ -501,10 +492,10 @@
"message": "Impossibile contattare il server"
},
"instance.worlds.no_server_quick_play": {
"message": "È possibile avviare un server direttamente solo su Minecraft Alpha 1.0.5+"
"message": "È possibile avviare direttamente un server solo su Minecraft Alpha 1.0.5+"
},
"instance.worlds.no_singleplayer_quick_play": {
"message": "È possibile avviare direttamente un mondo in giocatore singolo solo su Minecraft 1.20+"
"message": "È possibile avviare direttamente un mondo in Giocatore Singolo solo su Minecraft 1.20+"
},
"instance.worlds.play_instance": {
"message": "Gioca istanza"
@@ -513,7 +504,7 @@
"message": "Server"
},
"instance.worlds.type.singleplayer": {
"message": "Giocatore singolo"
"message": "Giocatore Singolo"
},
"instance.worlds.view_instance": {
"message": "Mostra istanza"
@@ -522,15 +513,15 @@
"message": "Mondo già in uso"
},
"search.filter.locked.instance": {
"message": "Fornito dall''istanza"
"message": "Fornito dall'istanza"
},
"search.filter.locked.instance-game-version.title": {
"message": "La versione del gioco è fornita dall''istanza"
"message": "La versione del gioco è fornita dall'istanza"
},
"search.filter.locked.instance-loader.title": {
"message": "Il loader è fornito dall''istanza"
"message": "Il loader è fornito dall'istanza"
},
"search.filter.locked.instance.sync": {
"message": "Sincronizza con l''istanza"
"message": "Sincronizza con l'istanza"
}
}

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Minecraft の認証サーバーは現在停止している可能性があります。インターネット接続を確認し、しばらくしてからもう一度お試しください。"
},
"app.auth-servers.unreachable.header": {
"message": "認証サーバーにアクセスできません"
},
"app.settings.developer-mode-enabled": {
"message": "開発者モードがオンになっています。"
},
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Javaのインストール"
},
"app.settings.tabs.language": {
"message": "言語"
},
"app.settings.tabs.privacy": {
"message": "プライバシー"
},

View File

@@ -1,15 +1,9 @@
{
"app.auth-servers.unreachable.body": {
"message": "Minecraft 인증 서버가 일시적으로 중단되었을 수 있습니다. 인터넷 연결을 확인한 후 나중에 다시 시도하세요."
},
"app.auth-servers.unreachable.header": {
"message": "인증 서버에 연결할 수 없습니다"
},
"app.settings.developer-mode-enabled": {
"message": "개발자 모드가 활성화되습니다."
"message": "개발자 모드가 활성화되어 있습니다."
},
"app.settings.downloading": {
"message": "버전 다운로드 중: v{version}"
"message": "v{version} 다운로드 중"
},
"app.settings.tabs.appearance": {
"message": "모양"
@@ -23,122 +17,26 @@
"app.settings.tabs.java-installations": {
"message": "Java 설치"
},
"app.settings.tabs.language": {
"message": "언어"
},
"app.settings.tabs.privacy": {
"message": "개인정보 보호"
},
"app.settings.tabs.resource-management": {
"message": "리소스 관리"
},
"app.update-toast.body": {
"message": "Modrinth App v{version}을 설치할 준비가 완료되었습니다! 새로고침하거나 Modrinth App을 종료하면 자동으로 업데이트합니다."
},
"app.update-toast.body.download-complete": {
"message": "Modrinth App v{version} 다운로드가 완료되었습니다. 새로고침하거나 Modrinth App을 종료하면 자동으로 업데이트합니다."
},
"app.update-toast.body.metered": {
"message": "Modrinth App v{version}이 지금 이용 가능합니다! 종량제 네트워크에 있기 때문에, 자동으로 다운로드하지 않았습니다."
},
"app.update-toast.changelog": {
"message": "변경 내역"
"message": "변경사항"
},
"app.update-toast.download": {
"message": "({size}) 다운로드"
"message": "다운로드 ({size})"
},
"app.update-toast.downloading": {
"message": "다운로드 중..."
},
"app.update-toast.reload": {
"message": "새로고침"
},
"app.update-toast.title": {
"message": "업데이트 가능"
},
"app.update-toast.title.download-complete": {
"message": "다운로드 완료"
},
"app.update.complete-toast.text": {
"message": "변경 내역을 보려면 클릭하세요."
},
"app.update.complete-toast.title": {
"message": "{version} 버전이 성공적으로 설치되었습니다!"
},
"app.update.download-update": {
"message": "업데이트 다운로드"
},
"app.update.downloading-update": {
"message": "업데이트 다운로드 중 ({percent}%)"
},
"app.update.reload-to-update": {
"message": "새로고침하여 업데이트 설치"
},
"friends.action.add-friend": {
"message": "친구 추가"
},
"friends.action.view-friend-requests": {
"message": "{count} 친구 요청 {count, plural, one {건의} other {건의}}"
},
"friends.add-friend.submit": {
"message": "친구 요청 보내기"
},
"friends.add-friend.title": {
"message": "친구 추가 중"
},
"friends.add-friend.username.description": {
"message": "Minecraft 사용자명과 다를 수 있습니다!"
},
"friends.add-friend.username.placeholder": {
"message": "Modrinth 사용자명 입력..."
},
"friends.add-friend.username.title": {
"message": "친구의 Modrinth 사용자명이 무엇인가요?"
},
"friends.add-friends-to-share": {
"message": "친구들이 무엇을 하는지 보려면 <link>친구 추가</link>를 하세요!"
},
"friends.friend.cancel-request": {
"message": "요청 취소"
},
"friends.friend.remove-friend": {
"message": "친구 삭제"
},
"friends.friend.request-sent": {
"message": "이미 친구 요청을 보냈습니다"
},
"friends.friend.view-profile": {
"message": "프로필 보기"
},
"friends.heading": {
"message": "친구"
},
"friends.heading.active": {
"message": "활동 중"
},
"friends.heading.offline": {
"message": "오프라인"
},
"friends.heading.online": {
"message": "온라인"
},
"friends.heading.pending": {
"message": "대기 중"
},
"friends.no-friends-match": {
"message": "\"{query}\"와 일치하는 친구가 없습니다"
},
"friends.search-friends-placeholder": {
"message": "친구 찾는 중..."
},
"friends.section.heading": {
"message": "{title} - {count}"
},
"friends.sign-in-to-add-friends": {
"message": "친구를 추가하고 무엇을 하는지 보려면 <link>Modrinth 계정에 로그인</link>하세요!"
"message": "리로드"
},
"instance.add-server.add-and-play": {
"message": "추가 플레이"
"message": "추가하고 플레이"
},
"instance.add-server.add-server": {
"message": "서버 추가"
@@ -201,22 +99,22 @@
"message": "인스턴스 삭제"
},
"instance.settings.tabs.general.delete.description": {
"message": "기기에서 인스턴스를 완전히 삭제합니다. 세계, 설정, 설치된 모든 콘텐츠가 함께 제됩니다. 주의하세요, 한 번 삭제하면 인스턴스를 복구할 없습니다."
"message": "기기에서 인스턴스를 완전히 삭제합니다. 월드, 설정, 설치된 모든 콘텐츠가 함께 제됩니다. 주의하세요, 한 번 삭제하면 인스턴스를 복구할 방법은 없습니다."
},
"instance.settings.tabs.general.deleting.button": {
"message": "삭제 중..."
"message": "삭제중..."
},
"instance.settings.tabs.general.duplicate-button": {
"message": "복제"
},
"instance.settings.tabs.general.duplicate-button.tooltip.installing": {
"message": "설치 중에는 복제할 수 없습니다."
"message": "설치중에는 복제할 수 없습니다."
},
"instance.settings.tabs.general.duplicate-instance": {
"message": "인스턴스 복제"
},
"instance.settings.tabs.general.duplicate-instance.description": {
"message": "인스턴스의 복사본을 생성합니다. 세계, 설정, 모드, 기타 등등도 함께 복사됩니다."
"message": "인스턴스의 복사본을 생성합니다. 월드, 설정, 모드, 기타 등등도 함께 복사됩니다."
},
"instance.settings.tabs.general.edit-icon": {
"message": "아이콘 수정"
@@ -279,7 +177,7 @@
"message": "래퍼"
},
"instance.settings.tabs.hooks.wrapper.description": {
"message": "Minecraft 실행을 위한 래퍼 명령어 입니다."
"message": "Minecraft 실행을 위한 래퍼 명령어 입니다."
},
"instance.settings.tabs.hooks.wrapper.enter": {
"message": "래퍼 명령어 입력..."
@@ -351,7 +249,7 @@
"message": "모드팩 재설치 중"
},
"instance.settings.tabs.installation.reinstall.confirm.description": {
"message": "재설치하면 설치 또는 수정된 모든 콘텐츠가 모드팩에서 제공하는 콘텐츠로 초기화되며, 기존 팩에 추가한 모드나 콘텐츠는 모두 제거됩니다. 인스턴스에 변경 사항이 있는 경우 예상치 못한 동작은 해결할 수 있지만, 현재 세계가 추가로 설치된 콘텐츠에 의존하고 있다면 기존 세계가 손상될 수 있습니다."
"message": "재설치하면 설치 또는 수정된 모든 콘텐츠가 모드팩에서 제공하는 콘텐츠로 초기화되며, 기존 팩에 추가한 모드나 콘텐츠는 모두 제거됩니다. 인스턴스에 변경 사항이 있는 경우 예상치 못한 동작은 해결할 수 있지만, 현재 월드가 추가로 설치된 콘텐츠에 의존하고 있다면 기존 월드가 손상될 수 있습니다."
},
"instance.settings.tabs.installation.reinstall.confirm.title": {
"message": "정말로 이 인스턴스를 다시 설치하시겠습니까?"
@@ -519,7 +417,7 @@
"message": "인스턴스 보기"
},
"instance.worlds.world_in_use": {
"message": "사용 중인 세계"
"message": "사용중인 월드"
},
"search.filter.locked.instance": {
"message": "인스턴스에서 관리"

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Pelayan pengesahan Minecraft mungkin sedang tergendala sekarang. Periksa sambungan internet anda dan cuba lagi nanti."
},
"app.auth-servers.unreachable.header": {
"message": "Tidak dapat mencapai pelayan pengesahan"
},
"app.settings.developer-mode-enabled": {
"message": "مود ڤمباڠون دداياکن."
},

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Pelayan pengesahan Minecraft mungkin sedang tergendala sekarang. Periksa sambungan internet anda dan cuba lagi nanti."
},
"app.auth-servers.unreachable.header": {
"message": "Tidak dapat mencapai pelayan pengesahan"
},
"app.settings.developer-mode-enabled": {
"message": "Mod pembangun didayakan."
},
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Pemasangan Java"
},
"app.settings.tabs.language": {
"message": "Bahasa"
},
"app.settings.tabs.privacy": {
"message": "Privasi"
},

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Minecraft verificatie servers zijn misschien offline. Check je internetverbinding en probeer opnieuw later."
},
"app.auth-servers.unreachable.header": {
"message": "Authenticatieservers kunnen niet worden bereikt"
},
"app.settings.developer-mode-enabled": {
"message": "Ontwikkelaarsmodus ingeschakeld."
},
@@ -18,14 +12,11 @@
"message": "Standaardopties voor instantie"
},
"app.settings.tabs.feature-flags": {
"message": "Feature flags"
"message": "Functie vlaggen"
},
"app.settings.tabs.java-installations": {
"message": "Java installaties"
},
"app.settings.tabs.language": {
"message": "Taal"
},
"app.settings.tabs.privacy": {
"message": "Privacy"
},
@@ -93,10 +84,10 @@
"message": "Voer Modrinth gebruikersnaam in..."
},
"friends.add-friend.username.title": {
"message": "Wat is de Modrinth gebruikersnaam van jouw vriend?"
"message": "Wat is de Modrinth gebruikersnaam van uw vriend?"
},
"friends.add-friends-to-share": {
"message": "<link>Voeg vrienden toe</link> om te zien wat zij spelen!"
"message": "<link>Voeg vrienden</link> om te zien wat hun spelen!"
},
"friends.friend.cancel-request": {
"message": "Annuleer verzoek"
@@ -135,7 +126,7 @@
"message": "{title} - {count}"
},
"friends.sign-in-to-add-friends": {
"message": "<link>Log in op een Modrinth account</link> om vrienden toe te voegen en zien wat zij spelen!"
"message": "<link>Log in op een Modrinth account</link> om vrienden toe te voegen en te kijken wat zij spelen!"
},
"instance.add-server.add-and-play": {
"message": "Toevoegen en spelen"

View File

@@ -1,15 +1,9 @@
{
"app.auth-servers.unreachable.body": {
"message": "Minecraft-autentiseringsservere kan være nede for øyeblikket. Kontroller internettforbindelsen din og prøv igjen senere."
},
"app.auth-servers.unreachable.header": {
"message": "Kan ikke nå autentiseringsservere"
},
"app.settings.developer-mode-enabled": {
"message": "Utviklermodus aktivert."
},
"app.settings.downloading": {
"message": "Laster ned v{version}"
"message": "Nedlaster v{version}"
},
"app.settings.tabs.appearance": {
"message": "Utseende"
@@ -23,32 +17,17 @@
"app.settings.tabs.java-installations": {
"message": "Java installasjoner"
},
"app.settings.tabs.language": {
"message": "Språk"
},
"app.settings.tabs.privacy": {
"message": "Personvern"
},
"app.settings.tabs.resource-management": {
"message": "Ressursforvaltning"
},
"app.update-toast.body": {
"message": "Modrinth App v{version} er klar for installering! Last inn på nytt for å oppdatere nå, eller automatisk når du lukker Modrinth App."
},
"app.update-toast.body.download-complete": {
"message": "Modrinth App v{version} er ferdig lastet ned. Last in på nytt for å oppdatere nå, eller automatisk når du lukker Modrinth App."
},
"app.update-toast.body.metered": {
"message": "Modrinth App v{version} er tilgjengelig nå! Siden du er på en forbruksmålt tilkobling, lastet vi den ikke ned automatisk."
},
"app.update-toast.changelog": {
"message": "Endringslogg"
},
"app.update-toast.download": {
"message": "Last ned ({size})"
},
"app.update-toast.downloading": {
"message": "Laster ned..."
"message": "Nedlast ({size})"
},
"app.update-toast.reload": {
"message": "Last inn på nytt"
@@ -56,87 +35,15 @@
"app.update-toast.title": {
"message": "Oppdatering tilgjengelig"
},
"app.update-toast.title.download-complete": {
"message": "Ferdig lastet ned"
},
"app.update.complete-toast.text": {
"message": "Klikk her for å se endringsloggen."
},
"app.update.complete-toast.title": {
"message": "Versjon {version} ble installert!"
},
"app.update.download-update": {
"message": "Last ned oppdatering"
},
"app.update.downloading-update": {
"message": "Laster ned oppdatering ({percent}%)"
},
"app.update.reload-to-update": {
"message": "Last inn på nytt for å installere oppdateringen"
},
"friends.action.add-friend": {
"message": "Legg til en venn"
},
"friends.action.view-friend-requests": {
"message": "{count} venne{count, plural,one {forespørsel} other {forespørsler}}"
},
"friends.add-friend.submit": {
"message": "Send venneforespørsel"
},
"friends.add-friend.title": {
"message": "Legger til en venn"
},
"friends.add-friend.username.description": {
"message": "Det kan være annerledes enn Minecraft-brukernavnet deres!"
},
"friends.add-friend.username.placeholder": {
"message": "Fyll ut Modrinth-brukernavn..."
},
"friends.add-friend.username.title": {
"message": "Hva er Modrinth-brukernavnet til vennen din?"
},
"friends.add-friends-to-share": {
"message": "<link>Legg til venner</link> for å se hva de spiller!"
},
"friends.friend.cancel-request": {
"message": "Avbryt forespørsel"
},
"friends.friend.remove-friend": {
"message": "Fjern venn"
},
"friends.friend.request-sent": {
"message": "Venneforespørsel sent"
},
"friends.friend.view-profile": {
"message": "Vis profil"
},
"friends.heading": {
"message": "Venner"
},
"friends.heading.active": {
"message": "Aktiv"
},
"friends.heading.offline": {
"message": "Offline"
},
"friends.heading.online": {
"message": "Online"
},
"friends.heading.pending": {
"message": "Ventende"
},
"friends.no-friends-match": {
"message": "Ingen venner som samsvarer \"{query}\""
},
"friends.search-friends-placeholder": {
"message": "Søk venner..."
},
"friends.section.heading": {
"message": "{title} - {count}"
},
"friends.sign-in-to-add-friends": {
"message": "<link>Logg inn til en Modrinth-bruker</link> for å legge til venner og se hva de spiller!"
},
"instance.add-server.add-and-play": {
"message": "Legg til og spill"
},
@@ -260,39 +167,21 @@
"instance.settings.tabs.hooks.post-exit.description": {
"message": "Kørt etter spillet lukkes."
},
"instance.settings.tabs.hooks.post-exit.enter": {
"message": "Skriv inn kommando etter avslutning..."
},
"instance.settings.tabs.hooks.pre-launch": {
"message": "Før oppstart"
},
"instance.settings.tabs.hooks.pre-launch.description": {
"message": "Kørt før instansen startes."
},
"instance.settings.tabs.hooks.pre-launch.enter": {
"message": "Skriv inn kommando før start..."
},
"instance.settings.tabs.hooks.title": {
"message": "Spillstartkroker"
},
"instance.settings.tabs.hooks.wrapper": {
"message": "Wrapper"
},
"instance.settings.tabs.hooks.wrapper.description": {
"message": "Wrapper-kommando for å starte Minecraft."
},
"instance.settings.tabs.hooks.wrapper.enter": {
"message": "Skriv inn wrapper-kommando..."
},
"instance.settings.tabs.installation": {
"message": "Installasjon"
},
"instance.settings.tabs.installation.change-version.already-installed.modded": {
"message": "{platform} {version} for Minecraft {game_version} er allerede installert"
},
"instance.settings.tabs.installation.change-version.already-installed.vanilla": {
"message": "Vanilla {game_version} er allerede installert"
},
"instance.settings.tabs.installation.change-version.button": {
"message": "Endre versjon"
},
@@ -302,9 +191,6 @@
"instance.settings.tabs.installation.change-version.button.installing": {
"message": "Installerer"
},
"instance.settings.tabs.installation.change-version.cannot-while-fetching": {
"message": "Henter modpakkeversjoner"
},
"instance.settings.tabs.installation.change-version.in-progress": {
"message": "Installerer ny versjon"
},
@@ -314,9 +200,6 @@
"instance.settings.tabs.installation.debug-information": {
"message": "Feilsøkingsinformasjon:"
},
"instance.settings.tabs.installation.fetching-modpack-details": {
"message": "Henter modpakkedetaljer"
},
"instance.settings.tabs.installation.game-version": {
"message": "Spillversjon"
},
@@ -332,15 +215,9 @@
"instance.settings.tabs.installation.minecraft-version": {
"message": "Minecraft {version}"
},
"instance.settings.tabs.installation.no-connection": {
"message": "Kan ikke hente detaljer for tilknyttet modpakke."
},
"instance.settings.tabs.installation.no-loader-versions": {
"message": "{loader} er ikke tilgjengelig for Minecraft {version}. Prøv en annen mod laster."
},
"instance.settings.tabs.installation.no-modpack-found": {
"message": "Denne instansen er tilknyttet til en modpakke, men modpakken er ikke funnet på Modrinth."
},
"instance.settings.tabs.installation.platform": {
"message": "Platform"
},
@@ -356,81 +233,42 @@
"instance.settings.tabs.installation.reinstall.confirm.title": {
"message": "Er du sikker på at du vil reinstallere denne instansen?"
},
"instance.settings.tabs.installation.reinstall.description": {
"message": "Resetter innholdet til instansen til sin opprinnelige tilstand, som fjerner alle mods eller innhold som du har lagd til på toppen av originalpakken."
},
"instance.settings.tabs.installation.reinstall.title": {
"message": "Reinstaller modpakke"
},
"instance.settings.tabs.installation.repair.button": {
"message": "Reparer"
},
"instance.settings.tabs.installation.repair.button.repairing": {
"message": "Reparerer"
},
"instance.settings.tabs.installation.repair.confirm.description": {
"message": "Reparasjon reinstallerer Minecraft-avhengigheter og sjekker for korrupsjon. Dette kan fikse problemer hvis spillet ikke starter grunnet launcher-relaterte feil, men vil ikke løse problemer eller krasj relatert til installerte mods."
},
"instance.settings.tabs.installation.repair.confirm.title": {
"message": "Reparer instanse?"
},
"instance.settings.tabs.installation.repair.in-progress": {
"message": "Reparasjon pågår"
},
"instance.settings.tabs.installation.reset-selections": {
"message": "Reset til nåværende"
},
"instance.settings.tabs.installation.show-all-versions": {
"message": "Vis alle versjoner"
},
"instance.settings.tabs.installation.tooltip.action.change-version": {
"message": "endre versjon"
},
"instance.settings.tabs.installation.tooltip.action.install": {
"message": "installer"
},
"instance.settings.tabs.installation.tooltip.action.reinstall": {
"message": "reinstaller"
},
"instance.settings.tabs.installation.tooltip.action.repair": {
"message": "reparer"
},
"instance.settings.tabs.installation.tooltip.cannot-while-installing": {
"message": "Kan ikke {action} mens en installasjon pågår"
},
"instance.settings.tabs.installation.tooltip.cannot-while-offline": {
"message": "Kan ikke {action} når man er offline"
},
"instance.settings.tabs.installation.tooltip.cannot-while-repairing": {
"message": "Kan ikke {action} mens en reparasjon pågår"
},
"instance.settings.tabs.installation.unknown-version": {
"message": "(ukjent versjon)"
},
"instance.settings.tabs.installation.unlink.button": {
"message": "Koble fra instanse"
},
"instance.settings.tabs.installation.unlink.confirm.description": {
"message": "Hvis du fortsetter, vil du ikke kunne koble det på nytt uten å lage en helt ny instans. Du vil ikke kunne få oppdateringer for modpakker lenger og det vil bli til en normal instans."
},
"instance.settings.tabs.installation.unlink.confirm.title": {
"message": "Er du sikker på at du vil koble fra denne instansen?"
},
"instance.settings.tabs.installation.unlink.description": {
"message": "Denne instansen er koblet til en modpakke, som betyr at mods ikke kan bli oppdatert og at du ikke kan endre modloaderen eller Minecraft-versjonen. Å avlenke vil permanent koble fra instansen fra modpakken."
},
"instance.settings.tabs.installation.unlink.title": {
"message": "Koble fra modpakke"
},
"instance.settings.tabs.java": {
"message": "Java og minne"
},
"instance.settings.tabs.java.environment-variables": {
"message": "Miljøvariabler"
},
"instance.settings.tabs.java.hooks": {
"message": "Hooker"
},
"instance.settings.tabs.java.java-arguments": {
"message": "Java argumenter"
},
@@ -443,15 +281,9 @@
"instance.settings.tabs.window": {
"message": "Vindu"
},
"instance.settings.tabs.window.custom-window-settings": {
"message": "Tilpasset vindusinstillinger"
},
"instance.settings.tabs.window.fullscreen": {
"message": "Fullskjerm"
},
"instance.settings.tabs.window.fullscreen.description": {
"message": "Få spillet til å starte i fullskjerm når det starter opp (ved å bruke options.txt)."
},
"instance.settings.tabs.window.height": {
"message": "Høyde"
},
@@ -482,9 +314,6 @@
"instance.worlds.copy_address": {
"message": "Kopier addresse"
},
"instance.worlds.dont_show_on_home": {
"message": "Ikke vis på Hjem"
},
"instance.worlds.filter.available": {
"message": "Tilgjengelig"
},
@@ -500,12 +329,6 @@
"instance.worlds.no_contact": {
"message": "Server kunne ikke kontaktes"
},
"instance.worlds.no_server_quick_play": {
"message": "Du kan bare hoppe rett inn i servere på Minecraft Alpha 1.0.5+"
},
"instance.worlds.no_singleplayer_quick_play": {
"message": "Du kan bare hoppe rett inn i enkeltspiller-verdener på Minecraft 1.20+"
},
"instance.worlds.play_instance": {
"message": "Spill instans"
},
@@ -520,17 +343,5 @@
},
"instance.worlds.world_in_use": {
"message": "Verdenen er i bruk"
},
"search.filter.locked.instance": {
"message": "Levert av instansen"
},
"search.filter.locked.instance-game-version.title": {
"message": "Spillversjon er levert av instansen"
},
"search.filter.locked.instance-loader.title": {
"message": "Oppstarter er levert av instansen"
},
"search.filter.locked.instance.sync": {
"message": "Synkroniser med instans"
}
}

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Serwery uwierzytelniania Minecraft mogą aktualnie nie działać. Sprawdź swoje połączenie z internetem i spróbuj ponownie później."
},
"app.auth-servers.unreachable.header": {
"message": "Nie udało się połączyć się z serwerami uwierzytelniania"
},
"app.settings.developer-mode-enabled": {
"message": "Tryb dewelopera włączony."
},
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Instalacje Java"
},
"app.settings.tabs.language": {
"message": "Język"
},
"app.settings.tabs.privacy": {
"message": "Prywatność"
},
@@ -69,7 +60,7 @@
"message": "Pobierz aktualizację"
},
"app.update.downloading-update": {
"message": "Pobieranie aktualizacji ({percent}%)"
"message": "Instalacja aktualizacji ({percent}%)"
},
"app.update.reload-to-update": {
"message": "Załaduj ponownie, aby zainstalować aktualizację"
@@ -90,7 +81,7 @@
"message": "Może różnić się od nazwy użytkownika Minecraft!"
},
"friends.add-friend.username.placeholder": {
"message": "Wprowadź nazwę użytkownika Modrinth..."
"message": "Wpisz nazwę użytkownika Modrinth..."
},
"friends.add-friend.username.title": {
"message": "Jaka jest nazwa użytkownika Twojego znajomego?"
@@ -102,7 +93,7 @@
"message": "Anuluj zaproszenie"
},
"friends.friend.remove-friend": {
"message": "Usuń znajomego"
"message": "Usuń z znajomych"
},
"friends.friend.request-sent": {
"message": "Wysłano zaproszenie"
@@ -216,7 +207,7 @@
"message": "Duplikuj instancję"
},
"instance.settings.tabs.general.duplicate-instance.description": {
"message": "Tworzy kopię tej instancji, w tym światy, konfiguracje, mody, itp."
"message": "Tworzy kopie tej instancji, w tym światy, konfiguracje, mody, itp."
},
"instance.settings.tabs.general.edit-icon": {
"message": "Edytuj ikonę"
@@ -237,7 +228,7 @@
"message": "Utwórz nową grupę"
},
"instance.settings.tabs.general.library-groups.description": {
"message": "Grupy bibliotek pozwala ci organizować twoje instancje w różne sekcje w twojej bibliotece."
"message": "Grupowanie bibliotek pozwala ci na rozdzielenie instalacji na kilka różnych sekcji w twojej bibliotece."
},
"instance.settings.tabs.general.library-groups.enter-name": {
"message": "Wpisz nazwę grupy"
@@ -261,7 +252,7 @@
"message": "Aktywowane po zamknięciu gry."
},
"instance.settings.tabs.hooks.post-exit.enter": {
"message": "Wprowadź komendę po zamknięciu..."
"message": "Wpisz komendę po zamknięciu..."
},
"instance.settings.tabs.hooks.pre-launch": {
"message": "Przed uruchomieniem"
@@ -357,7 +348,7 @@
"message": "Czy jesteś pewien, że chcesz ponownie zainstalować tę instancję?"
},
"instance.settings.tabs.installation.reinstall.description": {
"message": "Resetuje zawartość instancji do jej oryginalnego stanu, usuwając jakiekolwiek modyfikacje lub zawartość którą dodano do paczki modów."
"message": "Resetuje zawartość instancji do jej oryginalnego stanu, usuwając jakiekolwiek modyfikacje lub zawartość, którą dodano do paczki modów."
},
"instance.settings.tabs.installation.reinstall.title": {
"message": "Ponownie zainstaluj paczkę modów"
@@ -369,7 +360,7 @@
"message": "Naprawianie"
},
"instance.settings.tabs.installation.repair.confirm.description": {
"message": "Naprawa ponownie instaluje zależności Minecraft i sprawdza, czy nie są one uszkodzone. Może to rozwiązać problemy, jeśli gra nie uruchomi się z powodu błędów związanych z launcherem, ale nie rozwiąże problemów związanych z zainstalowanymi modami."
"message": "Naprawa ponownej instalacji zależności Minecraft i kontroli korupcji. Może to rozwiązać problemy, jeśli gra nie uruchomi się z powodu błędów związanych z uruchamianiem, ale nie rozwiąże problemów ani awarii związanych z zainstalowanymi modami."
},
"instance.settings.tabs.installation.repair.confirm.title": {
"message": "Naprawić instancję?"
@@ -429,7 +420,7 @@
"message": "Zmienne środowiskowe"
},
"instance.settings.tabs.java.hooks": {
"message": "Hooki"
"message": "Haczyki"
},
"instance.settings.tabs.java.java-arguments": {
"message": "Argumenty Javy"
@@ -525,7 +516,7 @@
"message": "Podane przez instancję"
},
"search.filter.locked.instance-game-version.title": {
"message": "Wersja gry jest dostarczona przez instancję"
"message": "Wersja gry jest dostarczana przez instancję"
},
"search.filter.locked.instance-loader.title": {
"message": "Loader jest dostarczony przez instancję"

View File

@@ -1,12 +1,6 @@
{
"app.auth-servers.unreachable.body": {
"message": "Os servidores de autenticação do Minecraft podem estar indisponíveis no momento. Verifique sua conexão com a internet e tente novamente mais tarde."
},
"app.auth-servers.unreachable.header": {
"message": "Não foi possível acessar os servidores de autenticação"
},
"app.settings.developer-mode-enabled": {
"message": "Modo de desenvolvedor ativado."
"message": "Modo desenvolvedor."
},
"app.settings.downloading": {
"message": "Baixando v{version}"
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Instalações do Java"
},
"app.settings.tabs.language": {
"message": "Idioma"
},
"app.settings.tabs.privacy": {
"message": "Privacidade"
},
@@ -78,7 +69,7 @@
"message": "Adicionar um amigo"
},
"friends.action.view-friend-requests": {
"message": "{count, plural, =0 {{count} solicitações de amizade} one {{count} solicitação de amizade} other {{count} solicitações de amizade}}"
"message": "{count, plural, =0 {Nenhuma solicitação de amizade} one {{count} solicitação de amizade} other {{count} solicitações de amizade}}"
},
"friends.add-friend.submit": {
"message": "Enviar amizade"

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Os servidores de autenticação do Minecraft poderão estar em baixo de momento. Verifica a tua ligação à internet e tenta novamente mais tarde."
},
"app.auth-servers.unreachable.header": {
"message": "Não foi possível aceder aos servidores de autenticação"
},
"app.settings.developer-mode-enabled": {
"message": "Modo de desenvolvedor ativado."
},
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Instalações Java"
},
"app.settings.tabs.language": {
"message": "Linguagem"
},
"app.settings.tabs.privacy": {
"message": "Privacidade"
},
@@ -252,7 +243,7 @@
"message": "Ganchos de inicio personalizados"
},
"instance.settings.tabs.hooks.description": {
"message": "Ganchos permitem a utilizadores avançados executarem certos comandos de sistema antes e após abrir o jogo."
"message": "Ganchos permitem a utilizadores avançados executarem certos comandos de sistema antes e depois de abrir o jogo."
},
"instance.settings.tabs.hooks.post-exit": {
"message": "Pós-saída"

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Serverele de autentificare Minecraft pot fi indisponibile în acest moment. Verificați conexiunea la internet și încercați din nou mai târziu."
},
"app.auth-servers.unreachable.header": {
"message": "Nu se pot accesa serverele de autentificare"
},
"app.settings.developer-mode-enabled": {
"message": "Modul dezvoltator activat."
},
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Instalări Java"
},
"app.settings.tabs.language": {
"message": "Limbă"
},
"app.settings.tabs.privacy": {
"message": "Confidențialitate"
},
@@ -74,63 +65,6 @@
"app.update.reload-to-update": {
"message": "Reîncarcă pentru a instala actualizarea"
},
"friends.action.add-friend": {
"message": "Adaugă un prieten"
},
"friends.add-friend.submit": {
"message": "Trimite cerere de prietenie"
},
"friends.add-friend.title": {
"message": "Adăugarea unui prieten"
},
"friends.add-friend.username.description": {
"message": "Poate fi diferit de numele lor de utilizator Minecraft!"
},
"friends.add-friend.username.placeholder": {
"message": "Introduceți numele de utilizator Modrinth..."
},
"friends.add-friend.username.title": {
"message": "Care este numele de utilizator Modrinth al prietenului tău?"
},
"friends.add-friends-to-share": {
"message": "<link>Adaugă prieteni</link> pentru a vedea ce joacă!"
},
"friends.friend.cancel-request": {
"message": "Anulează cererea"
},
"friends.friend.remove-friend": {
"message": "Eliminare prieten"
},
"friends.friend.request-sent": {
"message": "Cerere de prietenie trimisă"
},
"friends.friend.view-profile": {
"message": "Vizualizați profilul"
},
"friends.heading": {
"message": "Prieteni"
},
"friends.heading.active": {
"message": "Activ"
},
"friends.heading.offline": {
"message": "Inactiv"
},
"friends.heading.online": {
"message": "Online"
},
"friends.heading.pending": {
"message": "În așteptare"
},
"friends.no-friends-match": {
"message": "Nu există prieteni care să corespundă cu \"{query}”"
},
"friends.search-friends-placeholder": {
"message": "Caută prieteni..."
},
"friends.sign-in-to-add-friends": {
"message": "<link>Conectează-te la un cont Modrinth</link> pentru a adăuga prieteni și a vedea ce joacă!"
},
"instance.add-server.add-and-play": {
"message": "Adaugă și joacă"
},

View File

@@ -1,15 +1,9 @@
{
"app.auth-servers.unreachable.body": {
"message": "Серверы аутентификации Minecraft сейчас могут быть недоступны. Проверьте подключение к интернету и повторите попытку позже."
},
"app.auth-servers.unreachable.header": {
"message": "Нет связи с серверами аутентификации"
},
"app.settings.developer-mode-enabled": {
"message": "Режим разработчика включён."
},
"app.settings.downloading": {
"message": "Скачивание версии {version}"
"message": "Скачивание v{version}"
},
"app.settings.tabs.appearance": {
"message": "Внешний вид"
@@ -23,23 +17,20 @@
"app.settings.tabs.java-installations": {
"message": "Установки Java"
},
"app.settings.tabs.language": {
"message": "Язык"
},
"app.settings.tabs.privacy": {
"message": "Конфиденциальность"
},
"app.settings.tabs.resource-management": {
"message": "Управление ресурсами"
"message": "Управление данными"
},
"app.update-toast.body": {
"message": "Версия Modrinth App {version} готова к установке! Перезапустите приложение, чтобы обновить его, или оно обновится автоматически после закрытия."
"message": "Modrinth App v{version} готово к установке! Перезапустите приложение, чтобы обновить его, или оно обновится автоматически при закрытии."
},
"app.update-toast.body.download-complete": {
"message": "Скачивание версии Modrinth App {version} завершено. Перезапустите приложение, чтобы обновить его, или оно обновится автоматически после закрытия."
"message": "Скачивание Modrinth App v{version} завершено. Перезапустите приложение, чтобы обновить его, или оно обновится автоматически при закрытии."
},
"app.update-toast.body.metered": {
"message": "Версия Modrinth App {version} доступна для скачивания! Используется сеть с лимитным тарифным планом, поэтому скачивание не началось автоматически."
"message": "Modrinth App v{version} доступно для скачивания! Используется лимитное подключение, поэтому скачивание не началось автоматически."
},
"app.update-toast.changelog": {
"message": "Список изменений"
@@ -75,34 +66,34 @@
"message": "Перезапустить и обновить"
},
"friends.action.add-friend": {
"message": "Добавить в друзья"
"message": "Добавить в друзья"
},
"friends.action.view-friend-requests": {
"message": "{count} {count, plural, one {запрос} few {запроса} many {запросов} other {запроса}} дружбы"
"message": "{count} {count, plural, one {запрос} few {запроса} many {запросов} other {запроса}} дружбы"
},
"friends.add-friend.submit": {
"message": "Отправить запрос дружбы"
},
"friends.add-friend.title": {
"message": "Добавление в друзья"
"message": "Добавление в друзья"
},
"friends.add-friend.username.description": {
"message": "Оно может быть не таким, как в Minecraft!"
"message": "Оно может быть не таким, как в Minecraft!"
},
"friends.add-friend.username.placeholder": {
"message": "Введите имя на Modrinth..."
},
"friends.add-friend.username.title": {
"message": "Какое имя у друга на Modrinth?"
"message": "Какое имя у друга на Modrinth?"
},
"friends.add-friends-to-share": {
"message": "<link>Добавьте друзей</link>, чтобы видеть их статус игры!"
"message": "<link>Добавьте друзей</link>, чтобы знать, во что они играют!"
},
"friends.friend.cancel-request": {
"message": "Отменить запрос"
},
"friends.friend.remove-friend": {
"message": "Удалить из друзей"
"message": "Удалить из друзей"
},
"friends.friend.request-sent": {
"message": "Отправлен запрос дружбы"
@@ -123,13 +114,13 @@
"message": "В сети"
},
"friends.heading.pending": {
"message": "В ожидании"
"message": "В ожидании"
},
"friends.no-friends-match": {
"message": "Нет друзей по запросу «{query}»"
"message": "Нет друзей по запросу «{query}»"
},
"friends.search-friends-placeholder": {
"message": "Поиск по друзьям..."
"message": "Поиск по друзьям..."
},
"friends.section.heading": {
"message": "{title} — {count}"
@@ -138,7 +129,7 @@
"message": "<link>Войдите в Modrinth</link>, чтобы добавлять друзей и знать, во что они играют!"
},
"instance.add-server.add-and-play": {
"message": "Добавить и играть"
"message": "Добавить и играть"
},
"instance.add-server.add-server": {
"message": "Добавить сервер"
@@ -171,10 +162,10 @@
"message": "Сбросить иконку"
},
"instance.edit-world.title": {
"message": "Настройка мира"
"message": "Изменение мира"
},
"instance.filter.disabled": {
"message": "Отключённые проекты"
"message": "Отключённые"
},
"instance.filter.updates-available": {
"message": "Доступны обновления"
@@ -189,7 +180,7 @@
"message": "Сервер Minecraft"
},
"instance.server-modal.resource-pack": {
"message": "Набор ресурсов"
"message": "Наборы ресурсов"
},
"instance.settings.tabs.general": {
"message": "Основные"
@@ -201,7 +192,7 @@
"message": "Удалить сборку"
},
"instance.settings.tabs.general.delete.description": {
"message": "Навсегда удаляет сборку с вашего устройства, включая миры, настройки и весь установленный контент. Учтите, что после удаления сборки восстановить её будет невозможно."
"message": "Навсегда удаляет сборку с устройства, включая миры, настройки и весь установленный контент. Учтите, что после удаления сборки восстановить её невозможно."
},
"instance.settings.tabs.general.deleting.button": {
"message": "Удаление..."
@@ -210,34 +201,34 @@
"message": "Создать копию"
},
"instance.settings.tabs.general.duplicate-button.tooltip.installing": {
"message": "Создание копии невозможно во время установки."
"message": "Копирование невозможно в процессе установки."
},
"instance.settings.tabs.general.duplicate-instance": {
"message": "Создание копии сборки"
},
"instance.settings.tabs.general.duplicate-instance.description": {
"message": "Создаёт копию сборки, включая миры, настройки, моды и т.д."
"message": "Создаёт копию сборки, включая миры, настройки, моды и т. д."
},
"instance.settings.tabs.general.edit-icon": {
"message": "Изменить иконку"
"message": "Изменить значок"
},
"instance.settings.tabs.general.edit-icon.remove": {
"message": "Удалить иконку"
"message": "Удалить значок"
},
"instance.settings.tabs.general.edit-icon.replace": {
"message": "Заменить иконку"
"message": "Заменить значок"
},
"instance.settings.tabs.general.edit-icon.select": {
"message": "Выбрать иконку"
"message": "Выбрать значок"
},
"instance.settings.tabs.general.library-groups": {
"message": "Группировка"
},
"instance.settings.tabs.general.library-groups.create": {
"message": "Создать новую группу"
"message": "Создать группу"
},
"instance.settings.tabs.general.library-groups.description": {
"message": "Разделение по группам позволяет организовать сборки по разным разделам в библиотеке."
"message": "Разделение по группам позволяет организовать сборки по разным разделам в библиотеке."
},
"instance.settings.tabs.general.library-groups.enter-name": {
"message": "Введите название группы"
@@ -267,7 +258,7 @@
"message": "Перед запуском"
},
"instance.settings.tabs.hooks.pre-launch.description": {
"message": "Выполняется перед запуском сборки."
"message": "Выполняется перед запуском игры."
},
"instance.settings.tabs.hooks.pre-launch.enter": {
"message": "Введите команду перед запуском..."
@@ -279,16 +270,16 @@
"message": "Обёртка"
},
"instance.settings.tabs.hooks.wrapper.description": {
"message": "Команда-обёртка для запуска Minecraft."
"message": "Команда-обёртка для запуска Minecraft."
},
"instance.settings.tabs.hooks.wrapper.enter": {
"message": "Введите команду-обёртку..."
"message": "Команда обёртки..."
},
"instance.settings.tabs.installation": {
"message": "Установка"
},
"instance.settings.tabs.installation.change-version.already-installed.modded": {
"message": "{platform} {version} для Minecraft {game_version} уже установлен"
"message": "{platform} {version} для Minecraft {game_version} уже установлен"
},
"instance.settings.tabs.installation.change-version.already-installed.vanilla": {
"message": "Ванильный Minecraft {game_version} уже установлен"
@@ -315,7 +306,7 @@
"message": "Отладочная информация:"
},
"instance.settings.tabs.installation.fetching-modpack-details": {
"message": "Получение сведений о сборке"
"message": "Получение данных о сборке"
},
"instance.settings.tabs.installation.game-version": {
"message": "Версия игры"
@@ -333,13 +324,13 @@
"message": "Minecraft {version}"
},
"instance.settings.tabs.installation.no-connection": {
"message": "Не удалось получить сведения о сборке. Проверьте подключение к интернету."
"message": "Не удалось получить данные о сборке. Проверьте соединение с интернетом."
},
"instance.settings.tabs.installation.no-loader-versions": {
"message": "{loader} недоступен для Minecraft {version}. Выберите другой загрузчик."
"message": "{loader} недоступен для Minecraft {version}. Выберите другой загрузчик."
},
"instance.settings.tabs.installation.no-modpack-found": {
"message": "Не удалось найти сборку на Modrinth, с которой связано установленное содержимое."
"message": "Не удалось найти сборку на Modrinth, с которой связано установленное содержимое."
},
"instance.settings.tabs.installation.platform": {
"message": "Платформа"
@@ -351,7 +342,7 @@
"message": "Переустановка сборки"
},
"instance.settings.tabs.installation.reinstall.confirm.description": {
"message": "Установленное содержимое будет сброшено к исходному состоянию сборки, а внесённые в её состав изменения будут удалены. Это может исправить возникшие после изменений проблемы с игрой, но зависящие от добавленного содержимого миры могут перестать корректно работать."
"message": "При переустановке всё установленное содержимое будет сброшено к исходному состоянию сборки, а внесённые в её состав изменения удалены. Это может исправить проблемы с игрой, вызванные изменениями, однако есть риск повреждения миров, зависящих от них."
},
"instance.settings.tabs.installation.reinstall.confirm.title": {
"message": "Вы действительно хотите переустановить сборку?"
@@ -369,10 +360,10 @@
"message": "Исправление"
},
"instance.settings.tabs.installation.repair.confirm.description": {
"message": "Будут переустановлены зависимости Minecraft, а также определены и восстановлены повреждённые файлы. Это может помочь с проблемами запуска игры на стороне лаунчера, но не исправит проблемы и вылеты из-за ошибок в имеющихся модах."
"message": "Будут переустановлены зависимости Minecraft, а также определены и восстановлены повреждённые файлы. Это может помочь с проблемами запуска игры на стороне лаунчера, но не исправит проблемы и вылеты из-за ошибок в имеющихся модах."
},
"instance.settings.tabs.installation.repair.confirm.title": {
"message": "Исправить сборку?"
"message": "Восстановить сборку?"
},
"instance.settings.tabs.installation.repair.in-progress": {
"message": "Выполняется исправление"
@@ -381,10 +372,10 @@
"message": "Сбросить выбор"
},
"instance.settings.tabs.installation.show-all-versions": {
"message": "Показывать все версии"
"message": "Показать все версии"
},
"instance.settings.tabs.installation.tooltip.action.change-version": {
"message": "сменить версию"
"message": "изменить версию"
},
"instance.settings.tabs.installation.tooltip.action.install": {
"message": "установить"
@@ -393,16 +384,16 @@
"message": "переустановить"
},
"instance.settings.tabs.installation.tooltip.action.repair": {
"message": "исправить"
"message": "восстановить"
},
"instance.settings.tabs.installation.tooltip.cannot-while-installing": {
"message": "Невозможно {action} во время установки"
"message": "Невозможно {action} во время установки"
},
"instance.settings.tabs.installation.tooltip.cannot-while-offline": {
"message": "Невозможно {action} без подключения к сети"
"message": "Невозможно {action} без подключения к сети"
},
"instance.settings.tabs.installation.tooltip.cannot-while-repairing": {
"message": "Невозможно {action} во время исправления"
"message": "Невозможно {action} во время восстановления"
},
"instance.settings.tabs.installation.unknown-version": {
"message": "(неизвестная версия)"
@@ -414,13 +405,13 @@
"message": "Если продолжить, восстановить связь будет невозможно без создания новой сборки. Сборка утратит возможность получать обновления и станет локальной."
},
"instance.settings.tabs.installation.unlink.confirm.title": {
"message": "Вы действительно хотите отвязать сборку?"
"message": "Вы уверены, что хотите отвязать сборку?"
},
"instance.settings.tabs.installation.unlink.description": {
"message": "Установленное содержимое связано со сборкой на Modrinth, что блокирует возможность менять версии игры, модов или загрузчик. Нажатие на кнопку ниже необратимо разрушит эту связь."
},
"instance.settings.tabs.installation.unlink.title": {
"message": "Отвязка из мод-пака"
"message": "Отвязка сборки"
},
"instance.settings.tabs.java": {
"message": "Java и память"
@@ -438,7 +429,7 @@
"message": "Расположение Java"
},
"instance.settings.tabs.java.java-memory": {
"message": "Выделенная память"
"message": "Выделение памяти"
},
"instance.settings.tabs.window": {
"message": "Окно"
@@ -450,13 +441,13 @@
"message": "Полноэкранный режим"
},
"instance.settings.tabs.window.fullscreen.description": {
"message": "Запускать игру в полноэкранном режиме (через options.txt)."
"message": "Запускать игру в полноэкранном режиме (используя options.txt)."
},
"instance.settings.tabs.window.height": {
"message": "Высота"
},
"instance.settings.tabs.window.height.description": {
"message": "Высота окна игры при запуске."
"message": "Высота окна игры при запуске."
},
"instance.settings.tabs.window.height.enter": {
"message": "Введите высоту..."
@@ -465,7 +456,7 @@
"message": "Ширина"
},
"instance.settings.tabs.window.width.description": {
"message": "Ширина окна игры при запуске."
"message": "Ширина окна игры при запуске."
},
"instance.settings.tabs.window.width.enter": {
"message": "Введите ширину..."
@@ -477,7 +468,7 @@
"message": "Сервер Minecraft"
},
"instance.worlds.cant_connect": {
"message": "Невозможно подключиться к серверу"
"message": "Невозможно подключиться к серверу"
},
"instance.worlds.copy_address": {
"message": "Копировать адрес"
@@ -486,7 +477,7 @@
"message": "Не показывать на главной"
},
"instance.worlds.filter.available": {
"message": "Доступно"
"message": "Доступны"
},
"instance.worlds.game_already_open": {
"message": "Сборка уже запущена"
@@ -501,10 +492,10 @@
"message": "Не удалось связаться с сервером"
},
"instance.worlds.no_server_quick_play": {
"message": "Подключаться к серверам напрямую можно только в Minecraft Alpha 1.0.5 и выше"
"message": "Подключиться напрямую можно только к серверам Minecraft Alpha 1.0.5 и выше"
},
"instance.worlds.no_singleplayer_quick_play": {
"message": "Открывать миры напрямую можно только в Minecraft 1.20 и выше"
"message": "Открывать миры напрямую можно только в Minecraft 1.20 и выше"
},
"instance.worlds.play_instance": {
"message": "Запустить сборку"

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Minecrafts autentiseringsservrar kan vara nere just nu. Kontrollera din internetanslutning och försök igen senare."
},
"app.auth-servers.unreachable.header": {
"message": "Kan ej nå autentiseringsservrarna"
},
"app.settings.developer-mode-enabled": {
"message": "Utvecklarläge aktiverat."
},
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Java installationer"
},
"app.settings.tabs.language": {
"message": "Språk"
},
"app.settings.tabs.privacy": {
"message": "Integritet"
},
@@ -273,7 +264,7 @@
"message": "Ange kommando före start..."
},
"instance.settings.tabs.hooks.title": {
"message": "Hooks för spelstart"
"message": "Startkrokar för spelet"
},
"instance.settings.tabs.hooks.wrapper": {
"message": "Omslag"

View File

@@ -17,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "การจัดการ Java ที่ติดตั้ง"
},
"app.settings.tabs.language": {
"message": "ภาษา"
},
"app.settings.tabs.privacy": {
"message": "ความเป็นส่วนตัว"
},
@@ -68,48 +65,9 @@
"app.update.reload-to-update": {
"message": "รีโหลดเพื่อติดตั้งอัพเดต"
},
"friends.action.add-friend": {
"message": "เพิ่มเพื่อน"
},
"friends.add-friend.submit": {
"message": "ส่งคำขอเป็นเพื่อน"
},
"friends.add-friend.username.description": {
"message": "อาจจะแตกต่างกับชื่อใน Minecraft"
},
"friends.add-friend.username.placeholder": {
"message": "ใส่ชื่อบน Modrinth"
},
"friends.add-friend.username.title": {
"message": "เพื่อนของคุณมีชื่อบน Modrinth ว่าอะไร"
},
"friends.friend.cancel-request": {
"message": "ยกเลิกคำขอ"
},
"friends.friend.remove-friend": {
"message": "ลบเพื่อน"
},
"friends.friend.request-sent": {
"message": "ส่งคำขอเป็นเพื่อนแล้ว"
},
"friends.friend.view-profile": {
"message": "ดูโปรไฟล์"
},
"friends.heading": {
"message": "เพื่อน"
},
"friends.heading.offline": {
"message": "ออฟไลน์"
},
"friends.no-friends-match": {
"message": "ไม่มีเพื่อนชื่อว่า \"{query}\""
},
"friends.search-friends-placeholder": {
"message": "ค้นหาเพื่อน"
},
"friends.section.heading": {
"message": "{title} - {count}"
},
"instance.add-server.add-and-play": {
"message": "เพิ่มและเล่นทันที"
},

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Maaaring hindi maaabot ang mga Minecraft na pansilbi sa pagpapatunay sa ngayon. Tingnan mo ang hugpong mo sa internet at muling subukan mamaya."
},
"app.auth-servers.unreachable.header": {
"message": "Hindi maabot ang mga pansilbi sa pagpapatunay"
},
"app.settings.developer-mode-enabled": {
"message": "Nakabukas ang paraan ng tagapagsulong."
},
@@ -30,10 +24,10 @@
"message": "Pamamahala ng mapagkukunan"
},
"app.update-toast.body": {
"message": "Handa nang maikabit ang Modrinth App v{version}. Muling dalhin upang maisapanahon, o pagkusaan sa pagpinid ng Modrinth App."
"message": "Handa nang maikabit ang Modrinth App v{version}. Muling dalhin upang maisapanahon, o pagkusaan pagpinid ng Modrinth App."
},
"app.update-toast.body.download-complete": {
"message": "Tapos nang maidalamba ang Modrinth App v{version}. Muling dalhin upang maisapanahon, o pagkusaan sa pagpinid ng Modrinth App."
"message": "Tapos nang maidalamba ang Modrinth App v{version}. Muling dalhin upang maisapanahon, o pagkusaan pagpinid ng Modrinth App."
},
"app.update-toast.body.metered": {
"message": "Magagamit na ngayon ang Modrinth App v{version}! Hindi namin dinalamba kaagad dahil bilang ang inyong kabalagan."
@@ -132,7 +126,7 @@
"message": "{title} - {count}"
},
"friends.sign-in-to-add-friends": {
"message": "<link>Mag-sign-in sa Modrinth na panagutan</link> upang maidagdag ang mga kaibigan at malaman ang kanilang nilalaro!"
"message": "<link>Mag-sign-in sa Modrinth account</link> upang maidagdag ang mga kaibigan at malaman ang kanilang nilalaro!"
},
"instance.add-server.add-and-play": {
"message": "Idagdag at laruin"
@@ -177,7 +171,7 @@
"message": "May mga bagong pagbabago"
},
"instance.server-modal.address": {
"message": "Padalahan"
"message": "Tinitirhan"
},
"instance.server-modal.name": {
"message": "Pangalan"
@@ -300,7 +294,7 @@
"message": "Kinakabit"
},
"instance.settings.tabs.installation.change-version.cannot-while-fetching": {
"message": "Naghahanap ng mga bersiyon ng balot ng pambago"
"message": "Naghahanap ng mga bersiyon ng mga balot ng pambago"
},
"instance.settings.tabs.installation.change-version.in-progress": {
"message": "Kinakabit ang bagong bersiyon"
@@ -311,9 +305,6 @@
"instance.settings.tabs.installation.debug-information": {
"message": "Kaalaman sa pagdalisay:"
},
"instance.settings.tabs.installation.fetching-modpack-details": {
"message": "Naghahanap ng mga kuntil-butil ng balot ng pambago"
},
"instance.settings.tabs.installation.game-version": {
"message": "Bersiyon ng laro"
},
@@ -329,14 +320,8 @@
"instance.settings.tabs.installation.minecraft-version": {
"message": "Minecraft {version}"
},
"instance.settings.tabs.installation.no-connection": {
"message": "Hindi makapaghanap ng mga kuntil-butil ng nakakawing na balot ng pambago. Mangyaring pakitingnan ang hugpong sa internet mo."
},
"instance.settings.tabs.installation.no-loader-versions": {
"message": "Hindi magagamit ang {loader} sa Minecraft {version}. Sumubok ng ibang pandala ng pambago."
},
"instance.settings.tabs.installation.no-modpack-found": {
"message": "Nakakawing itong tularan sa isang balot ng pambago, ngunit hindi makikita ang balot ng pambago na ito sa Modrinth."
"message": "Hindi magagamit ang {loader} sa Minecraft {version}. Sumubok ng ibang tagapagtala ng pambago."
},
"instance.settings.tabs.installation.platform": {
"message": "Batyawan"
@@ -348,13 +333,10 @@
"message": "Kinakabit muli ang balot ng pambago"
},
"instance.settings.tabs.installation.reinstall.confirm.description": {
"message": "Maaaring mababalik sa dati ang lahat ng kinabit at binago na nilalaman sa kung anong hinahandog ng balot ng pambago, tatanggalin ang mga pambago at nilalamang idinagdag mo sa nangunang balot ng pambago. Maaari nitong masiayos ang mga hindi inaasahang pag-uugali kung may pagbabagong naganap sa tularan, ngunit kung nakabatay na ang iyong daigdig sa karagdagang nilalaman, maaari nitong masira ang mga umiiral na daigdig."
},
"instance.settings.tabs.installation.reinstall.confirm.title": {
"message": "Tiyak bang nais mong ikabit muli ang tularang ito?"
"message": "Maaaring mababalik sa dati ang lahat ng kinabit o binago na nilalaman sa kung anong ibibigay ng balot ng pambago, tatanggalin ang mga pambago o nilalamang idinagdag mo lalo na ang nangunang balot ng pambago. Maaari nitong masiayos ang mga hindi inaasahang pag-uugali kung may pagbabagong naganap sa tularan, ngunit kung nakabatay na ang iyong daigdig sa karagdagang nilalaman, maaari nitong masira ang mga umiiral na daigdig."
},
"instance.settings.tabs.installation.reinstall.description": {
"message": "Mababalik ang mga nilalaman ng tularan sa pangunahing kalagayan, tatanggalin ang mga pambago at nilalamang idinagdag mo sa nangunang balot ng pambago."
"message": "Ibalik ang mga nilalaman ng tularan sa pangunahing kalagayan, tatanggalin ang mga pambago o nilalamang idinagdag mo lalo na ang nangunang balot ng pambago."
},
"instance.settings.tabs.installation.reinstall.title": {
"message": "Ikabit muli ang balot ng pambago"
@@ -366,7 +348,7 @@
"message": "Kinukumpuni"
},
"instance.settings.tabs.installation.repair.confirm.description": {
"message": "Sa pagkukumpuni, magkakabit muli ng mga sandalan ng Minecraft at maghahanap ng mga katiwalian. Maaaring malutas nito ang mga isyu kung hindi malulunsad ang laro dahil sa mga kamalian sa tagapaglunsad, ngunit hindi nito malulutas ang mga isyu at pagbagsak na dulot ng mga pambagong nakakabit."
"message": "Sa pag-aayos, magkakabit muli ng mga sandalan ng Minecraft at maghahanap ng mga katiwalian. Maaaring malutas nito ang mga isyu kung hindi malulunsad ang laro dahil sa mga kamalian sa tagapaglunsad, ngunit hindi nito malulutas ang mga isyu o pagbagsak na dulot nga mga pambagong nakakabit."
},
"instance.settings.tabs.installation.repair.confirm.title": {
"message": "Kumpunihin ang tularan?"
@@ -410,11 +392,8 @@
"instance.settings.tabs.installation.unlink.confirm.description": {
"message": "Kung ipapatuloy mo, hindi mo na itong maaaring maikawing muli ng hindi lilikha ng panibagong tularan. Hindi ka makatatanggap ng mga pagsasapanahon ng pambalot ng pambago at magiging pangkaraniwan na itong."
},
"instance.settings.tabs.installation.unlink.confirm.title": {
"message": "Tiyak bang nais mong tanggalin ang tularang ito?"
},
"instance.settings.tabs.installation.unlink.description": {
"message": "Nakakawing ang tularang ito sa isang balot ng pambago, ibig sabihin hindi maisapanahon ang mga pambago at hindi mo mapapalitan ang pandala ng pambago at ang bersiyon ng Minecraft. Mananatiling patid ang tularang ito sa balot ng pambago kung hihiwalayin."
"message": "Nakakawing ang tularang ito sa isang pambalot ng pambago, ibig sabihin hindi maisapanahon ang mga pambago at hindi mo mapapalitan ang tagapagdala ng pambago o ang bersiyon ng Minecraft."
},
"instance.settings.tabs.installation.unlink.title": {
"message": "Paghiwalayin sa balot ng pambago"
@@ -422,9 +401,6 @@
"instance.settings.tabs.java": {
"message": "Java at memorya"
},
"instance.settings.tabs.java.environment-variables": {
"message": "Mga kapaligirang aligin"
},
"instance.settings.tabs.java.hooks": {
"message": "Mga kawit"
},
@@ -446,24 +422,15 @@
"instance.settings.tabs.window.fullscreen": {
"message": "Buong-tabing"
},
"instance.settings.tabs.window.fullscreen.description": {
"message": "Gagawing magsisimulang nakabuong-tabing ang laro paglunsad (gamit ang options.txt)."
},
"instance.settings.tabs.window.height": {
"message": "Tayog"
},
"instance.settings.tabs.window.height.description": {
"message": "Ang tayog ng durungawan ng laro kung nalunsad."
},
"instance.settings.tabs.window.height.enter": {
"message": "Ilagay ang tayog..."
"message": "Ilagay ang taas..."
},
"instance.settings.tabs.window.width": {
"message": "Lapad"
},
"instance.settings.tabs.window.width.description": {
"message": "Ang lapad ng durungawan ng laro kung nalunsad."
},
"instance.settings.tabs.window.width.enter": {
"message": "Ilagay ang lapad..."
},
@@ -473,11 +440,8 @@
"instance.worlds.a_minecraft_server": {
"message": "Isang Minecraft na Pansilbi"
},
"instance.worlds.cant_connect": {
"message": "Hindi makahugpong sa pansilbi"
},
"instance.worlds.copy_address": {
"message": "Sipiin ang padalahan"
"message": "Sipiin ang tinitirhan"
},
"instance.worlds.dont_show_on_home": {
"message": "Huwag ipakita sa Tirahan"
@@ -485,24 +449,9 @@
"instance.worlds.filter.available": {
"message": "Magagamit"
},
"instance.worlds.game_already_open": {
"message": "Bukas namang ang "
},
"instance.worlds.hardcore": {
"message": "Paraang pangdalubhasan"
},
"instance.worlds.incompatible_server": {
"message": "Hindi magkatugma sa pansilbi"
},
"instance.worlds.no_contact": {
"message": "Hindi makapag-ugnay sa pansilbi"
},
"instance.worlds.no_server_quick_play": {
"message": "Tuwiran kang makakalukso lamang sa mga server na nasa Minecraft Alpha 1.0.5+"
},
"instance.worlds.no_singleplayer_quick_play": {
"message": "Tuwiran kang makakalukso lamang sa mga pang-isahang larong daigdig na nasa Minecraft 1.20+"
},
"instance.worlds.play_instance": {
"message": "Laruin ang tularan"
},
@@ -518,15 +467,6 @@
"instance.worlds.world_in_use": {
"message": "Ginagamit ang daigdig"
},
"search.filter.locked.instance": {
"message": "Sagot na ng tularan"
},
"search.filter.locked.instance-game-version.title": {
"message": "Sagot na ng tularan ang bersiyon ng laro"
},
"search.filter.locked.instance-loader.title": {
"message": "Sagot na ng tularan ang pandala ng laro"
},
"search.filter.locked.instance.sync": {
"message": "Makipagsabayan sa tularan"
}

View File

@@ -1,10 +1,4 @@
{
"app.auth-servers.unreachable.body": {
"message": "Minecraft doğrulama sunucuları çökmüş olabilir. İnternet bağlantını kontrol et ve daha sonra tekrar dene."
},
"app.auth-servers.unreachable.header": {
"message": "Doğrulama sunucularına erişilemedi"
},
"app.settings.developer-mode-enabled": {
"message": "Geliştirici modu açıldı."
},
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Java kurulumları"
},
"app.settings.tabs.language": {
"message": "Dil"
},
"app.settings.tabs.privacy": {
"message": "Gizlilik"
},
@@ -33,10 +24,10 @@
"message": "Kaynak yönetimi"
},
"app.update-toast.body": {
"message": "Modrinth App v{version} kuruluma hazır! Şimdi güncellemek için uygulamayı yeniden yükle ya da sen Modrinth App'i kapatınca otomatik olarak güncellensin."
"message": "Modrinth App v{version} yüklemeye hazır! Şimdi güncellemek için uygulamayı yeniden başlat ya da sen Modrinth App'ı kapatınca otomatik olarak güncellensin."
},
"app.update-toast.body.download-complete": {
"message": "Modrinth App v{version} indirildi. Şimdi güncellemek için uygulamayı yeniden yükle ya da Modrinth App'i kapatınca otomatik olarak güncellensin."
"message": "Modrinth App v{version} indirmeyi bitirdi. Şimdi güncellemek için uygulamayı yeniden başlat ya da sen Modrinth App'ı kapatınca otomatik olarak güncellensin."
},
"app.update-toast.body.metered": {
"message": "Modrinth App v{version} artık mevcut! Ölçülü ağda olduğunuzdan otomatik olarak indirmedik."
@@ -60,25 +51,25 @@
"message": "Yükleme tamamlandı"
},
"app.update.complete-toast.text": {
"message": "Değişiklik günlüğünü görüntülemek için buraya tıklayın."
"message": "Değişiklikleri görüntülemek için buraya tıklayın."
},
"app.update.complete-toast.title": {
"message": "{version} sürümü başarıyla kuruldu!"
"message": "Sürüm {version} başarıyla indirildi!"
},
"app.update.download-update": {
"message": "Güncellemeyi indir"
},
"app.update.downloading-update": {
"message": "Güncelleme indiriliyor (%{percent})"
"message": "Güncelleme indiriliyor({percent}%)"
},
"app.update.reload-to-update": {
"message": "Güncellemeyi kurmak için yeniden yükleyin"
"message": "Güncellemeyi yüklemek için yeniden yükleyin"
},
"friends.action.add-friend": {
"message": "Bir arkadaş ekle"
},
"friends.action.view-friend-requests": {
"message": "{count} arkadaşlık isteği"
"message": "{count} Arkadaşlık {count, plural,one {isteği} other {istekleri}}"
},
"friends.add-friend.submit": {
"message": "Arkadaşlık isteği gönder"
@@ -96,7 +87,7 @@
"message": "Arkadaşının Modrinth kullanıcı adı nedir?"
},
"friends.add-friends-to-share": {
"message": "<link>Arkadaş ekleyerek</link> ne oynadıklarını gör!"
"message": "Arkadaşlarının ne oynadığını görmek için <link>onları ekle</link>!"
},
"friends.friend.cancel-request": {
"message": "İsteği iptal et"
@@ -117,10 +108,10 @@
"message": "Aktif"
},
"friends.heading.offline": {
"message": "Çevrim dışı"
"message": "Çevrimdışı"
},
"friends.heading.online": {
"message": "Çevrim içi"
"message": "Çevrimiçi"
},
"friends.heading.pending": {
"message": "Bekleniyor"
@@ -144,10 +135,10 @@
"message": "Sunucu ekle"
},
"instance.add-server.resource-pack.disabled": {
"message": "Devre dışı"
"message": "Kapalı"
},
"instance.add-server.resource-pack.enabled": {
"message": "Etkin"
"message": "ık"
},
"instance.add-server.resource-pack.prompt": {
"message": "Sor"
@@ -159,7 +150,7 @@
"message": "Sunucuyu düzenle"
},
"instance.edit-world.hide-from-home": {
"message": "Ana sayfada gizle"
"message": "Ana Sayfadan gizle"
},
"instance.edit-world.name": {
"message": "Dünya Adı"
@@ -303,7 +294,7 @@
"message": "Kuruluyor"
},
"instance.settings.tabs.installation.change-version.cannot-while-fetching": {
"message": "Mod paketi sürümleri çekiliyor"
"message": "Mod paket sürümleri çekiliyor"
},
"instance.settings.tabs.installation.change-version.in-progress": {
"message": "Yeni sürüm kuruluyor"
@@ -315,7 +306,7 @@
"message": "Ayıklama bilgisi:"
},
"instance.settings.tabs.installation.fetching-modpack-details": {
"message": "Mod paketi detayları çekiliyor"
"message": "Mod paketi detayları alınıyor"
},
"instance.settings.tabs.installation.game-version": {
"message": "Oyun sürümü"
@@ -333,7 +324,7 @@
"message": "Minecraft {version}"
},
"instance.settings.tabs.installation.no-connection": {
"message": "Bağlı mod paketi detayları çekilemiyor. Lütfen internet bağlantınızı kontrol edin."
"message": "Bağlı modpaketi detayları alınamıyor. Lütfen internet bağlantınızı kontrol edin."
},
"instance.settings.tabs.installation.no-loader-versions": {
"message": "{loader}, Minecraft {version} için mevcut değil. Başka bir mod yükleyici deneyin."
@@ -345,22 +336,22 @@
"message": "Platform"
},
"instance.settings.tabs.installation.reinstall.button": {
"message": "Mod paketini yeniden kur"
"message": "Mod paketini tekrar indir"
},
"instance.settings.tabs.installation.reinstall.button.reinstalling": {
"message": "Mod paketi yeniden kuruluyor"
"message": "Mod paketi tekrar kuruluyor"
},
"instance.settings.tabs.installation.reinstall.confirm.description": {
"message": "Yeniden kurmak mod paketindeki indirilmiş veya değiştirilmiş her şeyi mod paketinin sağladıklarına sıfırlar, senin mod paketinin üstüne eklediğin modları ve içerikleri siler. Bu değişiklik kaynaklı beklenmedik durumları düzeltebilir, ama dünyaların ek kurulmuş içeriğe bağımlıysa o dünyaları bozabilir."
"message": "Tekrar indirmek modpack'teki indirilmiş veya değişmiş her şeyi sıfırlar ve senin modpack'in üstüne eklediğin herhangi bir modu veya içeriği siler. Eğer kurulumu değiştirdi isen bu bazı şeyleri düzeltebilir, fakat ekstra indirdiğin modları kullanan dünyalar varsa bozulabilirler."
},
"instance.settings.tabs.installation.reinstall.confirm.title": {
"message": "Bu kurulumu tekrar kurmak istediğine emin misin?"
"message": "Bu kurulumu tekrar indirmek istediğine emin misin?"
},
"instance.settings.tabs.installation.reinstall.description": {
"message": "Kurulumun içeriğini ilk hâline geri döndürür, orijinal mod paketinin üstüne eklediğin modları ve içerikleri siler."
"message": "Orijinal modpack'in üstüne eklediğin herşeyi silip kurulumun içeriğini eski haline döndürür."
},
"instance.settings.tabs.installation.reinstall.title": {
"message": "Mod paketini yeniden kur"
"message": "Modpack'i Tekrar İndir"
},
"instance.settings.tabs.installation.repair.button": {
"message": "Tamir Et"
@@ -390,7 +381,7 @@
"message": "indirilemez"
},
"instance.settings.tabs.installation.tooltip.action.reinstall": {
"message": "yeniden kur"
"message": "tekrar indirilemez"
},
"instance.settings.tabs.installation.tooltip.action.repair": {
"message": "tamir edilemez"
@@ -408,19 +399,19 @@
"message": "(bilinmeyen sürüm)"
},
"instance.settings.tabs.installation.unlink.button": {
"message": "Kurulum bağlantısını kes"
"message": "Kurulum bağını koparr"
},
"instance.settings.tabs.installation.unlink.confirm.description": {
"message": "Devam edersen bu kurulumu geri bağlayamazsın. Mod paketi güncellemeleri almazsın ve bu kurulum normal kuruluma dönüşür."
"message": "Eğer devam edersen, yeni bir kurulum oluşturmadan geri bağlayamayacaksın. Modpack güncellemeleri almayacaksın ve bu kurulum normal kuruluma dönüşecek."
},
"instance.settings.tabs.installation.unlink.confirm.title": {
"message": "Bu kurulumun bağını koparmak istediğine eminmisin?"
},
"instance.settings.tabs.installation.unlink.description": {
"message": "Bu kurulum bir mod paketine bağlı, bu nedenle modlar güncellenemez ve mod yükleyicisini veya Minecraft sürümünü değiştiremezsin. Kurulumdan mod paketini koparmak kalıcıdır."
"message": "Bu kurulum bir modpack'e bağlı, bu nedenle modlar güncellenemez ve mod yükleyicisini veya Minecraft sürümünü değiştiremezsin."
},
"instance.settings.tabs.installation.unlink.title": {
"message": "Mod paketi bağını kopar"
"message": "Modpack bağını kopar"
},
"instance.settings.tabs.java": {
"message": "Java ve bellek"
@@ -474,7 +465,7 @@
"message": "Ayarlar"
},
"instance.worlds.a_minecraft_server": {
"message": "Minecraft Sunucusu"
"message": "Bir Minecraft Sunucusu"
},
"instance.worlds.cant_connect": {
"message": "Sunucuya bağlanılamıyor"
@@ -483,7 +474,7 @@
"message": "Adresi kopyala"
},
"instance.worlds.dont_show_on_home": {
"message": "Ana sayfada gösterme"
"message": "Ana Sayfada gösterme"
},
"instance.worlds.filter.available": {
"message": "Kullanılabilir"
@@ -531,6 +522,6 @@
"message": "Yükleyici veren kurulumlar"
},
"search.filter.locked.instance.sync": {
"message": "Kurulumla senkronize et"
"message": "Kurulum ile senkronize et"
}
}

View File

@@ -1,21 +1,15 @@
{
"app.auth-servers.unreachable.body": {
"message": "Сервери автентифікації Minecraft можуть зараз не працювати. Перевірте з’єднання з Інтернетом та спробуйте пізніше."
},
"app.auth-servers.unreachable.header": {
"message": "Не вдається зв’язатися зі серверами автентифікації"
},
"app.settings.developer-mode-enabled": {
"message": "Увімкнено режим розробника."
},
"app.settings.downloading": {
"message": "Завантаження версії {version}"
"message": "Завантаження v{version}"
},
"app.settings.tabs.appearance": {
"message": "Вигляд"
},
"app.settings.tabs.default-instance-options": {
"message": "Усталені налашт. профілю"
"message": "Налаштування усталеного профілю"
},
"app.settings.tabs.feature-flags": {
"message": "Спеціальні функції"
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Інсталяції Java"
},
"app.settings.tabs.language": {
"message": "Мова"
},
"app.settings.tabs.privacy": {
"message": "Конфіденційність"
},
@@ -33,13 +24,13 @@
"message": "Керування ресурсами"
},
"app.update-toast.body": {
"message": "Версія {version} Modrinth App готова до встановлення! Перезапустіть, щоб оновити зараз, або дозвольте оновитися автоматично, коли закриватимете Modrinth App."
"message": "Modrinth App v{version} готова до встановлення! Перезапустіть, щоб оновити зараз. Або, оновлення буде здійснено автоматично, коли закриєте Modrinth App."
},
"app.update-toast.body.download-complete": {
"message": "Версія {version} Modrinth App уже завантажилася. Перезапустіть, щоб оновити зараз, або дозвольте оновитися автоматично, коли закриватимете Modrinth App."
"message": "Modrinth App v{version} уже завантажилась. Перезапустіть, щоб оновити зараз. Або, оновлення буде здійснено автоматично, коли закриєте Modrinth App."
},
"app.update-toast.body.metered": {
"message": "Версія {version} Modrinth App доступна для завантаження! Оскільки ви на лімітному з’єднанні, ми не завантажили її автоматично."
"message": "Modrinth App v{version} доступна зараз! Оскільки ви на лімітному з’єднанні, ми не завантажили її автоматично."
},
"app.update-toast.changelog": {
"message": "Журнал змін"
@@ -54,13 +45,13 @@
"message": "Перезапустити"
},
"app.update-toast.title": {
"message": "Доступне оновлення"
"message": "Оновлення доступне"
},
"app.update-toast.title.download-complete": {
"message": "Завантаження завершено"
},
"app.update.complete-toast.text": {
"message": "Натисніть тут, щоб побачити журнал змін."
"message": "Натисніть тут, щоб побачити список змін."
},
"app.update.complete-toast.title": {
"message": "Версію {version} успішно встановлено!"
@@ -72,7 +63,7 @@
"message": "Завантаження оновлення ({percent}%)"
},
"app.update.reload-to-update": {
"message": "Перезавантажте, аби встановити оновлення"
"message": "Перезавантажте, щоб установити оновлення"
},
"friends.action.add-friend": {
"message": "Додати друга"
@@ -90,13 +81,13 @@
"message": "Може відрізнятися від його або її імені користувача Minecraft!"
},
"friends.add-friend.username.placeholder": {
"message": "Уведіть ім’я користувача…"
"message": "Уведіть ім’я користувача Modrinth…"
},
"friends.add-friend.username.title": {
"message": "Яке ім’я користувача Modrinth у вашого друга?"
},
"friends.add-friends-to-share": {
"message": "<link>Додайте друзів</link>, аби бачити, у що вони грають!"
"message": "<link>Додайте друзів</link>, щоб бачити, у що вони грають!"
},
"friends.friend.cancel-request": {
"message": "Скасувати запит"
@@ -126,7 +117,7 @@
"message": "Очікується"
},
"friends.no-friends-match": {
"message": "Немає друзів, які збігаються з «{query}»"
"message": "Немає друзів, котрі збігаються з «{query}»"
},
"friends.search-friends-placeholder": {
"message": "Шукати друзів…"
@@ -156,7 +147,7 @@
"message": "Додати сервер"
},
"instance.edit-server.title": {
"message": "Редагувати сервер"
"message": "Змінити сервер"
},
"instance.edit-world.hide-from-home": {
"message": "Не показувати на головній сторінці"
@@ -177,7 +168,7 @@
"message": "Вимкнені проєкти"
},
"instance.filter.updates-available": {
"message": "Оновлення доступні"
"message": "Наявні оновлення"
},
"instance.server-modal.address": {
"message": "Адреса"
@@ -195,13 +186,13 @@
"message": "Загальні"
},
"instance.settings.tabs.general.delete": {
"message": "Видалити профіль"
"message": "Видалити примірник"
},
"instance.settings.tabs.general.delete.button": {
"message": "Видалити профіль"
},
"instance.settings.tabs.general.delete.description": {
"message": "Назавжди видаляє профіль з вашого пристрою, включно з вашими світами, налаштуваннями та всім установленим умістом. Будьте обережні, після видалення, відновити профіль буде неможливо."
"message": "Назавжди видаляє профіль з вашого пристрою, включно з вашими світами, налаштуваннями та всім встановленим контентом.\nБудьте обережні, після видалення, відновити профіль буде неможливо."
},
"instance.settings.tabs.general.deleting.button": {
"message": "Видалення…"
@@ -210,13 +201,13 @@
"message": "Клонувати"
},
"instance.settings.tabs.general.duplicate-button.tooltip.installing": {
"message": "Неможливо клонувати під час установлення."
"message": "Неможливо клонувати під час встановлення."
},
"instance.settings.tabs.general.duplicate-instance": {
"message": "Клонувати профіль"
},
"instance.settings.tabs.general.duplicate-instance.description": {
"message": "Створює копію профілю, включно зі світами, налаштуваннями, модами тощо."
"message": "Створює копію інсталяції, включно зі світами, налаштуваннями, модами тощо."
},
"instance.settings.tabs.general.edit-icon": {
"message": "Редагувати значок"
@@ -228,7 +219,7 @@
"message": "Замінити значок"
},
"instance.settings.tabs.general.edit-icon.select": {
"message": "Вибрати значок"
"message": "Обрати значок"
},
"instance.settings.tabs.general.library-groups": {
"message": "Групи бібліотеки"
@@ -270,13 +261,13 @@
"message": "Запускається перед відкриттям профілю."
},
"instance.settings.tabs.hooks.pre-launch.enter": {
"message": "Уведіть команду, що виконуватиметься перед запуском"
"message": "Уведіть команду, що виконується перед запуском..."
},
"instance.settings.tabs.hooks.title": {
"message": "Гуки запуску гри"
},
"instance.settings.tabs.hooks.wrapper": {
"message": "Під час гри"
"message": "Обгортач"
},
"instance.settings.tabs.hooks.wrapper.description": {
"message": "Обгортальна команда для запуску Minecraft."
@@ -285,7 +276,7 @@
"message": "Уведіть обгортальну команду…"
},
"instance.settings.tabs.installation": {
"message": "Установлення"
"message": "Інсталяція"
},
"instance.settings.tabs.installation.change-version.already-installed.modded": {
"message": "{platform} {version} для Minecraft {game_version} вже встановлена"
@@ -321,10 +312,10 @@
"message": "Версія гри"
},
"instance.settings.tabs.installation.install": {
"message": "Установити"
"message": "Встановити"
},
"instance.settings.tabs.installation.install.in-progress": {
"message": "Установлення триває"
"message": "Відбувається встановлення"
},
"instance.settings.tabs.installation.loader-version": {
"message": "Версія {loader}"
@@ -333,13 +324,13 @@
"message": "Minecraft {version}"
},
"instance.settings.tabs.installation.no-connection": {
"message": "Не вдається отримати деталі повязаної збірки. Будь ласка, перевірте ваше зєднання з інтернетом."
"message": "Неможливо отримати деталі пов'язаної збірки. Будь ласка, перевірте ваше з'єднання з інтернетом."
},
"instance.settings.tabs.installation.no-loader-versions": {
"message": "{loader} недоступний для Minecraft {version}. Спробуйте інший завантажувач модів."
},
"instance.settings.tabs.installation.no-modpack-found": {
"message": ей профіль повязаний зі збіркою, проте саму збірку не вдалося знайти на Modrinth."
"message": я інсталяція пов'язана зі збіркою, проте саму збірку не вдалося знайти на Modrinth."
},
"instance.settings.tabs.installation.platform": {
"message": "Платформа"
@@ -351,13 +342,13 @@
"message": "Перевстановлення збірки"
},
"instance.settings.tabs.installation.reinstall.confirm.description": {
"message": "Перевстановлення скине ввесь доданий або модифікований уміст до наданого збіркою, прибираючи будь-які додатково встановлені вами моди чи вміст. Якщо ви змінювали профіль, це може виправити непередбачувану поведінку, однак, якщо ваші світи залежать від додаткового вмісту, світи можуть пошкодитися."
"message": "Перевстановлення скине увесь доданий або модифікований вміст до наданого збіркою, прибираючи будь-які, додатково встановлені вами модифікації чи вміст.\nЯкщо ви змінювали інсталяцію, це може виправити непередбачувану поведінку, однак, якщо ваші світи залежать від додаткового вмісту, це може зламати ці світи."
},
"instance.settings.tabs.installation.reinstall.confirm.title": {
"message": "Ви впевнені, що хочете перевстановити цей профіль?"
},
"instance.settings.tabs.installation.reinstall.description": {
"message": "Скидає вміст профілю до початкового стану, прибираючи будь-які моди чи вміст, що було додано поверх оригінальної збірки."
"message": "Скидає вміст інсталяції до початкового стану, прибираючи будь-які модифікації чи вміст, що було додано поверх оригінальної збірки."
},
"instance.settings.tabs.installation.reinstall.title": {
"message": "Перевстановити збірку"
@@ -369,13 +360,13 @@
"message": "Лагодження"
},
"instance.settings.tabs.installation.repair.confirm.description": {
"message": "Відновлення перевстановлює залежності Minecraft та перевіряє їх на наявність пошкоджень. Це може розвязати проблеми, якщо ваша гра не запускається через помилки запускача, але не розвяже проблеми або збої, повязані зі встановленими модами."
"message": "Відновлення перевстановлює залежності Minecraft та перевіряє їх на наявність пошкоджень. Це може розв'язати проблеми, якщо ваша гра не запускається через помилки завантажувача, але не розв'яже проблеми або збої, пов'язані зі встановленими модифікаціями."
},
"instance.settings.tabs.installation.repair.confirm.title": {
"message": "Відновити профіль?"
},
"instance.settings.tabs.installation.repair.in-progress": {
"message": "Лагодження триває"
"message": "Лагодження в процесі"
},
"instance.settings.tabs.installation.reset-selections": {
"message": "Скинути до поточного"
@@ -396,34 +387,34 @@
"message": "полагодити"
},
"instance.settings.tabs.installation.tooltip.cannot-while-installing": {
"message": "Неможливо {action} під час установлення"
"message": "Неможливо {action} під час встановлення"
},
"instance.settings.tabs.installation.tooltip.cannot-while-offline": {
"message": "Неможливо {action} без з’єднання з інтернетом"
"message": "Неможливо {action} без підключення до інтернету"
},
"instance.settings.tabs.installation.tooltip.cannot-while-repairing": {
"message": "Неможливо {action} під час лагодження"
"message": "Неможливо {action} під час виправлення"
},
"instance.settings.tabs.installation.unknown-version": {
"message": "(невідома версія)"
},
"instance.settings.tabs.installation.unlink.button": {
"message": "Відвязати профіль"
"message": "Відв'язати профіль"
},
"instance.settings.tabs.installation.unlink.confirm.description": {
"message": "Якщо ви продовжите, ви не зможете повторно підвязати його без створення повністю нового профілю. Ви більше не будете отримувати оновлення збірки та цей профіль стане звичайним."
"message": "Якщо ви продовжите, ви не зможете повторно підв'язати його без створення повністю нової інсталяції. Ви більше не будете отримувати оновлення збірки та вона стане звичайною."
},
"instance.settings.tabs.installation.unlink.confirm.title": {
"message": "Ви впевнені, що хочете відвязати цей профіль?"
"message": "Ви впевнені, що хочете відв'язати цю інсталяцію?"
},
"instance.settings.tabs.installation.unlink.description": {
"message": "Цей профіль повязаний зі збіркою, тобто, не можна оновлювати моди та не можна змінювати завантажувач чи версію Minecraft. Відвязання призведе до остаточного від’єднання цього профілю від збірки."
"message": "Цей профіль пов'язаний зі збіркою, тобто, не можна оновлювати модифікації та не можна змінювати завантажувач чи версію Minecraft. Відв'язання призведе до остаточного відключення цієї інсталяції від збірки."
},
"instance.settings.tabs.installation.unlink.title": {
"message": "Відвязати від збірки"
"message": "Відв'язати від збірки"
},
"instance.settings.tabs.java": {
"message": "Java та память"
"message": "Java та пам'ять"
},
"instance.settings.tabs.java.environment-variables": {
"message": "Змінні середовища"
@@ -438,7 +429,7 @@
"message": "Інсталяції Java"
},
"instance.settings.tabs.java.java-memory": {
"message": "Виділена память"
"message": "Виділена пам'ять"
},
"instance.settings.tabs.window": {
"message": "Вікно"
@@ -450,7 +441,7 @@
"message": "Повний екран"
},
"instance.settings.tabs.window.fullscreen.description": {
"message": "Запускати гру в повноекранному режимі (за допомогою options.txt)."
"message": "Змусити гру запускатися на повний екран (використовуючи options.txt)."
},
"instance.settings.tabs.window.height": {
"message": "Висота"
@@ -477,13 +468,13 @@
"message": "Сервер Minecraft"
},
"instance.worlds.cant_connect": {
"message": "Неможливо підєднатися до сервера"
"message": "Неможливо під'єднатися до сервера"
},
"instance.worlds.copy_address": {
"message": "Скопіювати адресу"
},
"instance.worlds.dont_show_on_home": {
"message": "Не показувати на головній"
"message": "Не показувати на Головній"
},
"instance.worlds.filter.available": {
"message": "Доступно"
@@ -495,10 +486,10 @@
"message": "Режим гардкору"
},
"instance.worlds.incompatible_server": {
"message": "Сервер несумісний"
"message": "Несумісний сервер"
},
"instance.worlds.no_contact": {
"message": "Не вдалося звязатися зі сервером"
"message": "Не вдалося зв'язатися з сервером"
},
"instance.worlds.no_server_quick_play": {
"message": "Запускатися у сервери напряму можливо лише починаючи з версії Minecraft Alpha 1.0.5"
@@ -519,7 +510,7 @@
"message": "Переглянути профіль"
},
"instance.worlds.world_in_use": {
"message": "Світ наразі використовується"
"message": "Світ зараз використовується"
},
"search.filter.locked.instance": {
"message": "Надано профілем"
@@ -528,7 +519,7 @@
"message": "Версія гри надана профілем"
},
"search.filter.locked.instance-loader.title": {
"message": "Завантажувач наданий профілем"
"message": "Запускач наданий профілем"
},
"search.filter.locked.instance.sync": {
"message": "Синхронізувати з профілем"

View File

@@ -1,21 +1,9 @@
{
"app.auth-servers.unreachable.body": {
"message": "Máy chủ xác thực của Minecraft có thể đang bị sập. Hãy kiểm tra kết nối Internet của bạn và thử lại sau."
},
"app.auth-servers.unreachable.header": {
"message": "Không thể kết nối đến máy chủ xác thực"
},
"app.settings.developer-mode-enabled": {
"message": "Chế độ nhà phát triển đã được bật."
},
"app.settings.downloading": {
"message": "Đang tải về v{version}"
},
"app.settings.tabs.appearance": {
"message": "Giao diện"
},
"app.settings.tabs.default-instance-options": {
"message": "Tuỳ chọn bản hiện thể mặc định"
"message": "Diện mạo"
},
"app.settings.tabs.feature-flags": {
"message": "Các cờ tính năng"
@@ -23,120 +11,12 @@
"app.settings.tabs.java-installations": {
"message": "Các bản cài Java"
},
"app.settings.tabs.language": {
"message": "Ngôn ngữ"
},
"app.settings.tabs.privacy": {
"message": "Quyền riêng tư"
},
"app.settings.tabs.resource-management": {
"message": "Quản lý tài nguyên"
},
"app.update-toast.body": {
"message": "Modrinth phiên bản v{version} đã sẵn sằng! Chạy lại để cập nhật ngay bây giờ, hoặc cập nhật tự động khi bạn đóng Modrinth."
},
"app.update-toast.body.download-complete": {
"message": "Modrinth phiên bản v{version} đã tải xuống hoàn tất. Chạy lại để cập nhật ngay bây giờ, hoặc tự động cập nhật khi bạn thoát Modrinth."
},
"app.update-toast.body.metered": {
"message": "Modrinth phiên bản v{version} đang có sẵn! Do mạng của bạn đang tính phí theo dung lượng và có định mức, chúng tôi không tải phiên bản này tự động."
},
"app.update-toast.changelog": {
"message": "Nhật ký thay đổi"
},
"app.update-toast.download": {
"message": "Tải xuống ({size})"
},
"app.update-toast.downloading": {
"message": "Đang tải xuống..."
},
"app.update-toast.reload": {
"message": "Tải lại"
},
"app.update-toast.title": {
"message": "Có bản cập nhật mới"
},
"app.update-toast.title.download-complete": {
"message": "Đã tải xuống xong"
},
"app.update.complete-toast.text": {
"message": "Nháy vào đây để xem nhật kí thay đổi."
},
"app.update.complete-toast.title": {
"message": "Phiên bản {version} đã được cài đặt thành công!"
},
"app.update.download-update": {
"message": "Tải về bản cập nhật"
},
"app.update.downloading-update": {
"message": "Đang tải xuống bản cập nhật ({percent}%)"
},
"app.update.reload-to-update": {
"message": "Hãy tải lại để cài đặt bản cập nhật"
},
"friends.action.add-friend": {
"message": "Thêm một người bạn"
},
"friends.action.view-friend-requests": {
"message": "{count} yêu cầu kết bạn {count, plural, one {request} other {requests}}"
},
"friends.add-friend.submit": {
"message": "Gửi yêu cầu kết bạn"
},
"friends.add-friend.title": {
"message": "Thêm một người bạn"
},
"friends.add-friend.username.description": {
"message": "Nó có thể khác với tên người dùng Minecraft của họ!"
},
"friends.add-friend.username.placeholder": {
"message": "Nhập tên người dùng Modrinth..."
},
"friends.add-friend.username.title": {
"message": "Tên người dùng Modrinth của bạn của bạn là gì?"
},
"friends.add-friends-to-share": {
"message": "Hãy <link>Thêm bạn bè</link> để biết họ đang chơi gì!"
},
"friends.friend.cancel-request": {
"message": "Huỷ yêu cầu"
},
"friends.friend.remove-friend": {
"message": "Loại bỏ bạn bè"
},
"friends.friend.request-sent": {
"message": "Đã gửi yêu cầu kết bạn"
},
"friends.friend.view-profile": {
"message": "Xem hồ sơ"
},
"friends.heading": {
"message": "Bạn bè"
},
"friends.heading.active": {
"message": "Đang hoạt động"
},
"friends.heading.offline": {
"message": "Ngoại tuyến"
},
"friends.heading.online": {
"message": "Trực tuyến"
},
"friends.heading.pending": {
"message": "Đang chờ"
},
"friends.no-friends-match": {
"message": "Không có người bạn nào phù hợp với ''{query}''"
},
"friends.search-friends-placeholder": {
"message": "Tìm kiếm bạn bè..."
},
"friends.section.heading": {
"message": "{title} - {count}"
},
"friends.sign-in-to-add-friends": {
"message": "<link>Đăng nhập bằng tài khoản Modrinth</link> để kết bạn và xem họ đang chơi gì!"
},
"instance.add-server.add-and-play": {
"message": "Thêm và chơi"
},
@@ -150,7 +30,7 @@
"message": "Bật"
},
"instance.add-server.resource-pack.prompt": {
"message": "Nhắc nhở"
"message": "Hỏi trước"
},
"instance.add-server.title": {
"message": "Thêm máy chủ"
@@ -194,15 +74,6 @@
"instance.settings.tabs.general": {
"message": "Tổng quát"
},
"instance.settings.tabs.general.delete": {
"message": "Xoá hiện thể"
},
"instance.settings.tabs.general.delete.button": {
"message": "Xoá hiện thể"
},
"instance.settings.tabs.general.delete.description": {
"message": "Xoá vĩnh viễn bản này khỏi thiết bị, bao gồm thế giới, cài đặt, và các nội dung được cài đặt khác. Hãy cân nhắc vì bạn không thể khôi phục sau khi xoá."
},
"instance.settings.tabs.general.deleting.button": {
"message": "Đang xoá..."
},
@@ -212,12 +83,6 @@
"instance.settings.tabs.general.duplicate-button.tooltip.installing": {
"message": "Không thể nhân đôi trong khi đang cài đặt."
},
"instance.settings.tabs.general.duplicate-instance": {
"message": "Sao đôi hiện thể"
},
"instance.settings.tabs.general.duplicate-instance.description": {
"message": "Tạo ra một bản sao của hiện thể này, bao gồm các thế giới, cấu hình, mod, v.v.."
},
"instance.settings.tabs.general.edit-icon": {
"message": "Sửa biểu tượng"
},
@@ -245,15 +110,6 @@
"instance.settings.tabs.general.name": {
"message": "Tên"
},
"instance.settings.tabs.hooks": {
"message": "Khởi chạy Hooks"
},
"instance.settings.tabs.hooks.custom-hooks": {
"message": "Hooks khởi chạy tuỳ biến"
},
"instance.settings.tabs.hooks.description": {
"message": "Hooks cho phép người dùng nâng cao chạy câu lệnh hệ thống trước và sau khi chạy game."
},
"instance.settings.tabs.hooks.post-exit": {
"message": "Sau khi thoát"
},
@@ -266,24 +122,6 @@
"instance.settings.tabs.hooks.pre-launch": {
"message": "Trước khi chạy"
},
"instance.settings.tabs.hooks.pre-launch.description": {
"message": "Chạy trước khi hiện thể được khởi chạy."
},
"instance.settings.tabs.hooks.pre-launch.enter": {
"message": "Nhập câu lệnh trước khi chạy..."
},
"instance.settings.tabs.hooks.title": {
"message": "Hooks để chạy game"
},
"instance.settings.tabs.hooks.wrapper": {
"message": "Lệnh bao bọc (Wrapper)"
},
"instance.settings.tabs.hooks.wrapper.description": {
"message": "Lệnh bao bọc (Wrapper) để khởi chạy Minecraft."
},
"instance.settings.tabs.hooks.wrapper.enter": {
"message": "Nhập lệnh bao bọc..."
},
"instance.settings.tabs.installation": {
"message": "Cài đặt"
},
@@ -302,21 +140,6 @@
"instance.settings.tabs.installation.change-version.button.installing": {
"message": "Đang cài đặt"
},
"instance.settings.tabs.installation.change-version.cannot-while-fetching": {
"message": "Đang tìm phiên bản modpack"
},
"instance.settings.tabs.installation.change-version.in-progress": {
"message": "Cài đặt phiên bản mới"
},
"instance.settings.tabs.installation.currently-installed": {
"message": "Đã cài đặt"
},
"instance.settings.tabs.installation.debug-information": {
"message": "Thông tin gỡ lỗi:"
},
"instance.settings.tabs.installation.fetching-modpack-details": {
"message": "Đang tìm chi tiết của modpack"
},
"instance.settings.tabs.installation.game-version": {
"message": "Phiên bản trò chơi"
},
@@ -356,9 +179,6 @@
"instance.settings.tabs.installation.reinstall.confirm.title": {
"message": "Bạn có chắc là bạn muốn tải lại phiên bản này không?"
},
"instance.settings.tabs.installation.reinstall.description": {
"message": "Đặt lại bản cài đặt này về phiên bản ban đầu, xoá các mod và nội dung bạn đã cài đặt đè lên modpack gốc."
},
"instance.settings.tabs.installation.reinstall.title": {
"message": "Cài lại gói mod"
},
@@ -368,9 +188,6 @@
"instance.settings.tabs.installation.repair.button.repairing": {
"message": "Đang sửa chữa"
},
"instance.settings.tabs.installation.repair.confirm.description": {
"message": "Trình Sửa lỗi sẽ cài đặt lại các tệp phụ thuộc của Minecraft và kiểm tra các lỗi hư hại dữ liệu. Hành động này có thể khắc phục sự cố nếu trò chơi không khởi chạy được do lỗi trình khởi động, nhưng sẽ không giải quyết được các vấn đề hoặc sự cố sập game liên quan đến các bản mod đã cài đặt."
},
"instance.settings.tabs.installation.repair.confirm.title": {
"message": "Sửa chữa phiên bản?"
},
@@ -410,9 +227,6 @@
"instance.settings.tabs.installation.unlink.button": {
"message": "Xóa liên kết phiên bản"
},
"instance.settings.tabs.installation.unlink.confirm.description": {
"message": "Nếu tiếp tục, bạn sẽ không thể liên kết nó lại mà phải tạo một bản mới. Bạn sẽ không nhận được các bản cập nhật của modpack và nó sẽ trở lại bình thường."
},
"instance.settings.tabs.installation.unlink.confirm.title": {
"message": "Bạn có chắc là bạn muốn xóa liên kết phiên bản này không?"
},
@@ -482,15 +296,9 @@
"instance.worlds.copy_address": {
"message": "Sao chép địa chỉ"
},
"instance.worlds.dont_show_on_home": {
"message": "Không hiện ở Trang chủ"
},
"instance.worlds.filter.available": {
"message": "Có sẵn"
},
"instance.worlds.game_already_open": {
"message": "Bản này đã mở sẵn"
},
"instance.worlds.hardcore": {
"message": "Chế độ siêu khó"
},
@@ -518,9 +326,6 @@
"instance.worlds.view_instance": {
"message": "Xem phiên bản"
},
"instance.worlds.world_in_use": {
"message": "Thế giới đang mở"
},
"search.filter.locked.instance": {
"message": "Được cung cấp bởi phiên bản"
},

View File

@@ -1,15 +1,9 @@
{
"app.auth-servers.unreachable.body": {
"message": "Minecraft 认证服务器现在可能无法使用。请检查你的网络连接,并稍后再试。"
},
"app.auth-servers.unreachable.header": {
"message": "无法连接到认证服务器"
},
"app.settings.developer-mode-enabled": {
"message": "开发者模式已启用。"
},
"app.settings.downloading": {
"message": "正在下载 v{version}"
"message": "下载{version}"
},
"app.settings.tabs.appearance": {
"message": "外观"
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Java 管理"
},
"app.settings.tabs.language": {
"message": "语言"
},
"app.settings.tabs.privacy": {
"message": "隐私"
},
@@ -33,52 +24,52 @@
"message": "资源管理"
},
"app.update-toast.body": {
"message": "Modrinth App v{version} 更新已就绪!立即重启更新,或退出时自动安装。"
"message": "Modrinth App v{version} 准备好更新。现在重新启动以更新或在您关闭Modrinth App时自动更新。"
},
"app.update-toast.body.download-complete": {
"message": "Modrinth App v{version} 已经完成下载。现在重新启动以更新,或在关闭 Modrinth App 时自动更新。"
"message": "Modrinth App v{version} 已经完成下载。现在重新启动以更新,或在关闭Modrinth App时自动更新。"
},
"app.update-toast.body.metered": {
"message": "Modrinth App v{version} 现已发布!由于你正在使用按流量计费的网络,该更新未自动下载。"
"message": "Modrinth App v{version} 现在可用。自从您处在按流量计费的网络环境,我们没有自动下载更新。"
},
"app.update-toast.changelog": {
"message": "更日志"
"message": "更日志"
},
"app.update-toast.download": {
"message": "下载({size}"
},
"app.update-toast.downloading": {
"message": "下载中"
"message": "下载中... ..."
},
"app.update-toast.reload": {
"message": "重启应用"
"message": "重新启动"
},
"app.update-toast.title": {
"message": "有可用更新"
"message": "更新可用"
},
"app.update-toast.title.download-complete": {
"message": "下载完成"
},
"app.update.complete-toast.text": {
"message": "点击此处查看更日志。"
"message": "点击此处查看更日志。"
},
"app.update.complete-toast.title": {
"message": "版本 {version} 已成功安装!"
"message": "版本{version}已成功安装!"
},
"app.update.download-update": {
"message": "下载更新"
"message": "下载完成"
},
"app.update.downloading-update": {
"message": "下载更新中({percent}%"
"message": "更新下载中({percent}%)"
},
"app.update.reload-to-update": {
"message": "立即重启以安装更新"
"message": "重新启动以安装更新"
},
"friends.action.add-friend": {
"message": "加好友"
"message": "加好友"
},
"friends.action.view-friend-requests": {
"message": "{count}好友请求"
"message": "{count}好友请求"
},
"friends.add-friend.submit": {
"message": "发送好友请求"
@@ -87,16 +78,16 @@
"message": "添加好友"
},
"friends.add-friend.username.description": {
"message": "可能与对方的 Minecraft 用户名不"
"message": "可能和他们的 Minecraft 用户名不一样"
},
"friends.add-friend.username.placeholder": {
"message": "输入 Modrinth 用户名……"
"message": "输入Modrinth用户名……"
},
"friends.add-friend.username.title": {
"message": "友的 Modrinth 用户名是什么?"
"message": "你朋友的 Modrinth 用户名是什么?"
},
"friends.add-friends-to-share": {
"message": "<link>添加好友</link> 来看看他们在玩什么!"
"message": "<link>添加好友</link>看他们在玩什么!"
},
"friends.friend.cancel-request": {
"message": "取消请求"
@@ -114,7 +105,7 @@
"message": "好友"
},
"friends.heading.active": {
"message": "活跃"
"message": "活跃"
},
"friends.heading.offline": {
"message": "离线"
@@ -126,7 +117,7 @@
"message": "待确认"
},
"friends.no-friends-match": {
"message": "没有对应名字“{query}”的友"
"message": "没有匹配“{query}”的友"
},
"friends.search-friends-placeholder": {
"message": "搜索好友……"
@@ -135,7 +126,7 @@
"message": "{title} - {count}"
},
"friends.sign-in-to-add-friends": {
"message": "登录你的 <link>Modrinth 账号</link>添加好友,看看他们在玩什么!"
"message": "登录你的 <link>Modrinth账号</link> 添加好友并查看他们在玩什么!"
},
"instance.add-server.add-and-play": {
"message": "添加并游玩"
@@ -150,7 +141,7 @@
"message": "启用"
},
"instance.add-server.resource-pack.prompt": {
"message": "询问"
"message": "提示"
},
"instance.add-server.title": {
"message": "添加服务器"
@@ -171,13 +162,13 @@
"message": "重置图标"
},
"instance.edit-world.title": {
"message": "编辑存档"
"message": "编辑世界"
},
"instance.filter.disabled": {
"message": "已禁用的项目"
},
"instance.filter.updates-available": {
"message": "有可用更新"
"message": "有更新"
},
"instance.server-modal.address": {
"message": "地址"
@@ -201,7 +192,7 @@
"message": "删除实例"
},
"instance.settings.tabs.general.delete.description": {
"message": "从设备永久删除实例,包括所有存档、配置文件及已安装内容。此操作不可撤销,请谨慎操作。"
"message": "从你的设备永久删除实例,包括你的世界,配置和所有已安装内容。注意:你无法恢复被删除的实例。"
},
"instance.settings.tabs.general.deleting.button": {
"message": "删除中……"
@@ -231,13 +222,13 @@
"message": "选择图标"
},
"instance.settings.tabs.general.library-groups": {
"message": "实例分组"
"message": "分组"
},
"instance.settings.tabs.general.library-groups.create": {
"message": "创建新的分组"
},
"instance.settings.tabs.general.library-groups.description": {
"message": "实例分组可将你的实例整理到实例库的不同版块中。"
"message": "库分组功能可以让你将实例整理到库中的不同部分。"
},
"instance.settings.tabs.general.library-groups.enter-name": {
"message": "输入分组名称"
@@ -246,22 +237,22 @@
"message": "名称"
},
"instance.settings.tabs.hooks": {
"message": "启动Hooks"
"message": "启动钩子"
},
"instance.settings.tabs.hooks.custom-hooks": {
"message": "自定义启动Hooks"
"message": "自定义启动钩子"
},
"instance.settings.tabs.hooks.description": {
"message": "Hooks允许高级用户在启动游戏前后运行特定的系统命令。"
"message": "启动钩子允许高级用户在游戏启动前后运行特定的系统命令。"
},
"instance.settings.tabs.hooks.post-exit": {
"message": "退出后"
"message": "退出后运行"
},
"instance.settings.tabs.hooks.post-exit.description": {
"message": "在游戏关闭后运行。"
},
"instance.settings.tabs.hooks.post-exit.enter": {
"message": "输入退出后运行的命令…"
"message": "输入退出后运行的命令…"
},
"instance.settings.tabs.hooks.pre-launch": {
"message": "启动前"
@@ -270,25 +261,25 @@
"message": "在实例启动前运行。"
},
"instance.settings.tabs.hooks.pre-launch.enter": {
"message": "输入启动前命令..."
"message": "输入启动前命令……"
},
"instance.settings.tabs.hooks.title": {
"message": "游戏启动钩子"
},
"instance.settings.tabs.hooks.wrapper": {
"message": "装器命令"
"message": "装器"
},
"instance.settings.tabs.hooks.wrapper.description": {
"message": "用于启动 Minecraft 的装器命令。"
"message": "用于启动 Minecraft 的装器命令。"
},
"instance.settings.tabs.hooks.wrapper.enter": {
"message": "输入装器命令……"
"message": "输入装器命令……"
},
"instance.settings.tabs.installation": {
"message": "安装"
},
"instance.settings.tabs.installation.change-version.already-installed.modded": {
"message": "适用于 Minecraft {game_version} 的 {platform} {version} 已安装"
"message": "适用于 Minecraft {game_version} 的{platform} {version}已安装"
},
"instance.settings.tabs.installation.change-version.already-installed.vanilla": {
"message": "原版 {game_version} 已安装"
@@ -309,7 +300,7 @@
"message": "正在安装新版本"
},
"instance.settings.tabs.installation.currently-installed": {
"message": "当前安装"
"message": "当前安装"
},
"instance.settings.tabs.installation.debug-information": {
"message": "调试信息:"
@@ -324,19 +315,19 @@
"message": "安装"
},
"instance.settings.tabs.installation.install.in-progress": {
"message": "正在安装"
"message": "安装"
},
"instance.settings.tabs.installation.loader-version": {
"message": "{loader} 版本"
"message": "{loader}版本"
},
"instance.settings.tabs.installation.minecraft-version": {
"message": "Minecraft {version}"
},
"instance.settings.tabs.installation.no-connection": {
"message": "无法获取整合包详细信息。请检查网络连接。"
"message": "获取整合包详细信息失败。请检查你的网络连接。"
},
"instance.settings.tabs.installation.no-loader-versions": {
"message": "{loader} 不支持 Minecraft {version}。请尝试其他模组加载器。"
"message": "{loader}不适用于Minecraft {version}。试试换一个模组加载器。"
},
"instance.settings.tabs.installation.no-modpack-found": {
"message": "此实例与一个整合包相关联,但在 Modrinth 上无法找到该整合包。"
@@ -351,13 +342,13 @@
"message": "正在重新安装整合包"
},
"instance.settings.tabs.installation.reinstall.confirm.description": {
"message": "重新安装实例将重置所有已安装或修改的内容,并恢复到整合包的初始状态,移除在原来的安装内容上另外添加的的所有模组或内容。该操作有可能修复因实例更改导致的异常,但如果你的世界依赖安装的额外内容,此举可能会坏现有世界。"
"message": "重新安装将会把所有已安装或修改的内容重置为整合包提供的状态,移除在原始安装基础上添加的任何模组或内容。可能修复因实例更改导致的异常行为,但如果你的世界依赖于额外安装的内容,可能会坏现有世界。"
},
"instance.settings.tabs.installation.reinstall.confirm.title": {
"message": "你确定要重新安装该实例吗?"
},
"instance.settings.tabs.installation.reinstall.description": {
"message": "重置实例至原始状态,移除你在原始整合包上添加的所有模组内容。"
"message": "将实例的内容重置为原始状态,移除你在原始整合包基础上添加的任何模组内容。"
},
"instance.settings.tabs.installation.reinstall.title": {
"message": "重新安装整合包"
@@ -369,19 +360,19 @@
"message": "修复中"
},
"instance.settings.tabs.installation.repair.confirm.description": {
"message": "修复实例将重新安装 Minecraft 依赖并检查文件完整性。该操作有可能解决因启动器错误导致的启动失败问题,但不解决由模组引的问题或崩溃。"
"message": "修复重新安装 Minecraft 依赖并检查是否损坏。这可能解决因启动器相关错误导致游戏无法启动的问题,但不解决由已安装模组引的问题或崩溃。"
},
"instance.settings.tabs.installation.repair.confirm.title": {
"message": "确定修复该实例吗?"
},
"instance.settings.tabs.installation.repair.in-progress": {
"message": "正在修复"
"message": "修复进行中"
},
"instance.settings.tabs.installation.reset-selections": {
"message": "重置为当前版本"
"message": "重置为当前"
},
"instance.settings.tabs.installation.show-all-versions": {
"message": "显示所有版本"
"message": "列出所有版本"
},
"instance.settings.tabs.installation.tooltip.action.change-version": {
"message": "切换版本"
@@ -411,19 +402,19 @@
"message": "解除关联实例"
},
"instance.settings.tabs.installation.unlink.confirm.description": {
"message": "继续操作,该实例将无法重新关联至原整合包,除非创建全新实例。此后,不再接收整合包的任何更新,该实例变为普通实例。"
"message": "如果继续操作,你将无法在不创建全新实例的情况下重新关联它。你也将不再接收整合包更新,该实例变为普通实例。"
},
"instance.settings.tabs.installation.unlink.confirm.title": {
"message": "你确定要解除关联实例吗?"
},
"instance.settings.tabs.installation.unlink.description": {
"message": "该实例已关联至整合包,因此无法单独更新模组,也无法更改模组加载器Minecraft 版本。解除关联后,该实例将无法重新关联至整合包。"
"message": "该实例已与一整合包相关联,这意味着你无法更新模组,且不能更改模组加载器Minecraft版本。解除关联将永久断开此实例与整合包的连接。"
},
"instance.settings.tabs.installation.unlink.title": {
"message": "解除整合包关联"
"message": "断开与整合包关联"
},
"instance.settings.tabs.java": {
"message": "Java 及内存"
"message": "Java及内存"
},
"instance.settings.tabs.java.environment-variables": {
"message": "环境变量"
@@ -432,16 +423,16 @@
"message": "钩子"
},
"instance.settings.tabs.java.java-arguments": {
"message": "Java 参数"
"message": "Java参数"
},
"instance.settings.tabs.java.java-installation": {
"message": "Java 安装路径"
"message": "Java安装路径"
},
"instance.settings.tabs.java.java-memory": {
"message": "内存分配"
"message": "分配内存"
},
"instance.settings.tabs.window": {
"message": "游戏窗口"
"message": "窗口"
},
"instance.settings.tabs.window.custom-window-settings": {
"message": "自定义窗口设置"
@@ -459,7 +450,7 @@
"message": "游戏启动时的窗口高度。"
},
"instance.settings.tabs.window.height.enter": {
"message": "输入高度…"
"message": "输入高度…"
},
"instance.settings.tabs.window.width": {
"message": "宽度"
@@ -468,13 +459,13 @@
"message": "游戏启动时的窗口宽度。"
},
"instance.settings.tabs.window.width.enter": {
"message": "输入宽度…"
"message": "输入宽度…"
},
"instance.settings.title": {
"message": "设置"
},
"instance.worlds.a_minecraft_server": {
"message": "Minecraft 服务器"
"message": "一个Minecraft服务器"
},
"instance.worlds.cant_connect": {
"message": "无法连接至服务器"
@@ -489,7 +480,7 @@
"message": "可用"
},
"instance.worlds.game_already_open": {
"message": "实例已启动"
"message": "实例已打开"
},
"instance.worlds.hardcore": {
"message": "极限模式"
@@ -498,13 +489,13 @@
"message": "服务器不兼容"
},
"instance.worlds.no_contact": {
"message": "无法连接服务器"
"message": "无法联系服务器"
},
"instance.worlds.no_server_quick_play": {
"message": "只能在 Minecraft Alpha 1.0.5 及以后的版本中快速进入服务器"
"message": "只能在 Minecraft Alpha 1.0.5 及以版本中直接进入服务器"
},
"instance.worlds.no_singleplayer_quick_play": {
"message": "只能在 Minecraft 1.20 及以后的版本中快速进入单人游戏世界"
"message": "只能在 Minecraft 1.20 及以版本中直接进入单人世界"
},
"instance.worlds.play_instance": {
"message": "游玩实例"
@@ -516,10 +507,10 @@
"message": "单人游戏"
},
"instance.worlds.view_instance": {
"message": "查看实例"
"message": "预览实例"
},
"instance.worlds.world_in_use": {
"message": "世界用中"
"message": "世界正在使用中"
},
"search.filter.locked.instance": {
"message": "由该实例提供"

View File

@@ -1,15 +1,9 @@
{
"app.auth-servers.unreachable.body": {
"message": "Minecraft 驗證伺服器現在可能無法使用。請檢查你的網路連線,並稍後再試。"
},
"app.auth-servers.unreachable.header": {
"message": "無法連線到驗證伺服器"
},
"app.settings.developer-mode-enabled": {
"message": "開發人員模式已啟用。"
},
"app.settings.downloading": {
"message": "正在下載 v{version}"
"message": "下載 v{version}"
},
"app.settings.tabs.appearance": {
"message": "外觀"
@@ -23,9 +17,6 @@
"app.settings.tabs.java-installations": {
"message": "Java 安裝"
},
"app.settings.tabs.language": {
"message": "語言"
},
"app.settings.tabs.privacy": {
"message": "隱私"
},
@@ -96,7 +87,7 @@
"message": "你好友的 Modrinth 使用者名稱是什麼?"
},
"friends.add-friends-to-share": {
"message": "<link>新增好友</link>即可查看他們正在玩什麼!"
"message": "<link>新增好友</link>即可查看對方正在玩什麼!"
},
"friends.friend.cancel-request": {
"message": "取消請求"
@@ -105,7 +96,7 @@
"message": "移除好友"
},
"friends.friend.request-sent": {
"message": "已送出好友請求"
"message": "好友請求已送出"
},
"friends.friend.view-profile": {
"message": "查看個人檔案"
@@ -135,7 +126,7 @@
"message": "{title} - {count}"
},
"friends.sign-in-to-add-friends": {
"message": "<link>登入 Modrinth 帳號</link>即可新增好友並查看他們正在玩什麼!"
"message": "<link>登入 Modrinth 帳號</link>即可新增好友並查看對方正在玩什麼!"
},
"instance.add-server.add-and-play": {
"message": "新增並遊玩"
@@ -231,13 +222,13 @@
"message": "選擇圖示"
},
"instance.settings.tabs.general.library-groups": {
"message": "實例庫群組"
"message": "遊戲庫群組"
},
"instance.settings.tabs.general.library-groups.create": {
"message": "建立新的群組"
},
"instance.settings.tabs.general.library-groups.description": {
"message": "實例庫群組讓你可以將實例整理到實例庫中的不同分類。"
"message": "遊戲庫群組讓你可以將實例整理到遊戲庫中的不同分類。"
},
"instance.settings.tabs.general.library-groups.enter-name": {
"message": "輸入群組名稱"
@@ -378,7 +369,7 @@
"message": "修復進行中"
},
"instance.settings.tabs.installation.reset-selections": {
"message": "重設為目前版本"
"message": "重設為目前"
},
"instance.settings.tabs.installation.show-all-versions": {
"message": "顯示所有版本"
@@ -504,7 +495,7 @@
"message": "你只能在 Minecraft Alpha 1.0.5 以上版本直接加入伺服器"
},
"instance.worlds.no_singleplayer_quick_play": {
"message": "你只能在 Minecraft 1.20 以上版本直接進入單人遊戲世界"
"message": "你只能在 Minecraft 1.20 以上版本直接加入伺服器"
},
"instance.worlds.play_instance": {
"message": "遊戲實例"

View File

@@ -3,14 +3,31 @@ import 'floating-vue/dist/style.css'
import * as Sentry from '@sentry/vue'
import { VueScanPlugin } from '@taijased/vue-render-tracker'
import { VueQueryPlugin } from '@tanstack/vue-query'
import { createPlugin } from '@vintl/vintl/plugin'
import FloatingVue from 'floating-vue'
import { createPinia } from 'pinia'
import { createApp } from 'vue'
import App from '@/App.vue'
import i18nPlugin from '@/plugins/i18n'
import router from '@/routes'
const VIntlPlugin = createPlugin({
controllerOpts: {
defaultLocale: 'en-US',
locale: 'en-US',
locales: [
{
tag: 'en-US',
meta: {
displayName: 'American English',
},
},
],
},
globalMixin: true,
injectInto: [],
})
const vueScan = new VueScanPlugin({
enabled: false, // Enable or disable the tracker
showOverlay: true, // Show overlay to visualize renders
@@ -43,6 +60,6 @@ app.use(FloatingVue, {
},
},
})
app.use(i18nPlugin)
app.use(VIntlPlugin)
app.mount('#app')

View File

@@ -4,7 +4,6 @@ import type { Category, GameVersion, Platform, ProjectType, SortType, Tags } fro
import {
Button,
Checkbox,
defineMessages,
DropdownSelect,
injectNotificationManager,
LoadingIndicator,
@@ -12,9 +11,9 @@ import {
SearchFilterControl,
SearchSidebarFilter,
useSearch,
useVIntl,
} from '@modrinth/ui'
import { openUrl } from '@tauri-apps/plugin-opener'
import { defineMessages, useVIntl } from '@vintl/vintl'
import type { Ref } from 'vue'
import { computed, nextTick, ref, shallowRef, watch } from 'vue'
import type { LocationQuery } from 'vue-router'

View File

@@ -274,18 +274,17 @@ import {
Button,
ButtonStyled,
ContentListPanel,
defineMessages,
injectNotificationManager,
OverflowMenu,
Pagination,
RadialHeader,
Toggle,
useVIntl,
} from '@modrinth/ui'
import type { ContentItem } from '@modrinth/ui/src/components/content/ContentListItem.vue'
import type { Organization, Project, TeamMember, Version } from '@modrinth/utils'
import { formatProjectType } from '@modrinth/utils'
import { getCurrentWebview } from '@tauri-apps/api/webview'
import { defineMessages, useVIntl } from '@vintl/vintl'
import { useStorage } from '@vueuse/core'
import dayjs from 'dayjs'
import type { ComputedRef } from 'vue'

View File

@@ -125,7 +125,6 @@ import { PlusIcon, SearchIcon, SpinnerIcon, UpdatedIcon, XIcon } from '@modrinth
import {
Button,
ButtonStyled,
defineMessages,
FilterBar,
type FilterBarOption,
GAME_MODES,
@@ -134,7 +133,7 @@ import {
RadialHeader,
} from '@modrinth/ui'
import type { Version } from '@modrinth/utils'
import { platform } from '@tauri-apps/plugin-os'
import { defineMessages } from '@vintl/vintl'
import { computed, onUnmounted, ref, watch } from 'vue'
import { useRoute } from 'vue-router'
@@ -215,11 +214,6 @@ const worldPlaying = ref<World>()
const worlds = ref<World[]>([])
const serverData = ref<Record<string, ServerData>>({})
// Track servers_updated calls on Linux to prevent server ping spam
const MAX_LINUX_REFRESHES = 3
const isLinux = platform() === 'linux'
const linuxRefreshCount = ref(0)
const protocolVersion = ref<ProtocolVersion | null>(
await get_profile_protocol_version(instance.value.path),
)
@@ -230,9 +224,6 @@ const unlistenProfile = await profile_listener(async (e: ProfileEvent) => {
console.info(`Handling profile event '${e.event}' for profile: ${e.profile_path_id}`)
if (e.event === 'servers_updated') {
if (isLinux && linuxRefreshCount.value >= MAX_LINUX_REFRESHES) return
if (isLinux) linuxRefreshCount.value++
await refreshAllWorlds()
}

View File

@@ -1,23 +0,0 @@
import { I18N_INJECTION_KEY, type I18nContext } from '@modrinth/ui'
import type { App } from 'vue'
import i18n from '@/i18n.config'
export default {
install(app: App) {
// Install vue-i18n as before
app.use(i18n)
// Wrap it in our I18nContext interface
const context: I18nContext = {
locale: i18n.global.locale,
t: (key, values) => i18n.global.t(key, values ?? {}) as string,
setLocale: (newLocale) => {
i18n.global.locale.value = newLocale
},
}
// Provide the context at app-level
app.provide(I18N_INJECTION_KEY, context)
},
}

View File

@@ -29,7 +29,7 @@ export default new createRouter({
},
},
{
path: '/hosting/manage/',
path: '/servers/manage/',
name: 'Servers',
component: ServersManagePageIndex,
meta: {

View File

@@ -1,4 +1,3 @@
import preset from '@modrinth/tooling-config/tailwind/tailwind-preset.ts'
import type { Config } from 'tailwindcss'
const config: Config = {
@@ -11,9 +10,246 @@ const config: Config = {
'./src/error.vue',
// monorepo - TODO: migrate this to its own package
'../../packages/**/*.{js,vue,ts}',
'!../../packages/**/node_modules/**',
],
presets: [preset],
theme: {
extend: {
colors: {
surface: {
1: 'var(--surface-1)',
2: 'var(--surface-2)',
3: 'var(--surface-3)',
4: 'var(--surface-4)',
5: 'var(--surface-5)',
},
/// TODO: Clean up these aliases within codebase to use default, primary, tertiary.
// text-default
primary: 'var(--color-text-default)',
// text-primary
contrast: 'var(--color-text-primary)',
// text-tertiary
secondary: 'var(--color-text-tertiary)',
red: {
DEFAULT: 'var(--color-red)',
50: 'var(--color-red-50)',
100: 'var(--color-red-100)',
200: 'var(--color-red-200)',
300: 'var(--color-red-300)',
400: 'var(--color-red-400)',
500: 'var(--color-red-500)',
600: 'var(--color-red-600)',
700: 'var(--color-red-700)',
800: 'var(--color-red-800)',
900: 'var(--color-red-900)',
950: 'var(--color-red-950)',
},
orange: {
DEFAULT: 'var(--color-orange)',
50: 'var(--color-orange-50)',
100: 'var(--color-orange-100)',
200: 'var(--color-orange-200)',
300: 'var(--color-orange-300)',
400: 'var(--color-orange-400)',
500: 'var(--color-orange-500)',
600: 'var(--color-orange-600)',
700: 'var(--color-orange-700)',
800: 'var(--color-orange-800)',
900: 'var(--color-orange-900)',
950: 'var(--color-orange-950)',
},
green: {
DEFAULT: 'var(--color-green)',
50: 'var(--color-green-50)',
100: 'var(--color-green-100)',
200: 'var(--color-green-200)',
300: 'var(--color-green-300)',
400: 'var(--color-green-400)',
500: 'var(--color-green-500)',
600: 'var(--color-green-600)',
700: 'var(--color-green-700)',
800: 'var(--color-green-800)',
900: 'var(--color-green-900)',
950: 'var(--color-green-950)',
},
blue: {
DEFAULT: 'var(--color-blue)',
50: 'var(--color-blue-50)',
100: 'var(--color-blue-100)',
200: 'var(--color-blue-200)',
300: 'var(--color-blue-300)',
400: 'var(--color-blue-400)',
500: 'var(--color-blue-500)',
600: 'var(--color-blue-600)',
700: 'var(--color-blue-700)',
800: 'var(--color-blue-800)',
900: 'var(--color-blue-900)',
950: 'var(--color-blue-950)',
},
purple: {
DEFAULT: 'var(--color-purple)',
50: 'var(--color-purple-50)',
100: 'var(--color-purple-100)',
200: 'var(--color-purple-200)',
300: 'var(--color-purple-300)',
400: 'var(--color-purple-400)',
500: 'var(--color-purple-500)',
600: 'var(--color-purple-600)',
700: 'var(--color-purple-700)',
800: 'var(--color-purple-800)',
900: 'var(--color-purple-900)',
950: 'var(--color-purple-950)',
},
gray: {
DEFAULT: 'var(--color-gray)',
50: 'var(--color-gray-50)',
100: 'var(--color-gray-100)',
200: 'var(--color-gray-200)',
300: 'var(--color-gray-300)',
400: 'var(--color-gray-400)',
500: 'var(--color-gray-500)',
600: 'var(--color-gray-600)',
700: 'var(--color-gray-700)',
800: 'var(--color-gray-800)',
900: 'var(--color-gray-900)',
950: 'var(--color-gray-950)',
},
/// === LEGACY ===
icon: 'var(--color-base)',
// Text
inactive: 'var(--color-text-inactive)',
dark: 'var(--color-text-dark)',
inverted: 'var(--color-text-inverted)',
heading: 'var(--color-heading)',
bg: {
DEFAULT: 'var(--color-bg)',
red: 'var(--color-red-bg)',
orange: 'var(--color-orange-bg)',
green: 'var(--color-green-bg)',
blue: 'var(--color-blue-bg)',
purple: 'var(--color-purple-bg)',
raised: 'var(--color-raised-bg)',
},
highlight: {
DEFAULT: 'var(--color-brand-highlight)',
red: 'var(--color-red-highlight)',
orange: 'var(--color-orange-highlight)',
green: 'var(--color-green-highlight)',
blue: 'var(--color-blue-highlight)',
purple: 'var(--color-purple-highlight)',
gray: 'var(--color-gray-highlight)',
},
divider: {
DEFAULT: 'var(--color-divider)',
dark: 'var(--color-divider-dark)',
},
brand: {
DEFAULT: 'var(--color-brand)',
red: 'var(--color-red)',
orange: 'var(--color-orange)',
green: 'var(--color-green)',
blue: 'var(--color-blue)',
purple: 'var(--color-purple)',
highlight: 'var(--color-brand-highlight)',
shadow: 'var(--color-brand-shadow)',
inverted: 'var(--color-accent-contrast)',
},
tabUnderlineHovered: 'var(--tab-underline-hovered)',
button: {
bg: 'var(--color-button-bg)',
text: 'var(--color-button-text)',
bgHover: 'var(--color-button-bg-hover)',
textHover: 'var(--color-button-text-hover)',
bgActive: 'var(--color-button-bg-active)',
textActive: 'var(--color-button-text-active)',
border: 'var(--color-button-border)',
bgSelected: 'var(--color-button-bg-selected)',
textSelected: 'var(--color-button-text-selected)',
},
toggleHandle: 'var(--color-toggle-handle)',
dropdown: {
bg: 'var(--color-dropdown-bg)',
text: 'var(--color-dropdown-text)',
},
tooltip: {
bg: 'var(--color-tooltip-bg)',
text: 'var(--color-tooltip-text)',
},
code: {
bg: 'var(--color-code-bg)',
text: 'var(--color-code-text)',
},
kbdShadow: 'var(--color-kbd-shadow)',
ad: {
DEFAULT: 'var(--color-ad)',
raised: 'var(--color-ad-raised)',
contrast: 'var(--color-ad-contrast)',
highlight: 'var(--color-ad-highlight)',
},
greyLink: {
DEFAULT: 'var(--color-grey-link)',
hover: 'var(--color-grey-link-hover)',
active: 'var(--color-grey-link-active)',
},
link: {
DEFAULT: 'var(--color-link)',
hover: 'var(--color-link-hover)',
active: 'var(--color-link-active)',
},
warning: {
bg: 'var(--color-warning-bg)',
text: 'var(--color-warning-text)',
banner: {
text: 'var(--color-warning-banner-text)',
bg: 'var(--color-warning-banner-bg)',
side: 'var(--color-warning-banner-side)',
},
},
infoBanner: {
text: 'var(--color-info-banner-text)',
bg: 'var(--color-info-banner-bg)',
side: 'var(--color-info-banner-side)',
},
blockQuote: 'var(--color-block-quote)',
headerUnderline: 'var(--color-header-underline)',
hr: 'var(--color-hr)',
table: {
border: 'var(--color-table-border)',
alternateRow: ' var(--color-table-alternate-row)',
},
},
backgroundImage: {
mazeBg: 'var(--landing-maze-bg)',
mazeGradientBg: 'var(--landing-maze-gradient-bg)',
// @ts-ignore
landing: {
mazeOuterBg: 'var(--landing-maze-outer-bg)',
colorHeading: 'var(--landing-color-heading)',
colorSubheading: 'var(--landing-color-subheading)',
transitionGradientStart: 'var(--landing-transition-gradient-start)',
transitionGradientEnd: 'var(--landing-transition-gradient-end)',
hoverCardGradient: 'var(--landing-hover-card-gradient)',
borderGradient: 'var(--landing-border-gradient)',
borderColor: 'var(--landing-border-color)',
creatorGradient: 'var(--landing-creator-gradient)',
blobGradient: 'var(--landing-blob-gradient)',
cardBg: 'var(--landing-card-bg)',
blueLabel: 'var(--landing-blue-label)',
blueLabelBg: 'var(--landing-blue-label-bg)',
greenLabel: 'var(--landing-green-label)',
greenLabelBg: 'var(--landing-green-label-bg)',
rawBg: 'var(--landing-raw-bg)',
},
},
},
},
plugins: [],
corePlugins: {
preflight: false,
},
}
export default config

View File

@@ -9,14 +9,6 @@ const projectRootDir = resolve(__dirname)
// https://vitejs.dev/config/
export default defineConfig({
css: {
preprocessorOptions: {
scss: {
// TODO: dont forget about this
silenceDeprecations: ['import'],
},
},
},
resolve: {
alias: [
{

View File

@@ -1,9 +0,0 @@
# Copying
The source code of Modrinth App is licensed under the GNU General Public License, Version 3 only, which is provided in the file [LICENSE](./LICENSE). However, some files listed below are licensed under a different license.
## Modrinth logo
The use of Modrinth branding elements, including but not limited to the wrench-in-labyrinth logo, the landing image, and any variations thereof, is strictly prohibited without explicit written permission from Rinth, Inc. This includes trademarks, logos, or other branding elements.
> All rights reserved. © 2020-2025 Rinth, Inc.

View File

@@ -228,6 +228,7 @@ fn main() {
"utils",
InlinedPlugin::new()
.commands(&[
"init_authlib_patching",
"apply_migration_fix",
"init_update_launcher",
"get_os",

View File

@@ -21,7 +21,7 @@ pub fn init<R: Runtime>() -> TauriPlugin<R> {
.build()
}
/// This code is modified by AstralRinth
/// ### AR • Feature
/// Create new offline user
#[tauri::command]
pub async fn offline_login(name: &str) -> Result<Credentials> {
@@ -29,7 +29,7 @@ pub async fn offline_login(name: &str) -> Result<Credentials> {
Ok(credentials)
}
/// This code is modified by AstralRinth
/// ### AR • Feature
/// Create new Ely.by user
#[tauri::command]
pub async fn elyby_login(
@@ -41,7 +41,7 @@ pub async fn elyby_login(
Ok(credentials)
}
/// This code is modified by AstralRinth
/// ### AR • Feature
/// Authenticate Ely.by user
#[tauri::command]
pub async fn elyby_auth_authenticate(

View File

@@ -16,6 +16,7 @@ use url::Url;
pub fn init<R: Runtime>() -> tauri::plugin::TauriPlugin<R> {
tauri::plugin::Builder::new("utils")
.invoke_handler(tauri::generate_handler![
init_authlib_patching,
apply_migration_fix,
init_update_launcher,
get_os,
@@ -30,14 +31,25 @@ pub fn init<R: Runtime>() -> tauri::plugin::TauriPlugin<R> {
.build()
}
// This code is modified by AstralRinth
/// [AR] Feature. Ely.by
#[tauri::command]
pub async fn init_authlib_patching(
minecraft_version: &str,
is_mojang: bool,
) -> Result<bool> {
let result =
utils::init_authlib_patching(minecraft_version, is_mojang).await?;
Ok(result)
}
/// [AR] Migration. Patch
#[tauri::command]
pub async fn apply_migration_fix(eol: &str) -> Result<bool> {
let result = utils::apply_migration_fix(eol).await?;
Ok(result)
}
// This code is modified by AstralRinth
/// [AR] Feature. Updater
#[tauri::command]
pub async fn init_update_launcher(
download_url: &str,
@@ -121,24 +133,19 @@ pub fn highlight_in_folder<R: Runtime>(
}
#[tauri::command]
pub async fn open_path<R: Runtime>(app: tauri::AppHandle<R>, path: PathBuf) {
tauri::async_runtime::spawn_blocking(move || {
if let Err(e) =
app.opener().open_path(path.to_string_lossy(), None::<&str>)
{
tracing::error!("Failed to open path: {}", e);
}
})
.await
.ok();
pub fn open_path<R: Runtime>(app: tauri::AppHandle<R>, path: PathBuf) {
if let Err(e) = app.opener().open_path(path.to_string_lossy(), None::<&str>)
{
tracing::error!("Failed to open path: {}", e);
}
}
#[tauri::command]
pub async fn show_launcher_logs_folder<R: Runtime>(app: tauri::AppHandle<R>) {
pub fn show_launcher_logs_folder<R: Runtime>(app: tauri::AppHandle<R>) {
let path = DirectoryInfo::launcher_logs_dir().unwrap_or_default();
// failure to get folder just opens filesystem
// (ie: if in debug mode only and launcher_logs never created)
open_path(app, path).await;
open_path(app, path);
}
// Get opening command

View File

@@ -8,7 +8,7 @@ use tauri_plugin_http::reqwest::ClientBuilder;
use tauri_plugin_updater::Error;
use tauri_plugin_updater::Update;
use theseus::{
LoadingBarType, emit_loading, init_loading, launcher_user_agent,
LAUNCHER_USER_AGENT, LoadingBarType, emit_loading, init_loading,
};
use tokio::time::Instant;
@@ -31,7 +31,7 @@ pub async fn get_update_size<R: Runtime>(
);
}
let mut request = ClientBuilder::new().user_agent(launcher_user_agent());
let mut request = ClientBuilder::new().user_agent(LAUNCHER_USER_AGENT);
if let Some(timeout) = update.timeout {
request = request.timeout(timeout);
}

View File

@@ -48,7 +48,7 @@
]
},
"productName": "AstralRinth App",
"version": "0.10.2701",
"version": "0.10.2101",
"mainBinaryName": "AstralRinth App",
"identifier": "AstralRinthApp",
"plugins": {

View File

@@ -1,15 +0,0 @@
# Copying
The source code of Modrinth's web frontend is licensed under the Creative Commons CC0 License, which is provided in the file [LICENSE](./LICENSE). However, some files listed below are licensed under a different license.
## Modrinth logo
The use of Modrinth branding elements, including but not limited to the wrench-in-labyrinth logo, the landing image, and any variations thereof, is strictly prohibited without explicit written permission from Rinth, Inc. This includes trademarks, logos, or other branding elements.
> All rights reserved. © 2020-2025 Rinth, Inc.
This includes, but may not be limited to, the following files:
- src/assets/dark-logo.svg
- src/assets/light-logo.svg
- src/public/favicon.ico

Some files were not shown because too many files have changed in this diff Show More