You've already forked AstralRinth
fix: i18n string problems (#6131)
* fix: apply non-json i18n fixes * fix: pruning * fix: prepr * fix: run.mjs * fix: lint
This commit is contained in:
@@ -182,15 +182,10 @@ const messages = defineMessages({
|
||||
id: 'billing.resubscribe-modal.resubscribe',
|
||||
defaultMessage: 'Resubscribe',
|
||||
},
|
||||
intervalMonthly: { id: 'billing.resubscribe-modal.interval.monthly', defaultMessage: '/month' },
|
||||
intervalQuarterly: {
|
||||
id: 'billing.resubscribe-modal.interval.quarterly',
|
||||
defaultMessage: '/quarter',
|
||||
},
|
||||
intervalYearly: { id: 'billing.resubscribe-modal.interval.yearly', defaultMessage: '/year' },
|
||||
intervalFiveDays: {
|
||||
id: 'billing.resubscribe-modal.interval.five-days',
|
||||
defaultMessage: '/5 days',
|
||||
interval: {
|
||||
id: 'billing.resubscribe-modal.interval',
|
||||
defaultMessage:
|
||||
'{intervalOption, select, fiveDays {/5 days} monthly {/month} quarterly {/quarter} yearly {/year} other {{interval}}}',
|
||||
},
|
||||
errorTitle: { id: 'billing.resubscribe-modal.error.title', defaultMessage: 'Error' },
|
||||
errorText: {
|
||||
@@ -202,18 +197,13 @@ const messages = defineMessages({
|
||||
const canResubscribe = computed(() => !!modalData.value?.subscriptionId)
|
||||
|
||||
const intervalLabel = computed(() => {
|
||||
switch (modalData.value?.interval) {
|
||||
case 'monthly':
|
||||
return formatMessage(messages.intervalMonthly)
|
||||
case 'quarterly':
|
||||
return formatMessage(messages.intervalQuarterly)
|
||||
case 'yearly':
|
||||
return formatMessage(messages.intervalYearly)
|
||||
case 'five-days':
|
||||
return formatMessage(messages.intervalFiveDays)
|
||||
default:
|
||||
return null
|
||||
}
|
||||
const { interval } = modalData.value ?? {}
|
||||
if (!interval) return null
|
||||
|
||||
return formatMessage(messages.interval, {
|
||||
interval,
|
||||
intervalOption: interval === 'five-days' ? 'fiveDays' : interval,
|
||||
})
|
||||
})
|
||||
|
||||
const formattedPrice = computed(() => {
|
||||
|
||||
@@ -81,6 +81,11 @@ const messages = defineMessages({
|
||||
id: 'servers.purchase.step.plan.your-current-plan',
|
||||
defaultMessage: 'Your current plan',
|
||||
},
|
||||
billedInterval: {
|
||||
id: 'servers.purchase.step.plan.billed',
|
||||
defaultMessage:
|
||||
'billed {interval, select, monthly {monthly} quarterly {quarterly} yearly {yearly} other {{interval}}}',
|
||||
},
|
||||
})
|
||||
|
||||
const isSameAsExistingPlan = computed(() => {
|
||||
@@ -203,7 +208,8 @@ function selectCustom() {
|
||||
</span>
|
||||
<span class="text-sm">
|
||||
/ month<template v-if="selectedInterval !== 'monthly'"
|
||||
>, billed {{ selectedInterval }}</template
|
||||
>,
|
||||
{{ formatMessage(messages.billedInterval, { interval: selectedInterval }) }}</template
|
||||
>
|
||||
</span>
|
||||
</div>
|
||||
@@ -263,7 +269,10 @@ function selectCustom() {
|
||||
</span>
|
||||
<span class="text-sm">
|
||||
/ month<template v-if="selectedInterval !== 'monthly'"
|
||||
>, billed {{ selectedInterval }}</template
|
||||
>,
|
||||
{{
|
||||
formatMessage(messages.billedInterval, { interval: selectedInterval })
|
||||
}}</template
|
||||
>
|
||||
</span>
|
||||
</div>
|
||||
@@ -310,7 +319,8 @@ function selectCustom() {
|
||||
</span>
|
||||
<span class="text-sm">
|
||||
/ month<template v-if="selectedInterval !== 'monthly'"
|
||||
>, billed {{ selectedInterval }}</template
|
||||
>,
|
||||
{{ formatMessage(messages.billedInterval, { interval: selectedInterval }) }}</template
|
||||
>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
@@ -182,6 +182,11 @@ const messages = defineMessages({
|
||||
id: 'servers.region.custom.prompt-ram-only',
|
||||
defaultMessage: `RAM`,
|
||||
},
|
||||
billedInterval: {
|
||||
id: 'servers.purchase.step.plan.billed',
|
||||
defaultMessage:
|
||||
'billed {interval, select, monthly {monthly} quarterly {quarterly} yearly {yearly} other {{interval}}}',
|
||||
},
|
||||
})
|
||||
|
||||
async function updateStock() {
|
||||
@@ -299,7 +304,9 @@ onMounted(() => {
|
||||
<p v-if="selectedPrice" class="mt-2 mb-0">
|
||||
<span class="text-contrast text-lg font-bold"
|
||||
>{{ formatPrice(selectedPrice, currency, true) }} / month</span
|
||||
><span v-if="interval !== 'monthly'">, billed {{ interval }}</span>
|
||||
><span v-if="interval !== 'monthly'"
|
||||
>, {{ formatMessage(messages.billedInterval, { interval }) }}</span
|
||||
>
|
||||
</p>
|
||||
<div class="bg-bg rounded-xl p-4 mt-2 text-secondary h-14">
|
||||
<div v-if="checkingCustomStock" class="flex gap-2 items-center">
|
||||
|
||||
@@ -296,7 +296,7 @@ const messages = defineMessages({
|
||||
},
|
||||
subscriptionCancelledOnDate: {
|
||||
id: 'servers.listing.notice.subscription-cancelled-on-date',
|
||||
defaultMessage: 'Your subscription was cancelled on <date>{formattedDate}</date>. ',
|
||||
defaultMessage: 'Your subscription was cancelled on <date>{formattedDate}</date>.',
|
||||
},
|
||||
subscriptionCancelledPaymentFailed: {
|
||||
id: 'servers.listing.notice.subscription-cancelled-payment-failed',
|
||||
@@ -310,7 +310,7 @@ const messages = defineMessages({
|
||||
filesKeptForDownload: {
|
||||
id: 'servers.listing.notice.files-kept-for-download',
|
||||
defaultMessage:
|
||||
'Your files will be kept for <days-remaining>{daysRemaining} more {daysRemaining, plural, one {day} other {days} }</days-remaining>. Contact support to download the files before they are deleted. ',
|
||||
'Your files will be kept for <days-remaining>{daysRemaining} more {daysRemaining, plural, one {day} other {days}}</days-remaining>. Contact support to download the files before they are deleted.',
|
||||
},
|
||||
subscriptionSetToCancel: {
|
||||
id: 'servers.listing.notice.subscription-set-to-cancel',
|
||||
@@ -326,7 +326,7 @@ const messages = defineMessages({
|
||||
},
|
||||
moderatedNotice: {
|
||||
id: 'servers.listing.notice.moderated',
|
||||
defaultMessage: 'Your server has been suspended by moderation action. ',
|
||||
defaultMessage: 'Your server has been suspended by moderation action.',
|
||||
},
|
||||
suspendedNotice: {
|
||||
id: 'servers.listing.notice.suspended',
|
||||
@@ -364,7 +364,7 @@ const messages = defineMessages({
|
||||
pendingChangeNotice: {
|
||||
id: 'servers.listing.notice.pending-change',
|
||||
defaultMessage:
|
||||
'Your server will {verb} to the {planSize} Plan on <date>{formattedDate}</date>. ',
|
||||
'Your server will {verb, select, downgrade {downgrade} other {upgrade}} to the {planSize} Plan on <date>{formattedDate}</date>.',
|
||||
},
|
||||
})
|
||||
|
||||
|
||||
@@ -212,7 +212,7 @@ const messages = defineMessages({
|
||||
},
|
||||
oneClickModInstallsDescription: {
|
||||
id: 'servers.list-empty.one-click-mod-installs-description',
|
||||
defaultMessage: 'Pick your favourite mods and we handle the rest.',
|
||||
defaultMessage: 'Pick your favorite mods and we handle the rest.',
|
||||
},
|
||||
simpleSetupTitle: {
|
||||
id: 'servers.list-empty.simple-setup-title',
|
||||
|
||||
@@ -14,7 +14,7 @@ import ProjectCardList from '#ui/components/project/ProjectCardList.vue'
|
||||
import SearchFilterControl from '#ui/components/search/SearchFilterControl.vue'
|
||||
import { defineMessages, useVIntl } from '#ui/composables/i18n'
|
||||
import { useStickyObserver } from '#ui/composables/sticky-observer'
|
||||
import { commonMessages } from '#ui/utils/common-messages'
|
||||
import { commonMessages, formatProjectTypeSentence } from '#ui/utils/common-messages'
|
||||
import type { SortType } from '#ui/utils/search'
|
||||
|
||||
import SelectedProjectsFloatingBar from './components/SelectedProjectsFloatingBar.vue'
|
||||
@@ -47,8 +47,7 @@ const maxResultsOptions = computed<ComboboxOption<number>[]>(() =>
|
||||
const messages = defineMessages({
|
||||
searchPlaceholder: {
|
||||
id: 'browse.search.placeholder',
|
||||
defaultMessage:
|
||||
'Search {projectType, select, mod {mods} modpack {modpacks} resourcepack {resource packs} shader {shaders} plugin {plugins} datapack {datapacks} server {servers} other {projects}}...',
|
||||
defaultMessage: 'Search {projectType}...',
|
||||
},
|
||||
viewPrefix: {
|
||||
id: 'browse.view-prefix',
|
||||
@@ -88,7 +87,11 @@ const messages = defineMessages({
|
||||
:icon="SearchIcon"
|
||||
type="text"
|
||||
autocomplete="off"
|
||||
:placeholder="formatMessage(messages.searchPlaceholder, { projectType: ctx.projectType.value })"
|
||||
:placeholder="
|
||||
formatMessage(messages.searchPlaceholder, {
|
||||
projectType: formatProjectTypeSentence(formatMessage, ctx.projectType.value, 2),
|
||||
})
|
||||
"
|
||||
clearable
|
||||
wrapper-class="w-full"
|
||||
:input-class="ctx.variant === 'web' ? '!h-12' : 'h-12'"
|
||||
|
||||
@@ -6,7 +6,7 @@ import Avatar from '#ui/components/base/Avatar.vue'
|
||||
import ButtonStyled from '#ui/components/base/ButtonStyled.vue'
|
||||
import FloatingActionBar from '#ui/components/base/FloatingActionBar.vue'
|
||||
import { defineMessages, useVIntl } from '#ui/composables/i18n'
|
||||
import { commonMessages } from '#ui/utils/common-messages'
|
||||
import { commonMessages, formatContentTypeSentence } from '#ui/utils/common-messages'
|
||||
|
||||
import type { BulkOperationType } from '../composables/bulk-operations'
|
||||
import type { ContentItem } from '../types'
|
||||
@@ -16,7 +16,7 @@ const { formatMessage } = useVIntl()
|
||||
const messages = defineMessages({
|
||||
selectedCount: {
|
||||
id: 'content.selection-bar.selected-count',
|
||||
defaultMessage: '{count} {contentType} selected',
|
||||
defaultMessage: '{count, number} {contentType} selected',
|
||||
},
|
||||
selectedCountSimple: {
|
||||
id: 'content.selection-bar.selected-count-simple',
|
||||
@@ -116,7 +116,7 @@ const selectedCountText = computed(() => {
|
||||
if (props.contentTypeLabel) {
|
||||
return formatMessage(messages.selectedCount, {
|
||||
count,
|
||||
contentType: `${props.contentTypeLabel}${count === 1 ? '' : 's'}`,
|
||||
contentType: formatContentTypeSentence(formatMessage, props.contentTypeLabel, count),
|
||||
})
|
||||
}
|
||||
return formatMessage(messages.selectedCountSimple, { count })
|
||||
@@ -124,9 +124,6 @@ const selectedCountText = computed(() => {
|
||||
|
||||
const bulkProgressMessage = computed(() => {
|
||||
if (!props.bulkOperation) return ''
|
||||
const contentType = props.contentTypeLabel
|
||||
? `${props.contentTypeLabel}${props.bulkTotal === 1 ? '' : 's'}`
|
||||
: 'items'
|
||||
const messageMap = {
|
||||
enable: props.bulkWaiting ? messages.bulkEnablingWaiting : messages.bulkEnabling,
|
||||
disable: props.bulkWaiting ? messages.bulkDisablingWaiting : messages.bulkDisabling,
|
||||
@@ -136,7 +133,7 @@ const bulkProgressMessage = computed(() => {
|
||||
return formatMessage(messageMap[props.bulkOperation], {
|
||||
progress: props.bulkProgress,
|
||||
total: props.bulkTotal,
|
||||
contentType,
|
||||
contentType: formatContentTypeSentence(formatMessage, props.contentTypeLabel, props.bulkTotal),
|
||||
})
|
||||
})
|
||||
</script>
|
||||
|
||||
+14
-5
@@ -1,7 +1,11 @@
|
||||
<template>
|
||||
<NewModal
|
||||
ref="modal"
|
||||
:header="formatMessage(messages.header, { count, itemType })"
|
||||
:header="
|
||||
formatMessage(messages.header, {
|
||||
itemType: formatContentTypeSentence(formatMessage, itemType, count),
|
||||
})
|
||||
"
|
||||
:fade="variant === 'server' ? 'warning' : 'danger'"
|
||||
max-width="500px"
|
||||
:on-hide="() => backupCreator?.cancelBackup()"
|
||||
@@ -31,7 +35,12 @@
|
||||
<ButtonStyled :color="variant === 'server' ? 'orange' : 'red'">
|
||||
<button :disabled="buttonsDisabled" @click="confirm">
|
||||
<TrashIcon />
|
||||
{{ formatMessage(messages.deleteButton, { count, itemType }) }}
|
||||
{{
|
||||
formatMessage(messages.deleteButton, {
|
||||
count,
|
||||
itemType: formatContentTypeSentence(formatMessage, itemType, count),
|
||||
})
|
||||
}}
|
||||
</button>
|
||||
</ButtonStyled>
|
||||
</div>
|
||||
@@ -47,7 +56,7 @@ import Admonition from '#ui/components/base/Admonition.vue'
|
||||
import ButtonStyled from '#ui/components/base/ButtonStyled.vue'
|
||||
import NewModal from '#ui/components/modal/NewModal.vue'
|
||||
import { defineMessages, useVIntl } from '#ui/composables/i18n'
|
||||
import { commonMessages } from '#ui/utils/common-messages'
|
||||
import { commonMessages, formatContentTypeSentence } from '#ui/utils/common-messages'
|
||||
|
||||
import InlineBackupCreator from './InlineBackupCreator.vue'
|
||||
|
||||
@@ -56,7 +65,7 @@ const { formatMessage } = useVIntl()
|
||||
const messages = defineMessages({
|
||||
header: {
|
||||
id: 'content.confirm-deletion.header',
|
||||
defaultMessage: 'Delete {itemType}{count, plural, one {} other {s}}',
|
||||
defaultMessage: 'Delete {itemType}',
|
||||
},
|
||||
admonitionHeader: {
|
||||
id: 'content.confirm-deletion.admonition-header',
|
||||
@@ -69,7 +78,7 @@ const messages = defineMessages({
|
||||
},
|
||||
deleteButton: {
|
||||
id: 'content.confirm-deletion.delete-button',
|
||||
defaultMessage: 'Delete {count} {itemType}{count, plural, one {} other {s}}',
|
||||
defaultMessage: 'Delete {count, number} {itemType}',
|
||||
},
|
||||
})
|
||||
|
||||
|
||||
+23
-6
@@ -1,11 +1,15 @@
|
||||
<template>
|
||||
<NewModal
|
||||
ref="modal"
|
||||
:header="formatMessage(messages.header, { type: server ? 'server' : 'instance' })"
|
||||
:header="
|
||||
formatMessage(messages.header, {
|
||||
type: formatMessage(server ? messages.serverLabel : messages.instanceLabel),
|
||||
})
|
||||
"
|
||||
max-width="500px"
|
||||
>
|
||||
<span class="text-primary">
|
||||
{{ formatMessage(messages.body, { type: server ? 'server' : 'instance' }) }}
|
||||
{{ formatMessage(server ? messages.serverBody : messages.instanceBody) }}
|
||||
</span>
|
||||
|
||||
<template #actions>
|
||||
@@ -45,17 +49,30 @@ const { formatMessage } = useVIntl()
|
||||
const messages = defineMessages({
|
||||
header: {
|
||||
id: 'instance.confirm-repair.header',
|
||||
defaultMessage: 'Repair {type, select, server {server} other {instance}}',
|
||||
defaultMessage: 'Repair {type}',
|
||||
},
|
||||
body: {
|
||||
id: 'instance.confirm-repair.body',
|
||||
instanceBody: {
|
||||
id: 'instance.confirm-repair.body.instance',
|
||||
defaultMessage:
|
||||
'Repairing reinstalls the loader and Minecraft dependencies without deleting your content. This may resolve issues if your {type, select, server {server is not starting correctly} other {game is not launching due to launcher-related errors}}.',
|
||||
'Repairing reinstalls the loader and Minecraft dependencies without deleting your content. This may resolve issues if your game is not launching due to launcher-related errors.',
|
||||
},
|
||||
serverBody: {
|
||||
id: 'instance.confirm-repair.body.server',
|
||||
defaultMessage:
|
||||
'Repairing reinstalls the loader and Minecraft dependencies without deleting your content. This may resolve issues if your server is not starting correctly.',
|
||||
},
|
||||
repairButton: {
|
||||
id: 'instance.confirm-repair.repair-button',
|
||||
defaultMessage: 'Repair',
|
||||
},
|
||||
instanceLabel: {
|
||||
id: 'instance.confirm-repair.instance-label',
|
||||
defaultMessage: 'instance',
|
||||
},
|
||||
serverLabel: {
|
||||
id: 'instance.confirm-repair.server-label',
|
||||
defaultMessage: 'server',
|
||||
},
|
||||
})
|
||||
|
||||
const emit = defineEmits<{
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
<ButtonStyled color="orange">
|
||||
<button :disabled="buttonsDisabled" @click="confirm">
|
||||
<UnlinkIcon />
|
||||
{{ formatMessage(server ? messages.header : messages.unlinkButton) }}
|
||||
{{ formatMessage(messages.unlinkButton) }}
|
||||
</button>
|
||||
</ButtonStyled>
|
||||
</div>
|
||||
|
||||
+7
-1
@@ -49,7 +49,13 @@
|
||||
<span class="font-semibold text-contrast">
|
||||
{{ formatMessage(messages.instanceType) }}
|
||||
</span>
|
||||
<Chips v-model="tab" :items="tabs" :format-label="formatTabLabel" :never-empty="true" />
|
||||
<Chips
|
||||
v-model="tab"
|
||||
:items="tabs"
|
||||
:format-label="formatTabLabel"
|
||||
:never-empty="true"
|
||||
:capitalize="false"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="h-px bg-divider" />
|
||||
|
||||
+14
-2
@@ -1,7 +1,11 @@
|
||||
<template>
|
||||
<div class="flex flex-col gap-3">
|
||||
<span class="text-primary">
|
||||
{{ formatMessage(messages.warningBody, { type: backup.isServer ? 'server' : 'instance' }) }}
|
||||
{{
|
||||
formatMessage(messages.warningBody, {
|
||||
type: formatMessage(backup.isServer ? messages.worldLabel : messages.instanceLabel),
|
||||
})
|
||||
}}
|
||||
</span>
|
||||
|
||||
<div v-if="backup.available" class="flex items-center gap-2">
|
||||
@@ -88,7 +92,15 @@ const messages = defineMessages({
|
||||
warningBody: {
|
||||
id: 'content.inline-backup.warning-body',
|
||||
defaultMessage:
|
||||
'We recommend creating a backup before proceeding so you can restore your {type, select, server {world} other {instance}} if anything breaks.',
|
||||
'We recommend creating a backup before proceeding so you can restore your {type} if anything breaks.',
|
||||
},
|
||||
worldLabel: {
|
||||
id: 'content.inline-backup.world-label',
|
||||
defaultMessage: 'world',
|
||||
},
|
||||
instanceLabel: {
|
||||
id: 'content.inline-backup.instance-label',
|
||||
defaultMessage: 'instance',
|
||||
},
|
||||
createBackup: {
|
||||
id: 'content.inline-backup.create-backup',
|
||||
|
||||
@@ -26,7 +26,7 @@ import OverflowMenu from '#ui/components/base/OverflowMenu.vue'
|
||||
import StyledInput from '#ui/components/base/StyledInput.vue'
|
||||
import { useDebugLogger } from '#ui/composables/debug-logger'
|
||||
import { defineMessages, useVIntl } from '#ui/composables/i18n'
|
||||
import { commonMessages } from '#ui/utils/common-messages'
|
||||
import { commonMessages, formatContentTypeSentence } from '#ui/utils/common-messages'
|
||||
|
||||
import ContentCardTable from './components/ContentCardTable.vue'
|
||||
import ContentModpackCard from './components/ContentModpackCard.vue'
|
||||
@@ -73,7 +73,7 @@ const messages = defineMessages({
|
||||
},
|
||||
searchPlaceholder: {
|
||||
id: 'content.page-layout.search-placeholder',
|
||||
defaultMessage: 'Search {count} {contentType}...',
|
||||
defaultMessage: 'Search {count, number} {contentType}...',
|
||||
},
|
||||
browseContent: {
|
||||
id: 'content.page-layout.browse-content',
|
||||
@@ -562,7 +562,11 @@ const confirmUnlinkModal = ref<InstanceType<typeof ConfirmUnlinkModal>>()
|
||||
:placeholder="
|
||||
formatMessage(messages.searchPlaceholder, {
|
||||
count: tableItems.length,
|
||||
contentType: `${ctx.contentTypeLabel.value}${tableItems.length === 1 ? '' : 's'}`,
|
||||
contentType: formatContentTypeSentence(
|
||||
formatMessage,
|
||||
ctx.contentTypeLabel.value,
|
||||
tableItems.length,
|
||||
),
|
||||
})
|
||||
"
|
||||
/>
|
||||
@@ -717,7 +721,12 @@ const confirmUnlinkModal = ref<InstanceType<typeof ConfirmUnlinkModal>>()
|
||||
ctx.modpack.value
|
||||
? formatMessage(messages.emptyModpackHint)
|
||||
: formatMessage(messages.emptyHint, {
|
||||
contentType: `${ctx.contentTypeLabel.value}s`,
|
||||
contentType: formatContentTypeSentence(
|
||||
formatMessage,
|
||||
ctx.contentTypeLabel.value,
|
||||
2,
|
||||
'content',
|
||||
),
|
||||
})
|
||||
}}
|
||||
</template>
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
<template>
|
||||
<NewModal ref="modal" :header="formatMessage(messages.header, { type })" max-width="500px">
|
||||
<NewModal
|
||||
ref="modal"
|
||||
:header="
|
||||
formatMessage(messages.header, {
|
||||
type: formatFileItemType(formatMessage, type),
|
||||
})
|
||||
"
|
||||
max-width="500px"
|
||||
>
|
||||
<form class="space-y-6 md:min-w-[400px]" @submit.prevent="handleSubmit">
|
||||
<label class="flex flex-col gap-2">
|
||||
<span class="font-semibold text-contrast">{{
|
||||
@@ -29,7 +37,11 @@
|
||||
<ButtonStyled color="brand">
|
||||
<button :disabled="!!error && submitted" @click="handleSubmit">
|
||||
<PlusIcon class="h-5 w-5" />
|
||||
{{ formatMessage(messages.createButton, { type }) }}
|
||||
{{
|
||||
formatMessage(messages.createButton, {
|
||||
type: formatFileItemType(formatMessage, type),
|
||||
})
|
||||
}}
|
||||
</button>
|
||||
</ButtonStyled>
|
||||
</div>
|
||||
@@ -45,7 +57,7 @@ import ButtonStyled from '#ui/components/base/ButtonStyled.vue'
|
||||
import StyledInput from '#ui/components/base/StyledInput.vue'
|
||||
import NewModal from '#ui/components/modal/NewModal.vue'
|
||||
import { defineMessages, useVIntl } from '#ui/composables/i18n'
|
||||
import { commonMessages } from '#ui/utils/common-messages'
|
||||
import { commonMessages, formatFileItemType } from '#ui/utils/common-messages'
|
||||
|
||||
import { fileValidationMessages } from './file-validation-messages'
|
||||
|
||||
@@ -54,7 +66,7 @@ const { formatMessage } = useVIntl()
|
||||
const messages = defineMessages({
|
||||
header: {
|
||||
id: 'files.create-modal.header',
|
||||
defaultMessage: 'Create a {type, select, directory {folder} other {file}}',
|
||||
defaultMessage: 'Create a {type}',
|
||||
},
|
||||
placeholderFile: {
|
||||
id: 'files.create-modal.placeholder-file',
|
||||
@@ -66,7 +78,7 @@ const messages = defineMessages({
|
||||
},
|
||||
createButton: {
|
||||
id: 'files.create-modal.create-button',
|
||||
defaultMessage: 'Create {type, select, directory {folder} other {file}}',
|
||||
defaultMessage: 'Create {type}',
|
||||
},
|
||||
})
|
||||
|
||||
|
||||
@@ -2,7 +2,11 @@
|
||||
<NewModal ref="modal" fade="danger" :header="formatMessage(messages.header)" max-width="500px">
|
||||
<Admonition type="critical" class="md:min-w-[400px]">
|
||||
<template #header>{{ formatMessage(messages.deletingName, { name: item?.name }) }}</template>
|
||||
{{ formatMessage(messages.deleteWarning, { type: item?.type }) }}
|
||||
{{
|
||||
formatMessage(
|
||||
item?.type === 'directory' ? messages.deleteFolderWarning : messages.deleteFileWarning,
|
||||
)
|
||||
}}
|
||||
</Admonition>
|
||||
<template #actions>
|
||||
<div class="flex gap-2 justify-end">
|
||||
@@ -46,10 +50,14 @@ const messages = defineMessages({
|
||||
id: 'files.delete-modal.deleting-name',
|
||||
defaultMessage: 'Deleting "{name}"',
|
||||
},
|
||||
deleteWarning: {
|
||||
id: 'files.delete-modal.warning',
|
||||
deleteFileWarning: {
|
||||
id: 'files.delete-modal.warning.file',
|
||||
defaultMessage: 'This file will be permanently deleted. This action cannot be undone.',
|
||||
},
|
||||
deleteFolderWarning: {
|
||||
id: 'files.delete-modal.warning.folder',
|
||||
defaultMessage:
|
||||
'{type, select, directory {This folder and all its contents will be permanently deleted. This action cannot be undone.} other {This file will be permanently deleted. This action cannot be undone.}}',
|
||||
'This folder and all its contents will be permanently deleted. This action cannot be undone.',
|
||||
},
|
||||
})
|
||||
|
||||
|
||||
@@ -1,7 +1,11 @@
|
||||
<template>
|
||||
<NewModal
|
||||
ref="modal"
|
||||
:header="formatMessage(messages.header, { type: item?.type })"
|
||||
:header="
|
||||
formatMessage(messages.header, {
|
||||
type: formatFileItemType(formatMessage, item?.type),
|
||||
})
|
||||
"
|
||||
max-width="500px"
|
||||
>
|
||||
<form class="space-y-6 md:min-w-[400px]" @submit.prevent="handleSubmit">
|
||||
@@ -50,7 +54,7 @@ import ButtonStyled from '#ui/components/base/ButtonStyled.vue'
|
||||
import StyledInput from '#ui/components/base/StyledInput.vue'
|
||||
import NewModal from '#ui/components/modal/NewModal.vue'
|
||||
import { defineMessages, useVIntl } from '#ui/composables/i18n'
|
||||
import { commonMessages } from '#ui/utils/common-messages'
|
||||
import { commonMessages, formatFileItemType } from '#ui/utils/common-messages'
|
||||
|
||||
import type { FileItem } from '../../types'
|
||||
|
||||
@@ -59,7 +63,7 @@ const { formatMessage } = useVIntl()
|
||||
const messages = defineMessages({
|
||||
header: {
|
||||
id: 'files.move-modal.header',
|
||||
defaultMessage: '{type, select, directory {Move folder} other {Move file}}',
|
||||
defaultMessage: 'Move {type}',
|
||||
},
|
||||
currentLocation: {
|
||||
id: 'files.move-modal.current-location',
|
||||
|
||||
+16
-12
@@ -28,7 +28,7 @@
|
||||
<div
|
||||
v-for="(file, index) in files"
|
||||
:key="file"
|
||||
class="grid grid-cols-[auto_auto_1fr] items-center min-h-10 h-10 gap-2"
|
||||
class="grid grid-cols-[auto_minmax(0,1fr)] items-center min-h-10 h-10 gap-2"
|
||||
>
|
||||
<div class="flex flex-col items-center justify-between">
|
||||
<div class="w-[1px] h-2"></div>
|
||||
@@ -38,14 +38,17 @@
|
||||
class="w-[1px] h-2 relative top-1"
|
||||
></div>
|
||||
</div>
|
||||
<span class="text-sm shrink-0 whitespace-nowrap">{{
|
||||
formatMessage(messages.overwrittenLabel)
|
||||
}}</span>
|
||||
<span
|
||||
v-tooltip="file"
|
||||
class="text-sm text-contrast font-medium whitespace-nowrap overflow-hidden text-ellipsis"
|
||||
>
|
||||
{{ file }}
|
||||
<span class="flex min-w-0 text-sm whitespace-nowrap overflow-hidden">
|
||||
<IntlFormatted :message-id="messages.overwriteFileLabel" :values="{ path: file }">
|
||||
<template #file-path="{ children }">
|
||||
<span
|
||||
v-tooltip="file"
|
||||
class="min-w-0 text-contrast font-medium whitespace-nowrap overflow-hidden text-ellipsis"
|
||||
>
|
||||
<component :is="() => children" />
|
||||
</span>
|
||||
</template>
|
||||
</IntlFormatted>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
@@ -76,6 +79,7 @@ import { computed, ref } from 'vue'
|
||||
|
||||
import Admonition from '#ui/components/base/Admonition.vue'
|
||||
import ButtonStyled from '#ui/components/base/ButtonStyled.vue'
|
||||
import IntlFormatted from '#ui/components/base/IntlFormatted.vue'
|
||||
import NewModal from '#ui/components/modal/NewModal.vue'
|
||||
import { defineMessages, useVIntl } from '#ui/composables/i18n'
|
||||
import { commonMessages } from '#ui/utils/common-messages'
|
||||
@@ -105,9 +109,9 @@ const messages = defineMessages({
|
||||
id: 'files.conflict-modal.overwritten-count',
|
||||
defaultMessage: '{count} overwritten',
|
||||
},
|
||||
overwrittenLabel: {
|
||||
id: 'files.conflict-modal.overwritten-label',
|
||||
defaultMessage: 'Overwritten',
|
||||
overwriteFileLabel: {
|
||||
id: 'files.conflict-modal.overwrite-file-label',
|
||||
defaultMessage: 'Will overwrite <file-path>{path}</file-path>',
|
||||
},
|
||||
overwriteButton: {
|
||||
id: 'files.conflict-modal.overwrite-button',
|
||||
|
||||
+3
-2
@@ -18,7 +18,7 @@
|
||||
<p class="mt-2 text-xl">
|
||||
{{
|
||||
formatMessage(messages.dropToUpload, {
|
||||
type: type ? type.toLocaleLowerCase() : undefined,
|
||||
type: formatFileItemType(formatMessage, type?.toLocaleLowerCase(), true),
|
||||
})
|
||||
}}
|
||||
</p>
|
||||
@@ -32,6 +32,7 @@ import { UploadIcon } from '@modrinth/assets'
|
||||
import { ref } from 'vue'
|
||||
|
||||
import { defineMessages, useVIntl } from '#ui/composables/i18n'
|
||||
import { formatFileItemType } from '#ui/utils/common-messages'
|
||||
|
||||
const { formatMessage } = useVIntl()
|
||||
|
||||
@@ -47,7 +48,7 @@ defineProps<{
|
||||
const messages = defineMessages({
|
||||
dropToUpload: {
|
||||
id: 'files.upload.drag-and-drop.drop-to-upload',
|
||||
defaultMessage: 'Drop {type, select, undefined {files} other {{type}s}} here to upload',
|
||||
defaultMessage: 'Drop {type} here to upload',
|
||||
},
|
||||
})
|
||||
|
||||
|
||||
@@ -186,7 +186,7 @@ defineExpose({
|
||||
const messages = defineMessages({
|
||||
linkedInstanceTitle: {
|
||||
id: 'installation-settings.linked-instance.title',
|
||||
defaultMessage: 'Linked {projectType, select, server {server project} other {modpack}}',
|
||||
defaultMessage: 'Linked {projectType}',
|
||||
},
|
||||
reinstallModpackTitle: {
|
||||
id: 'installation-settings.reinstall-modpack.title',
|
||||
@@ -195,7 +195,7 @@ const messages = defineMessages({
|
||||
reinstallModpackDescription: {
|
||||
id: 'installation-settings.reinstall-modpack.description',
|
||||
defaultMessage:
|
||||
"Re-installing the modpack resets the {type, select, server {server's} other {instance's}} content to its original state, removing any mods or content you have added.",
|
||||
'Re-installing the modpack resets the {type} content to its original state, removing any mods or content you have added.',
|
||||
},
|
||||
editInstallationTitle: {
|
||||
id: 'installation-settings.edit-installation.title',
|
||||
@@ -204,7 +204,7 @@ const messages = defineMessages({
|
||||
unlinkDescription: {
|
||||
id: 'installation-settings.unlink.description',
|
||||
defaultMessage:
|
||||
"Unlinking permanently disconnects this {type, select, server {server} other {instance}} from the {projectType, select, server {server} other {modpack}} project, allowing you to change the loader and Minecraft version, but you won't receive future updates.",
|
||||
"Unlinking permanently disconnects this {type} from the {projectType} project, allowing you to change the loader and Minecraft version, but you won't receive future updates.",
|
||||
},
|
||||
repairInstanceTitle: {
|
||||
id: 'installation-settings.repair.instance-title',
|
||||
@@ -229,6 +229,30 @@ const messages = defineMessages({
|
||||
defaultMessage:
|
||||
"We don't recommend editing your installation settings after installing content. If you want to edit them, be cautious as it may cause issues.",
|
||||
},
|
||||
serverProjectLabel: {
|
||||
id: 'installation-settings.linked.server-project',
|
||||
defaultMessage: 'server project',
|
||||
},
|
||||
modpackLabel: {
|
||||
id: 'installation-settings.linked.modpack',
|
||||
defaultMessage: 'modpack',
|
||||
},
|
||||
serverLabel: {
|
||||
id: 'installation-settings.type.server',
|
||||
defaultMessage: 'server',
|
||||
},
|
||||
instanceLabel: {
|
||||
id: 'installation-settings.type.instance',
|
||||
defaultMessage: 'instance',
|
||||
},
|
||||
serverPossessiveLabel: {
|
||||
id: 'installation-settings.type.server-possessive',
|
||||
defaultMessage: "server's",
|
||||
},
|
||||
instancePossessiveLabel: {
|
||||
id: 'installation-settings.type.instance-possessive',
|
||||
defaultMessage: "instance's",
|
||||
},
|
||||
editWarningServer: {
|
||||
id: 'installation-settings.edit.warning-server',
|
||||
defaultMessage:
|
||||
@@ -405,7 +429,9 @@ const messages = defineMessages({
|
||||
<span class="text-lg font-semibold text-contrast">
|
||||
{{
|
||||
formatMessage(messages.linkedInstanceTitle, {
|
||||
projectType: showModpackVersionActions ? 'modpack' : 'server',
|
||||
projectType: formatMessage(
|
||||
showModpackVersionActions ? messages.modpackLabel : messages.serverProjectLabel,
|
||||
),
|
||||
})
|
||||
}}
|
||||
</span>
|
||||
@@ -430,8 +456,10 @@ const messages = defineMessages({
|
||||
<span class="text-primary">
|
||||
{{
|
||||
formatMessage(messages.unlinkDescription, {
|
||||
type: ctx.isServer ? 'server' : 'instance',
|
||||
projectType: showModpackVersionActions ? 'modpack' : 'server',
|
||||
type: formatMessage(ctx.isServer ? messages.serverLabel : messages.instanceLabel),
|
||||
projectType: formatMessage(
|
||||
showModpackVersionActions ? messages.modpackLabel : messages.serverLabel,
|
||||
),
|
||||
})
|
||||
}}
|
||||
</span>
|
||||
@@ -464,7 +492,9 @@ const messages = defineMessages({
|
||||
<span class="text-primary">
|
||||
{{
|
||||
formatMessage(messages.reinstallModpackDescription, {
|
||||
type: ctx.isServer ? 'server' : 'instance',
|
||||
type: formatMessage(
|
||||
ctx.isServer ? messages.serverPossessiveLabel : messages.instancePossessiveLabel,
|
||||
),
|
||||
})
|
||||
}}
|
||||
</span>
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "فشل تحميل تفاصيل الاشتراك."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 أيام"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/شهر"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/ربع"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/سنة"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "سيتم تحصيل الرسوم التالية في <charge-date>{date}</charge-date>."
|
||||
},
|
||||
@@ -269,12 +257,6 @@
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "تحذير الحذف"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "احذف {count} {count, plural, one {{itemType, select, project {project} version {version} user {user} other {project}}} other {{itemType, select, project {مشاريع} version {versions} user {users} other {projects}}}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "حذف {count, plural, one {{itemType, select, project {project} version {version} user {user} other {content}}} other {{itemType, select, project {مشاريع} version {versions} user {users} other {contents}}}}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-header": {
|
||||
"defaultMessage": "تحذير {action, select, downgrade {خفض الٳصدار} other {التحديث}}"
|
||||
},
|
||||
@@ -756,4 +738,3 @@
|
||||
"defaultMessage": "ماينكرافت: إصدار جافا"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Nepodařilo se načíst podrobnosti předplatného."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 dní"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/měsíc"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/čtvrtletně"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/rok"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "Další platba bude provedena <charge-date>{date}</charge-date>."
|
||||
},
|
||||
@@ -272,12 +260,6 @@
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Upozornění při smazání"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Smazat {count} {itemType}{count, plural, one {} other {}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Smazat {itemType}{count, plural, one {} other {}}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select, downgrade {Downgrading} other {Updating}} může způsobit problémy s kompatibilitou. Mody nebo obsah, který jste přidali na modpack, zůstanou zachovány, ale nemusí být kompatibilní s novou verzí."
|
||||
},
|
||||
@@ -341,9 +323,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Podrž Shift a klikni, jestli chceš přeskočit potvrzení"
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Doporučujeme vytvoření zálohy před pokračováním dále. V případě nějaké chyby můžeš obnovit {type, select, server {svět} other {instanci}}."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "Obsah tvého modpacku nyní najdeš zde!"
|
||||
},
|
||||
@@ -383,9 +362,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Prosím, počkej"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Vyhledat {count} {contentType}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Název souboru"
|
||||
},
|
||||
@@ -413,9 +389,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "Aktualizování {contentType}..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count} {contentType} vybráno"
|
||||
},
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} přepsáno"
|
||||
},
|
||||
@@ -887,15 +860,9 @@
|
||||
"project-type.all": {
|
||||
"defaultMessage": "Vše"
|
||||
},
|
||||
"project-type.datapack.capital": {
|
||||
"defaultMessage": "{count, plural, one {Data Pack} few {Data Packy} many {Data Packů} other {Data Packů}}"
|
||||
},
|
||||
"project-type.datapack.category": {
|
||||
"defaultMessage": "Data Packy"
|
||||
},
|
||||
"project-type.datapack.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {data pack} few {data packy} many {data packů} other {data packů}}"
|
||||
},
|
||||
"project-type.mod.capital": {
|
||||
"defaultMessage": "{count, plural, one {Mód} other {Módy}}"
|
||||
},
|
||||
@@ -1602,4 +1569,3 @@
|
||||
"defaultMessage": "Máš neuložené změny."
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -185,12 +185,6 @@
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Advarsel ved sletning"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Slet {count} {itemType}{count, plural, one {} other {er}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Slet {itemType}{count, plural, one {} other {er}}"
|
||||
},
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Vent venligst"
|
||||
},
|
||||
@@ -1320,4 +1314,3 @@
|
||||
"defaultMessage": "Vanilla Shader"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Details zum Abonnement konnten nicht geladen werden."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 Tage"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/Monat"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/Quartal"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/Jahr"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "Deine nächste Abrechnung erfolgt am <charge-date>{date}</charge-date>."
|
||||
},
|
||||
@@ -104,9 +92,6 @@
|
||||
"browse.offline": {
|
||||
"defaultMessage": "Du bist aktuell Offline. Verbinde dich mit dem Internet um Modrinth zu durchstöbern!"
|
||||
},
|
||||
"browse.search.placeholder": {
|
||||
"defaultMessage": "Durchsuche {projectType, select, mod {Mods} modpack {Modpacks} resourcepack {Ressourcenpakete} shader {Shader} plugin {Plugins} datapack {Datenpakete} server {Server} other {Projekte}}..."
|
||||
},
|
||||
"browse.selected-projects-floating-bar.aria-label": {
|
||||
"defaultMessage": "Ausgewählte Projekte"
|
||||
},
|
||||
@@ -347,12 +332,6 @@
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Löschwarnung"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Lösche {count} {itemType}{count, plural, one {} other {s}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Lösche {itemType}{count, plural, one {} other {s}}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select, downgrade {Downgraden} other {Aktualiseren}} kann zu Kompatibilitätsproblemen führen. Mods oder Inhalte, die du zusätzlich zum Modpack hinzugefügt hast, bleiben erhalten, sind jedoch eventuell nicht mit der neuen Version kompatibel."
|
||||
},
|
||||
@@ -419,9 +398,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Halte Umschalt während dem klicken um die Bestätigung zu überspringen."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Wir empfehlen das erstellen einer Sicherung, bevor du weitermachst, so dass du deine {type, select, server {Welt} other {Instanz}} wiederherstellen kannst, sollte was kaputt gehen."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "Die Inhalte deines Modpacks können jetzt hier gefunden werden!"
|
||||
},
|
||||
@@ -464,9 +440,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Bitte warten"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Durchsuche {count} {contentType}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Dateinamen"
|
||||
},
|
||||
@@ -530,9 +503,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "Aktualisiere {contentType}..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count} {contentType} ausgewählt"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number} ausgewählt"
|
||||
},
|
||||
@@ -839,18 +809,9 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} überschrieben"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Überschreibt"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "Dateien werden überschrieben"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "{type, select, directory {Ordner} other {Datei}} erstellen"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {einen Ordner} other {eine Datei}} erstellen"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "z. B. mein-ordner"
|
||||
},
|
||||
@@ -863,9 +824,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Datei löschen"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {Dieser Ordner und sein gesamter Inhalt werden dauerhaft gelöscht.} other {Diese Datei wird dauerhaft gelöscht.}} Diese Aktion kann nicht rückgängig gemacht werden."
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "Inhalt der Datei konnte nicht geladen werden."
|
||||
},
|
||||
@@ -992,9 +950,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "z. B. /mein-ordner"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {Ordner} other {Datei}} verschieben"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "Zurück zum Start"
|
||||
},
|
||||
@@ -1115,9 +1070,6 @@
|
||||
"files.upload-dropdown.uploads-left": {
|
||||
"defaultMessage": " - {count} übrig"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "Ziehe {type, select, undefined {Dateien} other {{type}s}} zum Hochladen hierher"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "Name darf nur alphanumerische Zeichen, Bindestriche, Unterstriche oder Leerzeichen enthalten."
|
||||
},
|
||||
@@ -1490,18 +1442,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-title": {
|
||||
"defaultMessage": "Das ändern von Loadern ist zerstörerisch"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "Verlinktes {projectType, select, server {Server Projekt} other {Modpack}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "{loader}version"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "Du musst deinen Server zurücksetzen um den Loader zu wechseln."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Das neu installieren des Modpacks setzt die {type, select, server {Serverinhalte} other {Inhalte der Instanz}} auf ihren Originalzustand zurück, und entfernt von dir hinzugefügte Inhalte."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Modpack neu installieren"
|
||||
},
|
||||
@@ -1532,9 +1478,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Trennen"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Entkoppeln trennt {type, select, server {diesen Server} other {diese Instanz}} vom {projectType, select, server {Server} other {Modpack}} Projekt, welches dir erlaubt, die Loader und Minecraftversion zu ändern. Du erhälst jedich keine zukünftigen Aktualisierungen."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Wird überprüft..."
|
||||
},
|
||||
@@ -1550,12 +1493,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Modpack neu installieren"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "Das reparieren installiert den Loader und die Abhängigkeiten von Minecraft neu ohne deine Inhalte zu löschen. Dies könnte Probleme mit dem starten {type, select, server {deines Servers} other {des Launchers auf grund von Launcher-relevanten Problemen}} lösen."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "{type, select, server {Server} other {Instanz}} reparieren"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Reparieren"
|
||||
},
|
||||
@@ -3461,9 +3398,6 @@
|
||||
"servers.listing.notice.moderated": {
|
||||
"defaultMessage": "Dein Server wurde aufgrund einer Moderationsmassnahme deaktiviert. "
|
||||
},
|
||||
"servers.listing.notice.pending-change": {
|
||||
"defaultMessage": "Dein Server wird am <date>{formattedDate}</date> auf den {planSize} Plan {verb}. "
|
||||
},
|
||||
"servers.listing.notice.provisioning": {
|
||||
"defaultMessage": "Bitte warte, während wir deinen Server einrichten. Dies kann bis zu 10 Minuten dauern."
|
||||
},
|
||||
@@ -3569,9 +3503,6 @@
|
||||
"servers.manage.resubscribe-success.title": {
|
||||
"defaultMessage": "Erfolg"
|
||||
},
|
||||
"servers.manage.search-placeholder": {
|
||||
"defaultMessage": "Durchsuche {count} Server..."
|
||||
},
|
||||
"servers.manage.servers-title": {
|
||||
"defaultMessage": "Modrinth Hosting"
|
||||
},
|
||||
@@ -4320,4 +4251,3 @@
|
||||
"defaultMessage": "Alle ausblenden"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Details zum Abonnement konnten nicht geladen werden."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 Tage"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/Monat"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/Quartal"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/Jahr"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "Deine nächste Abrechnung erfolgt am <charge-date>{date}</charge-date>."
|
||||
},
|
||||
@@ -104,9 +92,6 @@
|
||||
"browse.offline": {
|
||||
"defaultMessage": "Du bist derzeit offline. Verbinde dich mit dem Internet, um Modrinth zu durchsuchen!"
|
||||
},
|
||||
"browse.search.placeholder": {
|
||||
"defaultMessage": "Durchsuche {projectType, select, mod {Mods} modpack {Modpacks} resourcepack {Ressourcenpakete} shader {Shader} plugin {Plugins} datapack {Datenpakete} server {Server} other {Projekte}}..."
|
||||
},
|
||||
"browse.selected-projects-floating-bar.aria-label": {
|
||||
"defaultMessage": "Ausgewählte Projekte"
|
||||
},
|
||||
@@ -347,12 +332,6 @@
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Löschwarnung"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Lösche {count} {itemType}{count, plural, one {} other {s}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Lösche {itemType}{count, plural, one {} other {s}}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select, downgrade {Downgraden} other {Aktualiseren}} kann zu Kompatibilitätsproblemen führen. Mods oder Inhalte, die du zusätzlich zum Modpack hinzugefügt hast, bleiben erhalten, sind jedoch eventuell nicht mit der neuen Version kompatibel."
|
||||
},
|
||||
@@ -419,9 +398,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Halte die Umschalttaste gedrückt, während du klickst, um die Bestätigung zu überspringen."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Wir empfehlen, bevor du fortfährst eine Sicherung zu erstellen, damit du deine {type, select, server {Welt} other {Instanz}} wiederherstellen kannst, falls etwas schiefgeht."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "Die Inhalte deines Modpacks findest du jetzt hier!"
|
||||
},
|
||||
@@ -464,9 +440,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Bitte warten"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Durchsuche {count} {contentType}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Dateinamen"
|
||||
},
|
||||
@@ -530,9 +503,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "Aktualisiere {contentType}..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count} {contentType} ausgewählt"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number} ausgewählt"
|
||||
},
|
||||
@@ -839,18 +809,9 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} überschrieben"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Überschreibt"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "Dateien werden überschrieben"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "{type, select, directory {Ordner} other {Datei}} erstellen"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "Erstelle {type, select, directory {einen Ordner} other {eine Datei}}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "z. B. mein-ordner"
|
||||
},
|
||||
@@ -863,9 +824,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Datei löschen"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {Dieser Ordner und sein gesamter Inhalt werden dauerhaft gelöscht. Diese Aktion kann nicht rückgängig gemacht werden.} other {Diese Datei wird dauerhaft gelöscht. Diese Aktion kann nicht rückgängig gemacht werden.}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "Inhalt der Datei konnte nicht geladen werden."
|
||||
},
|
||||
@@ -992,9 +950,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "z. B. /mein-ordner"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {Ordner verschieben} other {Datei verschieben}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "Zurück zum Start"
|
||||
},
|
||||
@@ -1115,9 +1070,6 @@
|
||||
"files.upload-dropdown.uploads-left": {
|
||||
"defaultMessage": " - {count} übrig"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "Ziehe {type, select, undefined {Dateien} other {{type}s}} zum Hochladen hierher"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "Name darf nur alphanumerische Zeichen, Bindestriche, Unterstriche oder Leerzeichen enthalten."
|
||||
},
|
||||
@@ -1490,18 +1442,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-title": {
|
||||
"defaultMessage": "Das Ändern des Loaders ist irreversibel"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "Verlinktes {projectType, select, server {Serverprojekt} other {Modpack}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "{loader}version"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "Du musst deinen Server zurücksetzen, um den Loader zu wechseln."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Die Neuinstallation des Modpacks setzt den Inhalt {type, select, server {des Servers} other {der Instanz}} auf den ursprünglichen Zustand zurück und entfernt alle von dir hinzugefügten Mods oder Inhalte."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Modpack neu installieren"
|
||||
},
|
||||
@@ -1532,9 +1478,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Trennen"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Durch das Entkoppeln wird {type, select, server {dieser Server} other {diese Instance}} dauerhaft vom {projectType, select, server {Server} other {Modpack}}projekt getrennt, sodass du den Loader und die Minecraft-Version ändern kannst, jedoch keine zukünftigen Updates mehr erhältst."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Wird überprüft..."
|
||||
},
|
||||
@@ -1550,12 +1493,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Modpack neu installieren"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "Das Reparieren installiert den Loader und die Minecraft-Abhängigkeiten neu, ohne deine Inhalte zu löschen. Dies kann Probleme beheben, falls dein {type, select, server {Server nicht richtig startet} other {Spiel aufgrund von Fehlern im Launcher nicht startet}}."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "{type, select, server {Server} other {Instanz}} reparieren"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Reparieren"
|
||||
},
|
||||
@@ -2651,9 +2588,6 @@
|
||||
"project.environment.unknown.title": {
|
||||
"defaultMessage": "Unbekannte Umgebung"
|
||||
},
|
||||
"project.follower-count-tooltip": {
|
||||
"defaultMessage": "{count, number} Follower"
|
||||
},
|
||||
"project.online-player-count": {
|
||||
"defaultMessage": "{count, number} online"
|
||||
},
|
||||
@@ -3461,9 +3395,6 @@
|
||||
"servers.listing.notice.moderated": {
|
||||
"defaultMessage": "Dein Server wurde aufgrund einer Moderationsmaßnahme deaktiviert. "
|
||||
},
|
||||
"servers.listing.notice.pending-change": {
|
||||
"defaultMessage": "Dein Server wird am <date>{formattedDate}</date> auf den {planSize} Plan {verb}. "
|
||||
},
|
||||
"servers.listing.notice.provisioning": {
|
||||
"defaultMessage": "Bitte warte, während wir deinen Server einrichten. Dies kann bis zu 10 Minuten dauern."
|
||||
},
|
||||
@@ -3569,9 +3500,6 @@
|
||||
"servers.manage.resubscribe-success.title": {
|
||||
"defaultMessage": "Erfolg"
|
||||
},
|
||||
"servers.manage.search-placeholder": {
|
||||
"defaultMessage": "Durchsuche {count} Server"
|
||||
},
|
||||
"servers.manage.servers-title": {
|
||||
"defaultMessage": "Modrinth Hosting"
|
||||
},
|
||||
@@ -4320,4 +4248,3 @@
|
||||
"defaultMessage": "Alle ausblenden"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,17 +65,8 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Failed to load subscription details."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 days"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/month"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/quarter"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/year"
|
||||
"billing.resubscribe-modal.interval": {
|
||||
"defaultMessage": "{intervalOption, select, fiveDays {/5 days} monthly {/month} quarterly {/quarter} yearly {/year} other {{interval}}}"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "Your next charge will be on <charge-date>{date}</charge-date>."
|
||||
@@ -105,7 +96,7 @@
|
||||
"defaultMessage": "You are currently offline. Connect to the internet to browse Modrinth!"
|
||||
},
|
||||
"browse.search.placeholder": {
|
||||
"defaultMessage": "Search {projectType, select, mod {mods} modpack {modpacks} resourcepack {resource packs} shader {shaders} plugin {plugins} datapack {datapacks} server {servers} other {projects}}..."
|
||||
"defaultMessage": "Search {projectType}..."
|
||||
},
|
||||
"browse.selected-projects-floating-bar.aria-label": {
|
||||
"defaultMessage": "Selected projects"
|
||||
@@ -323,6 +314,12 @@
|
||||
"collections.label.private": {
|
||||
"defaultMessage": "Private"
|
||||
},
|
||||
"content-type.content.lowercase": {
|
||||
"defaultMessage": "content"
|
||||
},
|
||||
"content-type.item.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {item} other {items}}"
|
||||
},
|
||||
"content.card.select-project": {
|
||||
"defaultMessage": "Select {project}"
|
||||
},
|
||||
@@ -348,10 +345,10 @@
|
||||
"defaultMessage": "Deletion warning"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Delete {count} {itemType}{count, plural, one {} other {s}}"
|
||||
"defaultMessage": "Delete {count, number} {itemType}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Delete {itemType}{count, plural, one {} other {s}}"
|
||||
"defaultMessage": "Delete {itemType}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select, downgrade {Downgrading} other {Updating}} may cause compatibility issues. Mods or content you added on top of the modpack will be kept, but may not be compatible with the new version."
|
||||
@@ -428,11 +425,17 @@
|
||||
"content.inline-backup.create-backup": {
|
||||
"defaultMessage": "Create backup"
|
||||
},
|
||||
"content.inline-backup.instance-label": {
|
||||
"defaultMessage": "instance"
|
||||
},
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Hold Shift while clicking to skip confirmation."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "We recommend creating a backup before proceeding so you can restore your {type, select, server {world} other {instance}} if anything breaks."
|
||||
"defaultMessage": "We recommend creating a backup before proceeding so you can restore your {type} if anything breaks."
|
||||
},
|
||||
"content.inline-backup.world-label": {
|
||||
"defaultMessage": "world"
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "Your modpack's content can now be found here!"
|
||||
@@ -477,7 +480,7 @@
|
||||
"defaultMessage": "Please wait"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Search {count} {contentType}..."
|
||||
"defaultMessage": "Search {count, number} {contentType}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "File names"
|
||||
@@ -543,7 +546,7 @@
|
||||
"defaultMessage": "Updating {contentType}..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count} {contentType} selected"
|
||||
"defaultMessage": "{count, number} {contentType} selected"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number} selected"
|
||||
@@ -842,6 +845,9 @@
|
||||
"files.conflict-modal.overwrite-button": {
|
||||
"defaultMessage": "Overwrite"
|
||||
},
|
||||
"files.conflict-modal.overwrite-file-label": {
|
||||
"defaultMessage": "Will overwrite <file-path>{path}</file-path>"
|
||||
},
|
||||
"files.conflict-modal.overwrite-many-warning": {
|
||||
"defaultMessage": "Over 100 files will be overwritten if you proceed with extraction; here are some of them."
|
||||
},
|
||||
@@ -851,17 +857,14 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} overwritten"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Overwritten"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "Files will be overwritten"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "Create {type, select, directory {folder} other {file}}"
|
||||
"defaultMessage": "Create {type}"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "Create a {type, select, directory {folder} other {file}}"
|
||||
"defaultMessage": "Create a {type}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "e.g. my-folder"
|
||||
@@ -875,8 +878,11 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Delete file"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {This folder and all its contents will be permanently deleted. This action cannot be undone.} other {This file will be permanently deleted. This action cannot be undone.}}"
|
||||
"files.delete-modal.warning.file": {
|
||||
"defaultMessage": "This file will be permanently deleted. This action cannot be undone."
|
||||
},
|
||||
"files.delete-modal.warning.folder": {
|
||||
"defaultMessage": "This folder and all its contents will be permanently deleted. This action cannot be undone."
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "Could not load file contents."
|
||||
@@ -965,6 +971,18 @@
|
||||
"files.image_viewer.zoom_out": {
|
||||
"defaultMessage": "Zoom out"
|
||||
},
|
||||
"files.item-type.file": {
|
||||
"defaultMessage": "file"
|
||||
},
|
||||
"files.item-type.files": {
|
||||
"defaultMessage": "files"
|
||||
},
|
||||
"files.item-type.folder": {
|
||||
"defaultMessage": "folder"
|
||||
},
|
||||
"files.item-type.folders": {
|
||||
"defaultMessage": "folders"
|
||||
},
|
||||
"files.layout.busy-warning": {
|
||||
"defaultMessage": "File operations are disabled while the operation is in progress."
|
||||
},
|
||||
@@ -1005,7 +1023,7 @@
|
||||
"defaultMessage": "e.g. /my-folder"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {Move folder} other {Move file}}"
|
||||
"defaultMessage": "Move {type}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "Back to home"
|
||||
@@ -1128,7 +1146,7 @@
|
||||
"defaultMessage": " - {count} left"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "Drop {type, select, undefined {files} other {{type}s}} here to upload"
|
||||
"defaultMessage": "Drop {type} here to upload"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "Name must contain only alphanumeric characters, dashes, underscores, or spaces."
|
||||
@@ -1503,7 +1521,13 @@
|
||||
"defaultMessage": "Changing loaders is destructive"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "Linked {projectType, select, server {server project} other {modpack}}"
|
||||
"defaultMessage": "Linked {projectType}"
|
||||
},
|
||||
"installation-settings.linked.modpack": {
|
||||
"defaultMessage": "modpack"
|
||||
},
|
||||
"installation-settings.linked.server-project": {
|
||||
"defaultMessage": "server project"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "{loader} version"
|
||||
@@ -1512,7 +1536,7 @@
|
||||
"defaultMessage": "You will need to reset your server to switch loader."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Re-installing the modpack resets the {type, select, server {server's} other {instance's}} content to its original state, removing any mods or content you have added."
|
||||
"defaultMessage": "Re-installing the modpack resets the {type} content to its original state, removing any mods or content you have added."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Re-install modpack"
|
||||
@@ -1541,11 +1565,23 @@
|
||||
"installation-settings.search-game-version": {
|
||||
"defaultMessage": "Search game version..."
|
||||
},
|
||||
"installation-settings.type.instance": {
|
||||
"defaultMessage": "instance"
|
||||
},
|
||||
"installation-settings.type.instance-possessive": {
|
||||
"defaultMessage": "instance's"
|
||||
},
|
||||
"installation-settings.type.server": {
|
||||
"defaultMessage": "server"
|
||||
},
|
||||
"installation-settings.type.server-possessive": {
|
||||
"defaultMessage": "server's"
|
||||
},
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Unlink"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Unlinking permanently disconnects this {type, select, server {server} other {instance}} from the {projectType, select, server {server} other {modpack}} project, allowing you to change the loader and Minecraft version, but you won't receive future updates."
|
||||
"defaultMessage": "Unlinking permanently disconnects this {type} from the {projectType} project, allowing you to change the loader and Minecraft version, but you won't receive future updates."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Verifying..."
|
||||
@@ -1562,15 +1598,24 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Reinstall modpack"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "Repairing reinstalls the loader and Minecraft dependencies without deleting your content. This may resolve issues if your {type, select, server {server is not starting correctly} other {game is not launching due to launcher-related errors}}."
|
||||
"instance.confirm-repair.body.instance": {
|
||||
"defaultMessage": "Repairing reinstalls the loader and Minecraft dependencies without deleting your content. This may resolve issues if your game is not launching due to launcher-related errors."
|
||||
},
|
||||
"instance.confirm-repair.body.server": {
|
||||
"defaultMessage": "Repairing reinstalls the loader and Minecraft dependencies without deleting your content. This may resolve issues if your server is not starting correctly."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "Repair {type, select, server {server} other {instance}}"
|
||||
"defaultMessage": "Repair {type}"
|
||||
},
|
||||
"instance.confirm-repair.instance-label": {
|
||||
"defaultMessage": "instance"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Repair"
|
||||
},
|
||||
"instance.confirm-repair.server-label": {
|
||||
"defaultMessage": "server"
|
||||
},
|
||||
"instance.worlds.game_mode.adventure": {
|
||||
"defaultMessage": "Adventure mode"
|
||||
},
|
||||
@@ -2352,7 +2397,7 @@
|
||||
"defaultMessage": "JCB"
|
||||
},
|
||||
"payment-method.mastercard": {
|
||||
"defaultMessage": "MasterCard"
|
||||
"defaultMessage": "Mastercard"
|
||||
},
|
||||
"payment-method.paypal": {
|
||||
"defaultMessage": "PayPal"
|
||||
@@ -3110,6 +3155,18 @@
|
||||
"project.visibility.unlisted-by-staff": {
|
||||
"defaultMessage": "Unlisted by staff"
|
||||
},
|
||||
"report.item-type.content": {
|
||||
"defaultMessage": "content"
|
||||
},
|
||||
"report.item-type.project": {
|
||||
"defaultMessage": "project"
|
||||
},
|
||||
"report.item-type.user": {
|
||||
"defaultMessage": "user"
|
||||
},
|
||||
"report.item-type.version": {
|
||||
"defaultMessage": "version"
|
||||
},
|
||||
"s.bg": {
|
||||
"defaultMessage": "Background task running"
|
||||
},
|
||||
@@ -3426,7 +3483,7 @@
|
||||
"defaultMessage": "No servers yet"
|
||||
},
|
||||
"servers.list-empty.one-click-mod-installs-description": {
|
||||
"defaultMessage": "Pick your favourite mods and we handle the rest."
|
||||
"defaultMessage": "Pick your favorite mods and we handle the rest."
|
||||
},
|
||||
"servers.list-empty.one-click-mod-installs-title": {
|
||||
"defaultMessage": "One-click mod installs"
|
||||
@@ -3465,16 +3522,16 @@
|
||||
"defaultMessage": "New"
|
||||
},
|
||||
"servers.listing.notice.files-kept-for-download": {
|
||||
"defaultMessage": "Your files will be kept for <days-remaining>{daysRemaining} more {daysRemaining, plural, one {day} other {days} }</days-remaining>. Contact support to download the files before they are deleted. "
|
||||
"defaultMessage": "Your files will be kept for <days-remaining>{daysRemaining} more {daysRemaining, plural, one {day} other {days}}</days-remaining>. Contact support to download the files before they are deleted."
|
||||
},
|
||||
"servers.listing.notice.files-preserved-after-cancellation": {
|
||||
"defaultMessage": "Your files will be preserved for 30 days after cancellation."
|
||||
},
|
||||
"servers.listing.notice.moderated": {
|
||||
"defaultMessage": "Your server has been suspended by moderation action. "
|
||||
"defaultMessage": "Your server has been suspended by moderation action."
|
||||
},
|
||||
"servers.listing.notice.pending-change": {
|
||||
"defaultMessage": "Your server will {verb} to the {planSize} Plan on <date>{formattedDate}</date>. "
|
||||
"defaultMessage": "Your server will {verb, select, downgrade {downgrade} other {upgrade}} to the {planSize} Plan on <date>{formattedDate}</date>."
|
||||
},
|
||||
"servers.listing.notice.provisioning": {
|
||||
"defaultMessage": "Please wait while we set up your server. This can take up to 10 minutes."
|
||||
@@ -3483,7 +3540,7 @@
|
||||
"defaultMessage": "Your subscription was cancelled."
|
||||
},
|
||||
"servers.listing.notice.subscription-cancelled-on-date": {
|
||||
"defaultMessage": "Your subscription was cancelled on <date>{formattedDate}</date>. "
|
||||
"defaultMessage": "Your subscription was cancelled on <date>{formattedDate}</date>."
|
||||
},
|
||||
"servers.listing.notice.subscription-cancelled-payment-failed": {
|
||||
"defaultMessage": "Your subscription was cancelled due to payment failure."
|
||||
@@ -3665,6 +3722,9 @@
|
||||
"servers.purchase.step.payment.title": {
|
||||
"defaultMessage": "Payment method"
|
||||
},
|
||||
"servers.purchase.step.plan.billed": {
|
||||
"defaultMessage": "billed {interval, select, monthly {monthly} quarterly {quarterly} yearly {yearly} other {{interval}}}"
|
||||
},
|
||||
"servers.purchase.step.plan.billing-subtitle": {
|
||||
"defaultMessage": "Available in North America, Europe, and Southeast Asia."
|
||||
},
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Error al cargar los detalles de la suscripción."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 días"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/mes"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/trimestre"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/año"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "Tu próximo cargo será el <charge-date>{date}</charge-date>."
|
||||
},
|
||||
@@ -104,9 +92,6 @@
|
||||
"browse.offline": {
|
||||
"defaultMessage": "Estás actualmente desconectado. ¡Conéctate a internet para buscar en Modrinth!"
|
||||
},
|
||||
"browse.search.placeholder": {
|
||||
"defaultMessage": "Buscar {projectType, select, mod {mods} modpack {modpacks} resourcepack {paquetes de recursos} shader {shaders} plugin {plugins} datapack {datapacks} server {servidores} other {proyectos}}..."
|
||||
},
|
||||
"browse.selected-projects-floating-bar.aria-label": {
|
||||
"defaultMessage": "Proyectos seleccionados"
|
||||
},
|
||||
@@ -347,12 +332,6 @@
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Advertencia de borrado"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Eliminar {count} {itemType}{count, plural, one {} other{s}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Eliminar {itemType}{count, plural, one {} other {s}}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select, downgrade {Bajar de versión} other {Actualizar}} puede causar problemas de compatibilidad. Los mods o contenido que agregaste sobre el modpack se mantendrán, pero podrían no ser compatibles con la nueva versión."
|
||||
},
|
||||
@@ -419,9 +398,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Mantén pulsada la tecla Shift mientras haces clic para omitir la confirmación."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Te recomendamos crear un respaldo antes de continuar, para que puedas restaurar tu {type, select,server {mundo} other {instancia}} si algo se rompe."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "¡Ya puedes encontrar el contenido de tu modpack aquí!"
|
||||
},
|
||||
@@ -464,9 +440,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Por favor, espera"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Buscar {count} {contentType}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Nombres de archivos"
|
||||
},
|
||||
@@ -530,9 +503,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "Actualizando {contentType}..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count} {contentType} seleccionado"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number} seleccionados"
|
||||
},
|
||||
@@ -839,18 +809,9 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} sobrescritos"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Sobrescrito"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "Los archivos se sobrescribirán"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "Crear {type, select,directory {carpeta} other {archivo}}"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "Crear {type, select,directory {carpeta} other {archivo}}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "por ej., mi-carpeta"
|
||||
},
|
||||
@@ -863,9 +824,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Borrar archivo"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select,directory {Esta carpeta y todo su contenido serán eliminados permanentemente. Esta acción no se puede deshacer.} other {Este archivo será eliminado permanentemente. Esta acción no se puede deshacer.}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "No se pudo cargar el contenido del archivo."
|
||||
},
|
||||
@@ -992,9 +950,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "por ej., /mi-carpeta"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select,directory {Mover carpeta} other {Mover archivo}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "Volver a inicio"
|
||||
},
|
||||
@@ -1115,9 +1070,6 @@
|
||||
"files.upload-dropdown.uploads-left": {
|
||||
"defaultMessage": " - {count} restantes"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "Suelta los {type, select,undefined {archivos} other {{type}s}} para cargarlos"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "El nombre solo debe tener caracteres alfanuméricos, guiones, guiones bajos o espacios."
|
||||
},
|
||||
@@ -1490,18 +1442,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-title": {
|
||||
"defaultMessage": "Cambiar de loader es destructivo"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "Vinculado a {projectType, select, server {proyecto de servidor} other {modpack}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "{loader} versión"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "Tendrás que reiniciar el servidor para cambiar de loader."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Reinstalar el modpack restablece el contenido {type, select, server {del servidor} other {de la instancia}} a su estado original, eliminando cualquier mod o contenido que hayas agregado."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Reinstalar modpack"
|
||||
},
|
||||
@@ -1532,9 +1478,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Desvincular"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Desvincular desconecta permanentemente {type, select, server {este servidor} other {la instancia}} del proyecto {projectType, select, server {servidor} other {modpack}}, permitiéndote cambiar el loader y la versión de Minecraft, pero no recibirás actualizaciones futuras."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Verificando..."
|
||||
},
|
||||
@@ -1550,12 +1493,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Reinstalar modpack"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "La reparación reinstala el loader y las dependencias de Minecraft sin borrar tu contenido. Esto puede resolver problemas si tu {type, select, server {servidor no inicia correctamente} other {juego no inicia debido a errores relacionados con el launcher}}."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "Reparar {type, select, server {el servidor} other {la instancia}}"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Reparar"
|
||||
},
|
||||
@@ -3461,9 +3398,6 @@
|
||||
"servers.listing.notice.moderated": {
|
||||
"defaultMessage": "Tu servidor ha sido suspendido por moderación. "
|
||||
},
|
||||
"servers.listing.notice.pending-change": {
|
||||
"defaultMessage": "Tu servidor será {verb} a {planSize} Plan el <date>{formattedDate}</date>. "
|
||||
},
|
||||
"servers.listing.notice.provisioning": {
|
||||
"defaultMessage": "Por favor espera mientras configuramos tu servidor. Esto puede tomar hasta 10 minutos."
|
||||
},
|
||||
@@ -4326,4 +4260,3 @@
|
||||
"defaultMessage": "Descartar todo"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "No se ha podido cargar los detalles de la suscripción."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 días"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/mes"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/trimestre"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/año"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "Tu próximo pago se cobrará el <charge-date>{date}</charge-date>."
|
||||
},
|
||||
@@ -104,9 +92,6 @@
|
||||
"browse.offline": {
|
||||
"defaultMessage": "Actualmente no estás conectado a internet. ¡Conéctate para navegar por Modrinth!"
|
||||
},
|
||||
"browse.search.placeholder": {
|
||||
"defaultMessage": "Buscar {projectType, select, mod {mods} modpack {modpacks} resourcepack {resource packs} shader {shaders} plugin {plugins} datapack {datapacks} server {servers} other {projects}}..."
|
||||
},
|
||||
"browse.selected-projects-floating-bar.aria-label": {
|
||||
"defaultMessage": "Proyectos seleccionados"
|
||||
},
|
||||
@@ -320,12 +305,6 @@
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Aviso de eliminación"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Eliminar {count} {itemType}{count, plural, one {} other {s}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Eliminar {itemType}{count, plural, one {} other {s}}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select,downgrade {Bajar de versión} other {Actualizar}} puede causar problemas de compatibilidad. Mods o contenido que tu has añandido encima del modpack se quedara, pero no podria ser compatible con la nueva version."
|
||||
},
|
||||
@@ -392,9 +371,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Mantén pulsada la tecla Mayús mientras haces clic para omitir la confirmación."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Te recomendamos que hagas una copia de seguridad antes de continuar, para que puedas restaurar tu {type, select, server {mundo} other {instancia}} en caso de que algo falle."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "¡Ya puedes encontrar el contenido de tu modpack aquí!"
|
||||
},
|
||||
@@ -437,9 +413,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Por favor, espere"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Buscar {count} {contentType}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Nombres de archivos"
|
||||
},
|
||||
@@ -503,12 +476,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "Actualizando {contentType}..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count} {contentType} seleccionado"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number} {count, plural, one {seleccionado} other {seleccionados}}"
|
||||
},
|
||||
"creation-flow.button.create-instance": {
|
||||
"defaultMessage": "Crear instancia"
|
||||
},
|
||||
@@ -794,18 +761,9 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} archivos sobreescritos"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Sobreescrito"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "Los archivos serán sobreescritos"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "Crear {type, select, directory {carpeta} other {archivo}}"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "Crear {type, select, directory {una carpeta} other {un archivo}}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "ej. mi-capeta"
|
||||
},
|
||||
@@ -818,9 +776,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Eliminar archivo"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {Esta carpeta y todos sus contenidos serán eliminados permanentemente. Esta acción es irreversible.} other {Este archivo será eliminado permanentemente. Esta acción es irreversible.}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "No se pudo cargar los contenidos del archivo."
|
||||
},
|
||||
@@ -947,9 +902,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "ej. /mi-capeta"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {Mover carpeta} other {Mover archivo}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "Regresar a inicio"
|
||||
},
|
||||
@@ -1070,9 +1022,6 @@
|
||||
"files.upload-dropdown.uploads-left": {
|
||||
"defaultMessage": " - {count} restantes"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "Arrastra {type, select, undefined {archivo} other {{type}s}} aquí para subir"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "El nombre solo debe contener caracteres alfanuméricos, guiones (-), guiones bajos (_) o espacios."
|
||||
},
|
||||
@@ -1427,18 +1376,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-title": {
|
||||
"defaultMessage": "Cambiar los cargadores es destructivo"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "Vinculado {projectType, select, server {proyecto de servidor} other {modpack}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "{loader} versión"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "Tendrás que reiniciar el servidor para cambiar de cargador."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Al reinstalar el paquete de mods, el contenido de {type, select, server {tu servidor} other {tus instancias}} se restablecerá a su estado original, eliminando cualquier mod o contenido que hayas añadido."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Reinstalar el modpack"
|
||||
},
|
||||
@@ -1469,9 +1412,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Desvincular"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Al desvincularlo, se desconectará de forma permanente {type, select, server {este servidor} other {esta instancia}} de el {projectType, select, server {servidor} other {modpack}}, lo que te permitirá cambiar el cargador y la versión de Minecraft, pero no recibirás futuras actualizaciones."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Verificando..."
|
||||
},
|
||||
@@ -1487,12 +1427,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Reinstalar el modpack"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "La reparación reinstala el cargador y las dependencias de Minecraft sin borrar tu contenido. Esto puede resolver problemas si el {type, select, server {servidor no se inicia correctamente} other {juego no se inicia debido a errores relacionados con el lanzador}}."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "Reparar {type, select, server {servidor} other {instancia}}"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Reparar"
|
||||
},
|
||||
@@ -1631,9 +1565,6 @@
|
||||
"label.actions": {
|
||||
"defaultMessage": "Acciones"
|
||||
},
|
||||
"label.available": {
|
||||
"defaultMessage": "{cantidad} Disponible."
|
||||
},
|
||||
"label.changelog": {
|
||||
"defaultMessage": "Registro de cambios"
|
||||
},
|
||||
@@ -3164,9 +3095,6 @@
|
||||
"servers.listing.notice.moderated": {
|
||||
"defaultMessage": "Tu servidor ha sido suspendido por acciones de moderación."
|
||||
},
|
||||
"servers.listing.notice.pending-change": {
|
||||
"defaultMessage": "Tu servidor va a {verb} al {planSize} Plan en <date>{formattedDate}</date>. "
|
||||
},
|
||||
"servers.listing.notice.provisioning": {
|
||||
"defaultMessage": "Por favor espere mientras preparamos tu servidor. Esto puede tomar hasta 10 minutos."
|
||||
},
|
||||
@@ -4020,4 +3948,3 @@
|
||||
"defaultMessage": "Descartar todas"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -50,18 +50,6 @@
|
||||
"billing.resubscribe-modal.error.title": {
|
||||
"defaultMessage": "Error"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 araw"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/buwan"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/tatlong buwan"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/taon"
|
||||
},
|
||||
"billing.resubscribe-modal.plan-label": {
|
||||
"defaultMessage": "Plan"
|
||||
},
|
||||
@@ -572,9 +560,6 @@
|
||||
"installation-settings.incompatible-content.loader-change-body": {
|
||||
"defaultMessage": "Sa pagpapalit ng loader, ang lahat ng na-install na kontento ay mapapatay. Sa halip, inimumungkahi namin na i-reset ang iyong server."
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "Naka-link na {projectType, select, server {server project} other {modpack}}"
|
||||
},
|
||||
"installation-settings.removed-incompatible": {
|
||||
"defaultMessage": "Tinanggal (di-magkatugma)"
|
||||
},
|
||||
@@ -587,9 +572,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Mag-unlink"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Sa pag-a-unlink ay habambuhay na madidiskonekta ang {type, select, server {server na} other {instansiyang}} ito sa proyektong {projectType, select, server {server} other {modpack}}, na mahahayaan kang makapagpalit ng loader at ng bersiyon ng Minecraft, ngunit hindi ka na makatatanggap ng mga susunod na update."
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Ayusin"
|
||||
},
|
||||
@@ -2595,4 +2577,3 @@
|
||||
"defaultMessage": "Mayroon kang hindi na-save na pagbabago."
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Impossible de charger les détails de l'abonnement."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/ 5 jours"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/ mois"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/ trimestre"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/ an"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "Votre prochain paiement sera le <charge-date>{date}</charge-date>."
|
||||
},
|
||||
@@ -104,9 +92,6 @@
|
||||
"browse.offline": {
|
||||
"defaultMessage": "Vous êtes actuellement hors ligne. Connectez-vous à Internet pour rechercher sur Modrinth !"
|
||||
},
|
||||
"browse.search.placeholder": {
|
||||
"defaultMessage": "Rechercher des {projectType, select, mod {mods} modpack {modpacks} resourcepack {packs de ressource} shader {shaders} plugin {plugins} datapack {packs de données} server {servers} other {projets}}..."
|
||||
},
|
||||
"browse.selected-projects-floating-bar.aria-label": {
|
||||
"defaultMessage": "Projets sélectionnés"
|
||||
},
|
||||
@@ -347,12 +332,6 @@
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Avertissement suppression"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Supprimer {count} {itemType}{count, plural, one {} other {s}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Supprimer {count, plural, one {un } other {des }}{itemType}{count, plural, one {} other {s}}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select, downgrade {Rétrograder} other {Mettre à jour}} peut causer des erreurs de compatibilité. Les mods ou le contenu ajouté par-dessus le modpack seront gardés, mais il est possible qu'ils ne soient pas compatibles avec la nouvelle version."
|
||||
},
|
||||
@@ -431,9 +410,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Appuyer sur Maj en cliquant pour passer la confirmation."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Nous recommandons de sauvegarder avant de continuer pour que vous puissiez restaurer votre {type, select, server {monde} other {instance}} en cas de problème."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "Le contenu de votre modpack peut maintenant être retrouvé ici !"
|
||||
},
|
||||
@@ -476,9 +452,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Veuillez patienter"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Rechercher {count} {contentType}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Noms des fichers"
|
||||
},
|
||||
@@ -542,12 +515,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "Mise à jour de {contentType} en cours..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count} {contentType} {count, plural, one {sélectionné} other {sélectionnés}}"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number} {count, plural, one {sélectionné} other {sélectionnés}}"
|
||||
},
|
||||
"creation-flow.button.create-instance": {
|
||||
"defaultMessage": "Créer une instance"
|
||||
},
|
||||
@@ -845,24 +812,12 @@
|
||||
"files.conflict-modal.overwrite-many-warning": {
|
||||
"defaultMessage": "Plus de 100 fichiers seront écrasés si vous procédez à l'extraction ; en voici quelques-uns."
|
||||
},
|
||||
"files.conflict-modal.overwrite-warning": {
|
||||
"defaultMessage": "{count, plural, one {Le fichier suivant existe déjà sur votre serveur, et sera écrasé} other {Les # fichiers suivants existent déjà sur votre serveur, et seront écrasés}} si vous procédez à l'extraction."
|
||||
},
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} écrasés"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Écrasé"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "Les fichiers seront écrasés"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "Créer le {type, select, directory {dossier}other {fichier}}"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "Créer un {type, select, directory {dossier}other {fichier}}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "ex. mon-dossier"
|
||||
},
|
||||
@@ -875,9 +830,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Supprimer le fichier"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {Ce dossier et tout son contenu seront supprimés} other {Ce fichier sera supprimé}} définitivement. Cette action est irréversible."
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "Impossible de charger le contenu du fichier"
|
||||
},
|
||||
@@ -989,9 +941,6 @@
|
||||
"files.layout.extraction-started-title": {
|
||||
"defaultMessage": "L'extraction a commencé"
|
||||
},
|
||||
"files.layout.selected-count": {
|
||||
"defaultMessage": "{count, plural, one {# sélectionné} other {# sélectionnés}}"
|
||||
},
|
||||
"files.layout.unsaved-changes": {
|
||||
"defaultMessage": "Vous avez des changements non sauvegardés."
|
||||
},
|
||||
@@ -1004,9 +953,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "ex. /mon-dossier"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {Déplacer le dossier} other {Déplacer le fichier}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "Retour vers l'accueil"
|
||||
},
|
||||
@@ -1127,9 +1073,6 @@
|
||||
"files.upload-dropdown.uploads-left": {
|
||||
"defaultMessage": " - {count} restants"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "Déposez des {type, select, undefined {fichiers} other {{type}s}} ici pour mettre en ligne"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "Le nom ne doit contenir que des caractères alphanumériques, des tirets, des tirets bas, ou des espaces."
|
||||
},
|
||||
@@ -1502,18 +1445,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-title": {
|
||||
"defaultMessage": "Changer de loader est destructif"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "Associé le {projectType, select, server {projet du serveur} other {modpack}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "Version de {loader}"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "Vous devrez réinitialiser votre serveur pour changer de loader."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Réinstaller le modpack réinitialise le contenu {type, select, server {du serveur} other {de l'instance}} à son état originel, ce qui supprimera tous les mods ou le contenu que vous avez ajouté."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Réinstaller le modpack"
|
||||
},
|
||||
@@ -1544,9 +1481,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Dissocier"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Dissocier déconnecte définitivement cette {type, select, server {instance serveur} other {instance}} du projet {projectType, select, server {serveur} other {modpack}}, vous permettant de changer le loader et la version de Minecraft, mais vous ne recevrez plus les futures mises à jour."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Vérification en cours..."
|
||||
},
|
||||
@@ -1562,12 +1496,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Réinstaller le modpack"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "Réparer réinstalle le loader et les dépendances de Minecraft sans supprimer le contenu. Cela peut résoudre certains problème si votre {type, select, server {serveur ne se lance pas correctement} other {jeu ne se lance pas dû à des erreurs liées au launcher}}."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "Réparer {type, select, server {le serveur} other {l'instance}}"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Réparer"
|
||||
},
|
||||
@@ -3473,9 +3401,6 @@
|
||||
"servers.listing.notice.moderated": {
|
||||
"defaultMessage": "Votre serveur a été suspendu par action de modération. "
|
||||
},
|
||||
"servers.listing.notice.pending-change": {
|
||||
"defaultMessage": "Votre serveur sera {verb} au forfait {planSize} le <date>{formattedDate}</date>. "
|
||||
},
|
||||
"servers.listing.notice.provisioning": {
|
||||
"defaultMessage": "Veuillez patienter pendant que nous mettons en place votre serveur. Cela peut prendre jusqu'à 10 minutes."
|
||||
},
|
||||
@@ -4338,4 +4263,3 @@
|
||||
"defaultMessage": "Ignorer tout"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -242,12 +242,6 @@
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "אזהרת מחיקה"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "מחק {count} {itemType}{count, plural, one {} other {ים}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "מחק {itemType}{count, plural, one {} other {ים}}"
|
||||
},
|
||||
"content.diff-modal.added-count": {
|
||||
"defaultMessage": "{count} נוספו"
|
||||
},
|
||||
@@ -293,9 +287,6 @@
|
||||
"content.page-layout.share.label": {
|
||||
"defaultMessage": "שתף"
|
||||
},
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "מעדכן {סוגתוכן}..."
|
||||
},
|
||||
"files.move-modal.current-location": {
|
||||
"defaultMessage": "מיקום נוכחי"
|
||||
},
|
||||
@@ -524,9 +515,6 @@
|
||||
"label.rejected": {
|
||||
"defaultMessage": "נדחה"
|
||||
},
|
||||
"label.rewards-program-terms-agreement": {
|
||||
"defaultMessage": "אני מסכים ל </terms-link>תנאי תוכנית התגמולים <terms-link>"
|
||||
},
|
||||
"label.saved": {
|
||||
"defaultMessage": "נשמר"
|
||||
},
|
||||
@@ -1260,4 +1248,3 @@
|
||||
"defaultMessage": "יש לך שינויים שלא נשמרו."
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Nem sikerült betölteni az előfizetés adatait."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 nap"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/hónap"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/negyedév"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/év"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "Következő befizetés: <charge-date>{date}</charge-date> napon."
|
||||
},
|
||||
@@ -104,21 +92,9 @@
|
||||
"browse.offline": {
|
||||
"defaultMessage": "Jelenleg nincs internetkapcsolatod. Csatlakozz az internethez, hogy böngészhess a Modrinthon!"
|
||||
},
|
||||
"browse.search.placeholder": {
|
||||
"defaultMessage": "{projectType, select, mod {Modok} modpack {Modcsomagok} resourcepack {Forráscsomagok} shader {Shaderek} plugin {Bővítmények} datapack {Adatcsomagok} server {Szerverek} other {Projektek}} keresése..."
|
||||
},
|
||||
"browse.selected-projects-floating-bar.aria-label": {
|
||||
"defaultMessage": "Kiválasztott projektek"
|
||||
},
|
||||
"browse.selected-projects-floating-bar.install": {
|
||||
"defaultMessage": "{count} projekt letöltése"
|
||||
},
|
||||
"browse.selected-projects-floating-bar.selected-count": {
|
||||
"defaultMessage": "{count} projekt kiválasztva"
|
||||
},
|
||||
"browse.selected-projects-leave-modal.admonition-body": {
|
||||
"defaultMessage": "{count} projektet választottál ki telepítésre. Telepítsd őket most, vagy lépj vissza telepítés nélkül."
|
||||
},
|
||||
"browse.selected-projects-leave-modal.admonition-header": {
|
||||
"defaultMessage": "A kiválasztott projektek nincsenek telepítve"
|
||||
},
|
||||
@@ -326,9 +302,6 @@
|
||||
"content.card.select-project": {
|
||||
"defaultMessage": "{project} kiválasztása"
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-body": {
|
||||
"defaultMessage": "Biztosan frissíteni szeretnél {count} projektet a legújabb kompatibilis verziójára? Javasoljuk, hogy a tartalmakat egyenként frissítsd."
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-header": {
|
||||
"defaultMessage": "Frissítési figyelmeztetés"
|
||||
},
|
||||
@@ -338,21 +311,12 @@
|
||||
"content.confirm-bulk-update.shift-click-hint": {
|
||||
"defaultMessage": "Tartsd lenyomva a Shift-et, miközben az „Összes frissítése” gombra kattintasz, hogy a jövőben elkerüld ezt a megerősítést."
|
||||
},
|
||||
"content.confirm-bulk-update.update-button": {
|
||||
"defaultMessage": "{count} projekt frissítése"
|
||||
},
|
||||
"content.confirm-deletion.admonition-body": {
|
||||
"defaultMessage": "Egy mod törlése véglegesen befolyásolhatja a világodat, és tartalomhiányt vagy váratlanul problémákat okozhat a világ betöltésénél."
|
||||
},
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Törlési figyelmeztetés"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "{count} {itemType} törlése"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Projekt{count, plural, one {} other {ek}} törlése"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select, downgrade {A verzió visszaváltása} other {A frissítés}} kompatibilitási problémákat okozhat. A modcsomaghoz hozzáadott modok vagy tartalmak megmaradnak, de előfordulhat, hogy nem lesznek kompatibilisek az új verzióval."
|
||||
},
|
||||
@@ -419,9 +383,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "A megerősítés kihagyásához tartsd lenyomva a Shift billentyűt a kattintás közben."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Javasoljuk a biztonsági mentés készítését a továbbhaladás előtt, hogy ha valami nem működne, vissza tudd állítani a {type, select, server {világot} other {profilt}}."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "A modpacked tartalma itt tallható!"
|
||||
},
|
||||
@@ -440,9 +401,6 @@
|
||||
"content.page-layout.busy-description": {
|
||||
"defaultMessage": "Kérlek várd meg a művelet befejezését a tartalom szerkesztése előtt."
|
||||
},
|
||||
"content.page-layout.empty.hint": {
|
||||
"defaultMessage": "Böngéssz vagy tölts fel projekteket a kezdéshez"
|
||||
},
|
||||
"content.page-layout.empty.modpack-hint": {
|
||||
"defaultMessage": "További tartalom hozzáadása ehhez a modpackhez"
|
||||
},
|
||||
@@ -464,9 +422,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Kérjük, várjon"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Keresés {count} {contentType, select, mod {mod} mods {mod} plugin {bővítmény} plugins {bővítmény} datapack {adatcsomag} datapacks {adatcsomag} project {projekt} projects {projekt} other {projekt}} között..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Fájlnevek"
|
||||
},
|
||||
@@ -506,33 +461,6 @@
|
||||
"content.selection-bar.all-already-enabled": {
|
||||
"defaultMessage": "Az összes kijelölt tartalom már engedélyezve lett"
|
||||
},
|
||||
"content.selection-bar.bulk.deleting": {
|
||||
"defaultMessage": "{progress}/{total} {contentType, select, mod {mod} mods {mod} plugin {bővítmény} plugins {bővítmény} datapack {adatcsomag} datapacks {adatcsomag} project {projekt} projects {projekt} other {projekt}} törlése..."
|
||||
},
|
||||
"content.selection-bar.bulk.deleting-waiting": {
|
||||
"defaultMessage": "{contentType, select, mod {Mod} mods {Modok} plugin {Bővítmény} plugins {Bővítmények} datapack {Adatcsomag} datapacks {Adatcsomagok} project {Projekt} projects {Projektek} other {{count, plural, one {Projekt} other {Projektek}}}} törlése..."
|
||||
},
|
||||
"content.selection-bar.bulk.disabling": {
|
||||
"defaultMessage": "{progress}/{total} {contentType, select, mod {mod} mods {mod} plugin {bővítmény} plugins {bővítmény} datapack {adatcsomag} datapacks {adatcsomag} project {projekt} projects {projekt} other {projekt}} letiltása..."
|
||||
},
|
||||
"content.selection-bar.bulk.disabling-waiting": {
|
||||
"defaultMessage": "{contentType, select, mod {Mod} mods {Modok} plugin {Bővítmény} plugins {Bővítmények} datapack {Adatcsomag} datapacks {Adatcsomagok} project {Projekt} projects {Projektek} other {{count, plural, one {Projekt} other {Projektek}}}} letiltása..."
|
||||
},
|
||||
"content.selection-bar.bulk.enabling": {
|
||||
"defaultMessage": "{progress}/{total} {contentType, select, mod {mod} mods {mod} plugin {bővítmény} plugins {bővítmény} datapack {adatcsomag} datapacks {adatcsomag} project {projekt} projects {projekt} other {projekt}} engedélyezése..."
|
||||
},
|
||||
"content.selection-bar.bulk.enabling-waiting": {
|
||||
"defaultMessage": "{contentType, select, mod {Mod} mods {Modok} plugin {Bővítmény} plugins {Bővítmények} datapack {Adatcsomag} datapacks {Adatcsomagok} project {Projekt} projects {Projektek} other {{count, plural, one {Projekt} other {Projektek}}}} engedélyezése..."
|
||||
},
|
||||
"content.selection-bar.bulk.updating": {
|
||||
"defaultMessage": "{progress}/{total} {contentType, select, mod {mod} mods {mod} plugin {bővítmény} plugins {bővítmény} datapack {adatcsomag} datapacks {adatcsomag} project {projekt} projects {projekt} other {projekt}} frisstése..."
|
||||
},
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "{contentType, select, mod {Mod} mods {Modok} plugin {Bővítmény} plugins {Bővítmények} datapack {Adatcsomag} datapacks {Adatcsomagok} project {Projekt} projects {Projektek} other {{count, plural, one {Projekt} other {Projektek}}}} frissítése..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count} {contentType, select, mod {mod} mods {mod} plugin {bővítmény} plugins {bővítmény} datapack {adatcsomag} datapacks {adatcsomag} project {projekt} projects {projekt} other {projekt}} kiválasztva"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number} kiválasztva"
|
||||
},
|
||||
@@ -548,9 +476,6 @@
|
||||
"creation-flow.button.import": {
|
||||
"defaultMessage": "Importálás"
|
||||
},
|
||||
"creation-flow.button.import-instances": {
|
||||
"defaultMessage": "{count} profil importálása"
|
||||
},
|
||||
"creation-flow.button.setup-server": {
|
||||
"defaultMessage": "Szerver beállítása"
|
||||
},
|
||||
@@ -809,12 +734,6 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} fájl felülírva"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "{type, select, directory {Mappa} other {Fájl}} létrehozása"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {Mappa} other {Fájl}} létrehozása"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "pl. saját-mappa"
|
||||
},
|
||||
@@ -827,9 +746,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Fájl törlése"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {Ez a mappa és annak teljes tartalma véglegesen törlődik. A műveletet nem lehet visszavonni.} other {Ez a fájl véglegesen törlődik. A műveletet nem lehet visszavonni.}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "A fájl tartalmát nem sikerült betölteni."
|
||||
},
|
||||
@@ -935,9 +851,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "pl. /saját-mappa"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {Mappa áthelyezése} other {Fájl áthelyezése}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "Vissza a kezdőlapra"
|
||||
},
|
||||
@@ -992,9 +905,6 @@
|
||||
"files.rename-modal.new-name-label": {
|
||||
"defaultMessage": "Új név"
|
||||
},
|
||||
"files.row.item-count": {
|
||||
"defaultMessage": "{count} fájl"
|
||||
},
|
||||
"files.table-header.created": {
|
||||
"defaultMessage": "Létrehozva"
|
||||
},
|
||||
@@ -1040,9 +950,6 @@
|
||||
"files.upload-dropdown.unexpected-error": {
|
||||
"defaultMessage": "Váratlan hiba történt."
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "Húzd ide a {type, select, undefined {fájlokat} other {{type} fájlokat}} a feltöltéshez"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "A név kizárólag betűket, számokat, kötőjeleket, aláhúzásokat vagy szóközöket tartalmazhat."
|
||||
},
|
||||
@@ -1190,9 +1097,6 @@
|
||||
"form.placeholder.state": {
|
||||
"defaultMessage": "Megye/tartomány megadása"
|
||||
},
|
||||
"format.bytes.0": {
|
||||
"defaultMessage": "{count} bájt"
|
||||
},
|
||||
"format.bytes.1": {
|
||||
"defaultMessage": "{count, number} KiB"
|
||||
},
|
||||
@@ -1373,18 +1277,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-body": {
|
||||
"defaultMessage": "A betöltő módosításakor az összes telepített tartalom letiltásra kerül. Javasoljuk ehelyett a szerver alaphelyzetbe állítását."
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "Összekapcsolt {projectType, select, server {szerverprojekt} other {modcsomag}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "{loader} verzió"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "A betöltő megváltoztatásához vissza kell állítanod a szervert."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Re-installing the modpack resets the {type, select, server {server's} other {instance's}} content to its original state, removing any mods or content you have added."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Modpack újratelepítése"
|
||||
},
|
||||
@@ -1412,9 +1310,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Leválasztás"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "A leválasztás véglegesen leválasztja ezt a {type, select, server {szervert} other {profilt}} a {projectType, select, server {szerver} other {modcsomag}} projektjéről, lehetővé téve a betöltő és a Minecraft verziójának módosítását, de a jövőbeni frissítéseket nem kapod meg."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Ellenőrzés…"
|
||||
},
|
||||
@@ -1430,12 +1325,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Modcsomag újratelepítése"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "A javítás során a rendszer újratelepíti a betöltőt és a Minecraft függőségeit anélkül, hogy törölné a tartalmaidat. Ez megoldhatja a problémákat, ha a {type, select, server {szerver nem indul el megfelelően} other {a játék nem indul el a betöltővel kapcsolatos hibák miatt}}."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "{type, select, server {Szerver} other {Profil}} javítása"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Javítás"
|
||||
},
|
||||
@@ -1454,9 +1343,6 @@
|
||||
"instance.worlds.game_mode.unknown": {
|
||||
"defaultMessage": "Ismeretlen játékmód"
|
||||
},
|
||||
"instances.content-install.compatible-count": {
|
||||
"defaultMessage": "{count} kompatiblis profil"
|
||||
},
|
||||
"instances.content-install.existing-tab": {
|
||||
"defaultMessage": "Meglévő profil"
|
||||
},
|
||||
@@ -1514,9 +1400,6 @@
|
||||
"instances.modpack-content-modal.no-results": {
|
||||
"defaultMessage": "Nincsen olyan projekt ami keresnél."
|
||||
},
|
||||
"instances.modpack-content-modal.search-placeholder": {
|
||||
"defaultMessage": "Keresés {count, number} projekt között"
|
||||
},
|
||||
"instances.updater-modal.badge.current": {
|
||||
"defaultMessage": "Jelenlegi"
|
||||
},
|
||||
@@ -2258,72 +2141,48 @@
|
||||
"project-type.datapack.category": {
|
||||
"defaultMessage": "Adatcsomagok"
|
||||
},
|
||||
"project-type.datapack.lowercase": {
|
||||
"defaultMessage": "adatcsomag"
|
||||
},
|
||||
"project-type.mod.capital": {
|
||||
"defaultMessage": "{count, plural,one {Mod} other {Modok}}"
|
||||
},
|
||||
"project-type.mod.category": {
|
||||
"defaultMessage": "Modok"
|
||||
},
|
||||
"project-type.mod.lowercase": {
|
||||
"defaultMessage": "mod"
|
||||
},
|
||||
"project-type.modpack.capital": {
|
||||
"defaultMessage": "{count, plural, one {Modcsomag} other {Modcsomagok}}"
|
||||
},
|
||||
"project-type.modpack.category": {
|
||||
"defaultMessage": "Modcsomagok"
|
||||
},
|
||||
"project-type.modpack.lowercase": {
|
||||
"defaultMessage": "modcsomag"
|
||||
},
|
||||
"project-type.plugin.capital": {
|
||||
"defaultMessage": "{count, plural,one {Bővítmény} other {Bővítmények}}"
|
||||
},
|
||||
"project-type.plugin.category": {
|
||||
"defaultMessage": "Bővítmények"
|
||||
},
|
||||
"project-type.plugin.lowercase": {
|
||||
"defaultMessage": "bővítmény"
|
||||
},
|
||||
"project-type.project.capital": {
|
||||
"defaultMessage": "{count, plural, one {Projekt} other {Projektek}}"
|
||||
},
|
||||
"project-type.project.category": {
|
||||
"defaultMessage": "Projektek"
|
||||
},
|
||||
"project-type.project.lowercase": {
|
||||
"defaultMessage": "projekt"
|
||||
},
|
||||
"project-type.resourcepack.capital": {
|
||||
"defaultMessage": "{count, plural,one {Forráscsomag} other {Forráscsomagok}}"
|
||||
},
|
||||
"project-type.resourcepack.category": {
|
||||
"defaultMessage": "Forráscsomagok"
|
||||
},
|
||||
"project-type.resourcepack.lowercase": {
|
||||
"defaultMessage": "forráscsomag"
|
||||
},
|
||||
"project-type.server.capital": {
|
||||
"defaultMessage": "{count, plural,one {Szerver} other {Szerverek}}"
|
||||
},
|
||||
"project-type.server.category": {
|
||||
"defaultMessage": "Szerverek"
|
||||
},
|
||||
"project-type.server.lowercase": {
|
||||
"defaultMessage": "szerver"
|
||||
},
|
||||
"project-type.shader.capital": {
|
||||
"defaultMessage": "{count, plural,one {Shader} other {Shaderek}}"
|
||||
},
|
||||
"project-type.shader.category": {
|
||||
"defaultMessage": "Shaderek"
|
||||
},
|
||||
"project-type.shader.lowercase": {
|
||||
"defaultMessage": "shader"
|
||||
},
|
||||
"project.about.compatibility.environments": {
|
||||
"defaultMessage": "Támogatott környezettek"
|
||||
},
|
||||
@@ -2447,9 +2306,6 @@
|
||||
"project.about.tags.title": {
|
||||
"defaultMessage": "Címkék"
|
||||
},
|
||||
"project.download-count-tooltip": {
|
||||
"defaultMessage": "{count, number} letöltés"
|
||||
},
|
||||
"project.environment.client-and-server.title": {
|
||||
"defaultMessage": "Kliens és szerver, mindkettőn kötelező"
|
||||
},
|
||||
@@ -2504,15 +2360,9 @@
|
||||
"project.environment.unknown.title": {
|
||||
"defaultMessage": "Ismeretlen környezet"
|
||||
},
|
||||
"project.follower-count-tooltip": {
|
||||
"defaultMessage": "{count, number} követő"
|
||||
},
|
||||
"project.online-player-count": {
|
||||
"defaultMessage": "{count, number} online"
|
||||
},
|
||||
"project.online-player-count.tooltip": {
|
||||
"defaultMessage": "{count} játékos online"
|
||||
},
|
||||
"project.recent-plays": {
|
||||
"defaultMessage": "{count} {countPlural, plural,one {jelenleg játszott} other {jelenleg játszottak}}"
|
||||
},
|
||||
@@ -3044,12 +2894,6 @@
|
||||
"servers.backups.admonition.creating-backup.title": {
|
||||
"defaultMessage": "Biztonsági mentés készítése"
|
||||
},
|
||||
"servers.backups.bulk-bar.deleting": {
|
||||
"defaultMessage": "{total} biztonsági mentés törlése..."
|
||||
},
|
||||
"servers.backups.bulk-bar.selected-count": {
|
||||
"defaultMessage": "{count} biztonsági mentés kiválasztva"
|
||||
},
|
||||
"servers.backups.delete-modal.admonition-body": {
|
||||
"defaultMessage": "A törlés után {count, plural, one {ez a biztonsági mentés nem} other {ezek a biztonsági mentések nem}} állítható{count, plural, one {} other {ak}} vissza. A törlés végleges."
|
||||
},
|
||||
@@ -3059,9 +2903,6 @@
|
||||
"servers.backups.delete-modal.backups-label": {
|
||||
"defaultMessage": "{count, plural, one {Biztonsági mentés} other {Biztonsági mentés ({count})}}"
|
||||
},
|
||||
"servers.backups.delete-modal.confirm": {
|
||||
"defaultMessage": "{count} biztonsági mentés törlése"
|
||||
},
|
||||
"servers.backups.delete-modal.header": {
|
||||
"defaultMessage": "{count, plural, one {Biztonsági mentés} other {Biztonsági mentések}} törlése"
|
||||
},
|
||||
@@ -3191,9 +3032,6 @@
|
||||
"servers.listing.new-label": {
|
||||
"defaultMessage": "Új"
|
||||
},
|
||||
"servers.listing.notice.files-kept-for-download": {
|
||||
"defaultMessage": "A fájljaid még <days-remaining>{daysRemaining} napig</days-remaining> lesznek megőrizve. Vedd fel a kapcsolatot az ügyfélszolgálattal, hogy letölthesd őket, mielőtt törlésre kerülnek."
|
||||
},
|
||||
"servers.listing.notice.files-preserved-after-cancellation": {
|
||||
"defaultMessage": "A fájlok a lemondást követően 30 napig megmaradnak."
|
||||
},
|
||||
@@ -3260,9 +3098,6 @@
|
||||
"servers.manage.resubscribe-success.title": {
|
||||
"defaultMessage": "Siker"
|
||||
},
|
||||
"servers.manage.search-placeholder": {
|
||||
"defaultMessage": "Keresés {count} szerver között..."
|
||||
},
|
||||
"servers.manage.servers-title": {
|
||||
"defaultMessage": "Modrinth Hosting"
|
||||
},
|
||||
@@ -3275,9 +3110,6 @@
|
||||
"servers.manage.settings-hint.title": {
|
||||
"defaultMessage": "A szerver beállításait áthelyeztük"
|
||||
},
|
||||
"servers.medal-listing.countdown.remaining": {
|
||||
"defaultMessage": "<days-count>{days}</days-count> nap <hours-count>{hours}</hours-count> óra <minutes-count>{minutes}</minutes-count> perc és <seconds-count>{seconds}</seconds-count> másodperc van hátra..."
|
||||
},
|
||||
"servers.medal-listing.new-server-label": {
|
||||
"defaultMessage": "Új szerver"
|
||||
},
|
||||
@@ -3967,9 +3799,5 @@
|
||||
},
|
||||
"ui.confirm-leave-modal.header": {
|
||||
"defaultMessage": "Vannak nem mentett módosításaid"
|
||||
},
|
||||
"ui.stacked-admonitions.alert-count": {
|
||||
"defaultMessage": "{count} figyelmeztetés"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -62,18 +62,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Gagal memuat perincian langganan."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 hari"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/bulan"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/kuartal"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/tahun"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "Tagihan Anda berikutnya akan jatuh tempo pada <charge-date>{date}</charge-date>."
|
||||
},
|
||||
@@ -287,21 +275,12 @@
|
||||
"content.confirm-bulk-update.shift-click-hint": {
|
||||
"defaultMessage": "Tahan tombol Shift saat mengeklik \"Perbarui semua\" untuk melewati pesan konfirmasi ini untuk kedepannya."
|
||||
},
|
||||
"content.confirm-bulk-update.update-button": {
|
||||
"defaultMessage": "Perbarui {count, plural, other {# proyek}}"
|
||||
},
|
||||
"content.confirm-deletion.admonition-body": {
|
||||
"defaultMessage": "Menghapus mod bisa berdampak pada dunia Anda dan mungkin menyebabkan konten hilang atau masalah tak terduga saat dunia dimuat kembali."
|
||||
},
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Peringatan penghapusan"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Haous {count} {itemType}{count, plural, other {}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Hapus {itemType}{count, plural, other {}}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select, downgrade {Menurunkan versi} other {Memperbarui versi}} dapat menyebabkan masalah kompatibilitas. Mod atau konten yang Anda tambahkan di atas paket akan tetap tersimpan, tetapi mungkin tidak cocok dengan versi baru."
|
||||
},
|
||||
@@ -368,9 +347,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Tahan tombol Shift saat mengeklik untuk melewati pesan konfirmasi."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Kami menyarankan Anda membuat cadangan terlebih dahulu sebelum melanjutkan, sehingga Anda dapat memulihkan {type, select, server {dunia} other {instans}} Anda bila terjadi masalah."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "Konten paket mod Anda kini dapat ditemukan di sini!"
|
||||
},
|
||||
@@ -413,9 +389,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Mohon tunggu"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Cari {count} {contentType}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Nama berkas"
|
||||
},
|
||||
@@ -479,9 +452,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "Memperbarui {contentType}..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count} {contentType} dipilih"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number} terpilih"
|
||||
},
|
||||
@@ -500,18 +470,9 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} tertimpa"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Tertimpa"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "Berkas-berkas akan ditimpa"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "Buat {type, select, directory {folder} other {berkas}}"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "Buat {type, select, directory {folder} other {berkas}}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "cth: folder-saya"
|
||||
},
|
||||
@@ -524,9 +485,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Hapus berkas"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {Folder ini beserta seluruh isinya akan dihapus secara permanen. Tindakan ini tidak dapat dibatalkan.} other {Berkas ini akan dihapus secara permanen. Tindakan ini tidak dapat dibatalkan.}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "Tidak dapat memuat isi berkas."
|
||||
},
|
||||
@@ -797,9 +755,6 @@
|
||||
"instances.modpack-content-modal.no-results": {
|
||||
"defaultMessage": "Tidak ada proyek yang cocok dengan pencarian Anda."
|
||||
},
|
||||
"instances.modpack-content-modal.search-placeholder": {
|
||||
"defaultMessage": "Cari {count, number} {count, plural, other {proyek}}"
|
||||
},
|
||||
"instances.updater-modal.badge.current": {
|
||||
"defaultMessage": "Saat ini"
|
||||
},
|
||||
@@ -1250,69 +1205,27 @@
|
||||
"project-type.all": {
|
||||
"defaultMessage": "Semua"
|
||||
},
|
||||
"project-type.datapack.capital": {
|
||||
"defaultMessage": "{count, plural, other {Paket Data}}"
|
||||
},
|
||||
"project-type.datapack.category": {
|
||||
"defaultMessage": "Paket Data"
|
||||
},
|
||||
"project-type.datapack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {paket data}}"
|
||||
},
|
||||
"project-type.mod.capital": {
|
||||
"defaultMessage": "{count, plural, other {Mod}}"
|
||||
},
|
||||
"project-type.mod.category": {
|
||||
"defaultMessage": "Mod"
|
||||
},
|
||||
"project-type.mod.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {mod}}"
|
||||
},
|
||||
"project-type.modpack.capital": {
|
||||
"defaultMessage": "{count, plural, other {Paket Mod}}"
|
||||
},
|
||||
"project-type.modpack.category": {
|
||||
"defaultMessage": "Paket Mod"
|
||||
},
|
||||
"project-type.modpack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {paket mod}}"
|
||||
},
|
||||
"project-type.plugin.capital": {
|
||||
"defaultMessage": "{count, plural, other {Pasang-masuk}}"
|
||||
},
|
||||
"project-type.plugin.category": {
|
||||
"defaultMessage": "Pasang-masuk"
|
||||
},
|
||||
"project-type.plugin.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {pasang-masuk}}"
|
||||
},
|
||||
"project-type.project.capital": {
|
||||
"defaultMessage": "{count, plural, other {Proyek}}"
|
||||
},
|
||||
"project-type.project.category": {
|
||||
"defaultMessage": "Proyek"
|
||||
},
|
||||
"project-type.project.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {proyek}}"
|
||||
},
|
||||
"project-type.resourcepack.capital": {
|
||||
"defaultMessage": "{count, plural, other {Paket Sumber}}"
|
||||
},
|
||||
"project-type.resourcepack.category": {
|
||||
"defaultMessage": "Paket Sumber"
|
||||
},
|
||||
"project-type.resourcepack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {paket sumber}}"
|
||||
},
|
||||
"project-type.server.capital": {
|
||||
"defaultMessage": "{count, plural, other {Server}}"
|
||||
},
|
||||
"project-type.server.category": {
|
||||
"defaultMessage": "Server"
|
||||
},
|
||||
"project-type.server.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {server}}"
|
||||
},
|
||||
"project-type.shader.capital": {
|
||||
"defaultMessage": "{count, plural, one {Efek Gambar} other {Efek Gambar}}"
|
||||
},
|
||||
@@ -1421,9 +1334,6 @@
|
||||
"project.about.server.title": {
|
||||
"defaultMessage": "Perincian server"
|
||||
},
|
||||
"project.download-count-tooltip": {
|
||||
"defaultMessage": "{count, number} {count, plural, other {pengunduhan}}"
|
||||
},
|
||||
"project.environment.client-and-server.description": {
|
||||
"defaultMessage": "Diperlukan pada klien dan server."
|
||||
},
|
||||
@@ -1478,9 +1388,6 @@
|
||||
"project.environment.unknown.title": {
|
||||
"defaultMessage": "Lingkungan tidak dikenal"
|
||||
},
|
||||
"project.follower-count-tooltip": {
|
||||
"defaultMessage": "{count, number} {count, plural, other {pengikut}}"
|
||||
},
|
||||
"project.online-player-count": {
|
||||
"defaultMessage": "{count, number} orang daring"
|
||||
},
|
||||
@@ -2099,9 +2006,6 @@
|
||||
"settings.language.languages.search-field.placeholder": {
|
||||
"defaultMessage": "Cari bahasa..."
|
||||
},
|
||||
"settings.language.languages.search-results-announcement": {
|
||||
"defaultMessage": "{matches, plural, =0 {Tidak ada bahasa yang cocok} other {# bahasa cocok}} dengan pencarian Anda."
|
||||
},
|
||||
"settings.language.languages.search.no-results": {
|
||||
"defaultMessage": "Tidak ada bahasa yang cocok dengan pencarian Anda."
|
||||
},
|
||||
@@ -2541,4 +2445,3 @@
|
||||
"defaultMessage": "Anda memiliki perubahan yang belum tersimpan."
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Impossibile caricare i dati dell'abbonamento."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 giorni"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/mese"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/trimestre"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/anno"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "Il prossimo addebito avverrà il <charge-date>{date}</charge-date>."
|
||||
},
|
||||
@@ -104,9 +92,6 @@
|
||||
"browse.offline": {
|
||||
"defaultMessage": "Al momento sembri offline. Connettiti a Internet per usare Modrinth!"
|
||||
},
|
||||
"browse.search.placeholder": {
|
||||
"defaultMessage": "Cerca {projectType, select, mod {mod} modpack {pacchetti di mod} resourcepack {pacchetti di risorse} shader {shader} plugin {plugin} datapack {pacchetti di dati} server {server} other {progetti}}..."
|
||||
},
|
||||
"browse.selected-projects-floating-bar.aria-label": {
|
||||
"defaultMessage": "Progetti selezionati"
|
||||
},
|
||||
@@ -347,12 +332,6 @@
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Avviso di rimozione"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Elimina {count} {count, plural, one {{itemType, select, project {progetto} version {versione} user {utente} other {contenuto}}} other {{itemType, select, project {progetti} version {versioni} user {utenti} other {contenuti}}}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Elimina {count, plural, one {{itemType, select, project {progetto} version {versione} user {utente} other {contenuto}}} other {{itemType, select, project {progetti} version {versioni} user {utenti} other {contenuti}}}}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select, downgrade {Retrocedere} other {Aggiornare}} potrebbe causare problemi di compatibilità. Le mod o i contenuti aggiunti al pacchetto saranno tenuti, ma potrebbero non essere compatibili con l'altra versione."
|
||||
},
|
||||
@@ -377,9 +356,6 @@
|
||||
"content.confirm-unlink.unlink-button": {
|
||||
"defaultMessage": "Scollega"
|
||||
},
|
||||
"content.diff-modal.added-count": {
|
||||
"defaultMessage": "{count, plural, one {# aggiunta} other {# aggiunte}}"
|
||||
},
|
||||
"content.diff-modal.diff-type.added": {
|
||||
"defaultMessage": "Aggiunto (dipendenza)"
|
||||
},
|
||||
@@ -389,15 +365,9 @@
|
||||
"content.diff-modal.diff-type.updated": {
|
||||
"defaultMessage": "Aggiornato"
|
||||
},
|
||||
"content.diff-modal.removed-count": {
|
||||
"defaultMessage": "{count, plural, one {# rimozione} other {# rimozioni}}"
|
||||
},
|
||||
"content.diff-modal.unknown-content-body": {
|
||||
"defaultMessage": "Non è stato possibile analizzare alcuni contenuti sul tuo server, pertanto potrebbero essere affetti da questa modifica."
|
||||
},
|
||||
"content.diff-modal.updated-count": {
|
||||
"defaultMessage": "{count, plural, one {# aggiornamento} other {# aggiornamenti}}"
|
||||
},
|
||||
"content.filter.disabled": {
|
||||
"defaultMessage": "Disabilitati"
|
||||
},
|
||||
@@ -431,9 +401,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Salta la conferma tenendo premuto Shift."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Si consiglia di creare un backup prima di procedere, così da poterlo ripristinare nel caso qualcosa {type, select, server {nel tuo mondo} other {nella tua istanza}} vada storto."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "I contenuti del tuo pacchetto ora si trovano qui!"
|
||||
},
|
||||
@@ -476,9 +443,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Attendere"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Cerca tra {count} {contentType}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Nomi dei file"
|
||||
},
|
||||
@@ -542,12 +506,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "Aggiornando {contentType}..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count} {contentType, select, mod {mod selezionata} mods {mod selezionate} plugin {plugin selezionato} plugins {plugin selezionati} datapack {pacchetto selezionato} datapacks {pacchetti selezionati} project {progetto selezionato} projects {progetti selezionati} other {{count, plural, one {contenuto selezionato} other {contenuti selezionati}}}}"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, plural, one {# selezionato} other {# selezionati}}"
|
||||
},
|
||||
"creation-flow.button.create-instance": {
|
||||
"defaultMessage": "Crea istanza"
|
||||
},
|
||||
@@ -851,18 +809,9 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} sovrascritti"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Sovrascritto"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "I file verranno sovrascritti"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "Crea {type, select, directory {cartella} other {file}}"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "Crea {type, select, directory {una cartella} other {un file}}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "es. la-mia-cartella"
|
||||
},
|
||||
@@ -875,9 +824,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Elimina file"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {Questa cartella e tutti i suoi contenuti verranno eliminati} other {Questo file verrà eliminato}} per sempre. Questa azione non può essere annullata."
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "Impossibile caricare i contenuti del file."
|
||||
},
|
||||
@@ -989,9 +935,6 @@
|
||||
"files.layout.extraction-started-title": {
|
||||
"defaultMessage": "Estrazione iniziata"
|
||||
},
|
||||
"files.layout.selected-count": {
|
||||
"defaultMessage": "{count, plural, one {# selezionato} other {# selezionati}}"
|
||||
},
|
||||
"files.layout.unsaved-changes": {
|
||||
"defaultMessage": "Hai modifiche non salvate."
|
||||
},
|
||||
@@ -1004,9 +947,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "es. /la-mia-cartella"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {Sposta cartella} other {Sposta file}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "Torna alla home"
|
||||
},
|
||||
@@ -1124,12 +1064,6 @@
|
||||
"files.upload-dropdown.unexpected-error": {
|
||||
"defaultMessage": "Si è verificato un errore imprevisto."
|
||||
},
|
||||
"files.upload-dropdown.uploads-left": {
|
||||
"defaultMessage": " - {count, select, one {# rimanente} other {# rimanenti}}"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "Trascina qui i file per caricarli"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "Il nome può contenere solo lettere, numeri, spazi o trattini alti o bassi."
|
||||
},
|
||||
@@ -1277,9 +1211,6 @@
|
||||
"form.placeholder.state": {
|
||||
"defaultMessage": "Inserisci lo stato/provincia"
|
||||
},
|
||||
"format.bytes.0": {
|
||||
"defaultMessage": "{count, number} byte"
|
||||
},
|
||||
"format.bytes.1": {
|
||||
"defaultMessage": "{count, number} KiB"
|
||||
},
|
||||
@@ -1502,18 +1433,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-title": {
|
||||
"defaultMessage": "Cambiare loader è un'azione distruttiva"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "{projectType, select, server {Server} other {Pacchetto}} collegato"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "Versione di {loader}"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "Dovrai reimpostare il server prima di cambiare loader."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Reinstallare il pacchetto di mod reimposterà i contenuti {type, select, server {del tuo server} other {della tua istanza}} al loro stato originario, rimuovendo qualsiasi mod o contenuti aggiunti."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Reinstalla pacchetto di mod"
|
||||
},
|
||||
@@ -1544,9 +1469,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Scollega"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Scollegare disconnetterà {type, select, server {questo server} other {questa istanza}} dal {projectType, select, server {server} other {pacchetto di mod}} permanentemente. Questo ti permetterà di cambiare loader e versione di Minecraft, ma non riceverai aggiornamenti futuri."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Verificando..."
|
||||
},
|
||||
@@ -1562,12 +1484,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Reinstalla pacchetto"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "Riparare reinstallerà il loader e le dipendenze di Minecraft senza rimuovere i contenuti. Se il tuo {type, select, server {server non si avvia correttamente} other {gioco non si avvia per colpa del launcher}}, prova questa opzione."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "Riparazione {type, select, server {del server} other {dell'istanza}}"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Ripara"
|
||||
},
|
||||
@@ -2408,15 +2324,9 @@
|
||||
"project-type.datapack.lowercase": {
|
||||
"defaultMessage": "pacchett{count, plural, one {o} other {i}} di dati"
|
||||
},
|
||||
"project-type.mod.capital": {
|
||||
"defaultMessage": "Mod"
|
||||
},
|
||||
"project-type.mod.category": {
|
||||
"defaultMessage": "Mod"
|
||||
},
|
||||
"project-type.mod.lowercase": {
|
||||
"defaultMessage": "mod"
|
||||
},
|
||||
"project-type.modpack.capital": {
|
||||
"defaultMessage": "Pacchett{count, plural, one {o} other {i}} di mod"
|
||||
},
|
||||
@@ -2426,15 +2336,9 @@
|
||||
"project-type.modpack.lowercase": {
|
||||
"defaultMessage": "pacchett{count, plural, one {o} other {i}} di mod"
|
||||
},
|
||||
"project-type.plugin.capital": {
|
||||
"defaultMessage": "Plugin"
|
||||
},
|
||||
"project-type.plugin.category": {
|
||||
"defaultMessage": "Plugin"
|
||||
},
|
||||
"project-type.plugin.lowercase": {
|
||||
"defaultMessage": "plugin"
|
||||
},
|
||||
"project-type.project.capital": {
|
||||
"defaultMessage": "Progett{count, plural, one {o} other {i}}"
|
||||
},
|
||||
@@ -2453,24 +2357,12 @@
|
||||
"project-type.resourcepack.lowercase": {
|
||||
"defaultMessage": "pacchett{count, plural, one {o} other {i}} di risorse"
|
||||
},
|
||||
"project-type.server.capital": {
|
||||
"defaultMessage": "Server"
|
||||
},
|
||||
"project-type.server.category": {
|
||||
"defaultMessage": "Server"
|
||||
},
|
||||
"project-type.server.lowercase": {
|
||||
"defaultMessage": "server"
|
||||
},
|
||||
"project-type.shader.capital": {
|
||||
"defaultMessage": "Shader"
|
||||
},
|
||||
"project-type.shader.category": {
|
||||
"defaultMessage": "Shader"
|
||||
},
|
||||
"project-type.shader.lowercase": {
|
||||
"defaultMessage": "shader"
|
||||
},
|
||||
"project.about.compatibility.environments": {
|
||||
"defaultMessage": "Ambienti supportati"
|
||||
},
|
||||
@@ -2594,9 +2486,6 @@
|
||||
"project.about.tags.title": {
|
||||
"defaultMessage": "Tag"
|
||||
},
|
||||
"project.download-count-tooltip": {
|
||||
"defaultMessage": "{count, number} download"
|
||||
},
|
||||
"project.environment.client-and-server.description": {
|
||||
"defaultMessage": "Necessario sul client e sul server."
|
||||
},
|
||||
@@ -2663,9 +2552,6 @@
|
||||
"project.environment.unknown.title": {
|
||||
"defaultMessage": "Ambiente sconosciuto"
|
||||
},
|
||||
"project.follower-count-tooltip": {
|
||||
"defaultMessage": "{count, number} follower"
|
||||
},
|
||||
"project.online-player-count": {
|
||||
"defaultMessage": "{count, number} online"
|
||||
},
|
||||
@@ -3278,12 +3164,6 @@
|
||||
"servers.backups.admonition.restoring-backup.title": {
|
||||
"defaultMessage": "Ripristinando dal backup..."
|
||||
},
|
||||
"servers.backups.bulk-bar.aria-label": {
|
||||
"defaultMessage": "{count, plural, =0 {Operazioni da effettuare sui backup} one {Operazioni da effettuare sul backup selezionato} other {Operazioni da effettuare su # backup selezionati}}"
|
||||
},
|
||||
"servers.backups.bulk-bar.deleting": {
|
||||
"defaultMessage": "Eliminando {total} backup..."
|
||||
},
|
||||
"servers.backups.bulk-bar.selected-count": {
|
||||
"defaultMessage": "{count, plural, one {# backup selezionato} other {# backup selezionati}}"
|
||||
},
|
||||
@@ -3299,9 +3179,6 @@
|
||||
"servers.backups.delete-modal.confirm": {
|
||||
"defaultMessage": "Elimina{count, plural, one {} other { #}} backup"
|
||||
},
|
||||
"servers.backups.delete-modal.header": {
|
||||
"defaultMessage": "Elimina backup"
|
||||
},
|
||||
"servers.backups.empty.description": {
|
||||
"defaultMessage": "Prova a creare il tuo primo backup!"
|
||||
},
|
||||
@@ -3464,18 +3341,12 @@
|
||||
"servers.listing.new-label": {
|
||||
"defaultMessage": "Nuovo"
|
||||
},
|
||||
"servers.listing.notice.files-kept-for-download": {
|
||||
"defaultMessage": "I file saranno preservati ancora per <days-remaining>{daysRemaining, plural, one {# giorno} other {# giorni}}</days-remaining>. Contatta l'assistenza per scaricarli prima che verranno eliminati. "
|
||||
},
|
||||
"servers.listing.notice.files-preserved-after-cancellation": {
|
||||
"defaultMessage": "I file saranno preservati per 30 giorni dopo l'annullamento."
|
||||
},
|
||||
"servers.listing.notice.moderated": {
|
||||
"defaultMessage": "Il server è stato sospeso dal team di moderazione. "
|
||||
},
|
||||
"servers.listing.notice.pending-change": {
|
||||
"defaultMessage": "Il server passerà al piano \"{planSize}\" il <date>{formattedDate}</date>. "
|
||||
},
|
||||
"servers.listing.notice.provisioning": {
|
||||
"defaultMessage": "Attendi mentre prepariamo il tuo server. Potrebbe richiedere fino a 10 minuti."
|
||||
},
|
||||
@@ -3581,9 +3452,6 @@
|
||||
"servers.manage.resubscribe-success.title": {
|
||||
"defaultMessage": "Rinnovo riuscito"
|
||||
},
|
||||
"servers.manage.search-placeholder": {
|
||||
"defaultMessage": "Cerca tra {count} server..."
|
||||
},
|
||||
"servers.manage.servers-title": {
|
||||
"defaultMessage": "Modrinth Hosting"
|
||||
},
|
||||
@@ -3857,9 +3725,6 @@
|
||||
"settings.language.categories.search-result": {
|
||||
"defaultMessage": "Risultati di ricerca"
|
||||
},
|
||||
"settings.language.description": {
|
||||
"defaultMessage": "Scegli la tua lingua che preferisci per l'interfaccia. Le traduzioni sono contribuite da volontari <crowdin-link>su Crowdin</crowdin-link>."
|
||||
},
|
||||
"settings.language.languages.search-field.placeholder": {
|
||||
"defaultMessage": "Cerca una lingua..."
|
||||
},
|
||||
@@ -3878,9 +3743,6 @@
|
||||
"settings.language.title": {
|
||||
"defaultMessage": "Lingua"
|
||||
},
|
||||
"settings.language.warning": {
|
||||
"defaultMessage": "È possibile che alcune frasi rimangano in inglese in quanto la piattaforma non è ancora stata tradotta del tutto e per tutte le lingue."
|
||||
},
|
||||
"settings.pats.title": {
|
||||
"defaultMessage": "Token di accesso (PAT)"
|
||||
},
|
||||
@@ -4338,4 +4200,3 @@
|
||||
"defaultMessage": "Cancella tutto"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "サブスクリプション情報の読み込みに失敗しました。"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5日"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/月"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/四半期"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/年"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "次回の請求は<charge-date>{date}</charge-date>です。"
|
||||
},
|
||||
@@ -281,9 +269,6 @@
|
||||
"collections.label.private": {
|
||||
"defaultMessage": "非公開"
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-body": {
|
||||
"defaultMessage": "プロジェクトを互換性のある最新バージョンにアップデートしてもよろしいですか? 1つずつアップデートすることをおすすめします。"
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-header": {
|
||||
"defaultMessage": "アップデート前にご確認ください"
|
||||
},
|
||||
@@ -293,18 +278,12 @@
|
||||
"content.confirm-bulk-update.shift-click-hint": {
|
||||
"defaultMessage": "Shiftキーを押しながら「すべて更新」をクリックすると、今後この確認をスキップできます。"
|
||||
},
|
||||
"content.confirm-bulk-update.update-button": {
|
||||
"defaultMessage": "プロジェクトをアップデート"
|
||||
},
|
||||
"content.confirm-deletion.admonition-body": {
|
||||
"defaultMessage": "Modを削除すると、ワールドに永続的な影響を与え、再読み込み時にコンテンツの欠落や予期せぬ問題が発生する可能性があります。"
|
||||
},
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "削除する前にご確認ください"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "{count}件の{itemType}を削除"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "{itemType}を削除"
|
||||
},
|
||||
@@ -374,9 +353,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Shiftを押しながらクリックすることで確認をスキップできます。"
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "操作を進める前に、バックアップを作成することをおすすめします。もしも{type, select, server {ワールド} other {インスタンス}}に問題が発生した場合、バックアップから復元できます。"
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "あなたのModパックのコンテンツは、こちらで確認できます!"
|
||||
},
|
||||
@@ -419,9 +395,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "お待ちください"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "{count}件の{contentType}を検索…"
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "ファイル名"
|
||||
},
|
||||
@@ -485,9 +458,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "{contentType}を更新中…"
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count}件の{contentType}を選択中"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number}項目を選択中"
|
||||
},
|
||||
@@ -503,9 +473,6 @@
|
||||
"creation-flow.button.import": {
|
||||
"defaultMessage": "インポート"
|
||||
},
|
||||
"creation-flow.button.import-instances": {
|
||||
"defaultMessage": "{count} 件のインスタンスをインポート"
|
||||
},
|
||||
"creation-flow.button.setup-server": {
|
||||
"defaultMessage": "サーバーをセットアップ"
|
||||
},
|
||||
@@ -776,18 +743,9 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "上書きファイル {count} 個"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "上書き済み"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "ファイルが上書きされます"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "{type, select, directory {フォルダーを} other {ファイルを}}作成する"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {フォルダーを} other {ファイルを}}作成する"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "例: my-folder"
|
||||
},
|
||||
@@ -800,9 +758,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "ファイルを削除"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {フォルダーと全ての内容が完全に削除されます。元に戻すことはできません。} other {ファイルが完全に削除されます。元に戻すことはできません。}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "ファイルの内容を読み込めませんでした。"
|
||||
},
|
||||
@@ -929,9 +884,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "例: /my-folder"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {フォルダを移動} other {ファイルを移動}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "ホームに戻る"
|
||||
},
|
||||
@@ -1052,9 +1004,6 @@
|
||||
"files.upload-dropdown.uploads-left": {
|
||||
"defaultMessage": "- 残り{count}"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "ここに{type, select,undefined {ファイル} other {{type}s}}ここにアップロードします"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "名前には、英数字、ハイフン、アンダースコア、またはスペースのみを含める必要があります。"
|
||||
},
|
||||
@@ -1409,18 +1358,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-title": {
|
||||
"defaultMessage": "ローダーの交換は破壊的である"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "リンクされた{projectType, select, server {サーバープロジェクト} other {Modパック}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "{loader}のバージョン"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "ローダーを切り替えるにはサーバをリセットする必要があります。"
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Modパックの再インストールすると、{type, select, server {サーバー} other {インスタンス}}のコンテンツを初期状態にリセットし、追加された全てのModやコンテンツは削除されます。"
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Modパックを再インストール"
|
||||
},
|
||||
@@ -1451,9 +1394,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "リンクを解除"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "永久にリンクを解除すると、{projectType, select, server {サーバー} other {インスタンス}}からのこの{type, select, server {サーバー} other {インスタンス}}との接続を解除し、ローダーとMinecraftのバージョンを変更できるようになりますが、将来の更新を受け取れなくなります。"
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "承認中…"
|
||||
},
|
||||
@@ -1469,12 +1409,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Modパックを再インストール"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "修復するとローダーとMinecraftの依存関係がコンテンツが削除されずに再インストールされます。{type, select, server {サーバーが正しく起動しない} other {ランチャー関連のエラーが原因でゲームが起動しない}}場合に、問題が解決する可能性があります。"
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "{type, select, server {サーバー} other {インスタンス}}を修復"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "修復"
|
||||
},
|
||||
@@ -1493,9 +1427,6 @@
|
||||
"instance.worlds.game_mode.unknown": {
|
||||
"defaultMessage": "不明なゲームモード"
|
||||
},
|
||||
"instances.content-install.compatible-count": {
|
||||
"defaultMessage": "{count}件の互換性のあるインスタンス"
|
||||
},
|
||||
"instances.content-install.existing-tab": {
|
||||
"defaultMessage": "既存のインスタンス"
|
||||
},
|
||||
@@ -1553,9 +1484,6 @@
|
||||
"instances.modpack-content-modal.no-results": {
|
||||
"defaultMessage": "該当するプロジェクトがありません。"
|
||||
},
|
||||
"instances.modpack-content-modal.search-placeholder": {
|
||||
"defaultMessage": "{count, number}件のプロジェクトを検索"
|
||||
},
|
||||
"instances.updater-modal.badge.current": {
|
||||
"defaultMessage": "現在"
|
||||
},
|
||||
@@ -2123,60 +2051,24 @@
|
||||
"project-type.all": {
|
||||
"defaultMessage": "すべて"
|
||||
},
|
||||
"project-type.datapack.capital": {
|
||||
"defaultMessage": "データパック"
|
||||
},
|
||||
"project-type.datapack.category": {
|
||||
"defaultMessage": "データパック"
|
||||
},
|
||||
"project-type.datapack.lowercase": {
|
||||
"defaultMessage": "データパック"
|
||||
},
|
||||
"project-type.mod.capital": {
|
||||
"defaultMessage": "{count, plural, other{#個のMod}}"
|
||||
},
|
||||
"project-type.mod.category": {
|
||||
"defaultMessage": "Mod"
|
||||
},
|
||||
"project-type.mod.lowercase": {
|
||||
"defaultMessage": "{count, plural, other{#個のMod}}"
|
||||
},
|
||||
"project-type.modpack.capital": {
|
||||
"defaultMessage": "{count}個のModパック"
|
||||
},
|
||||
"project-type.modpack.category": {
|
||||
"defaultMessage": "Modパック"
|
||||
},
|
||||
"project-type.modpack.lowercase": {
|
||||
"defaultMessage": "{count}個のModパック"
|
||||
},
|
||||
"project-type.plugin.capital": {
|
||||
"defaultMessage": "プラグイン"
|
||||
},
|
||||
"project-type.plugin.category": {
|
||||
"defaultMessage": "プラグイン"
|
||||
},
|
||||
"project-type.plugin.lowercase": {
|
||||
"defaultMessage": "{count}個のプラグイン"
|
||||
},
|
||||
"project-type.project.capital": {
|
||||
"defaultMessage": "{count}個のプロジェクト"
|
||||
},
|
||||
"project-type.project.category": {
|
||||
"defaultMessage": "プロジェクト"
|
||||
},
|
||||
"project-type.project.lowercase": {
|
||||
"defaultMessage": "{count}個のプロジェクト"
|
||||
},
|
||||
"project-type.resourcepack.capital": {
|
||||
"defaultMessage": "リソースパック"
|
||||
},
|
||||
"project-type.resourcepack.category": {
|
||||
"defaultMessage": "リソースパック"
|
||||
},
|
||||
"project-type.resourcepack.lowercase": {
|
||||
"defaultMessage": "リソースパック"
|
||||
},
|
||||
"project-type.server.capital": {
|
||||
"defaultMessage": "{count, plural,one {台のサーバー}other {台のサーバー}}"
|
||||
},
|
||||
@@ -2186,15 +2078,9 @@
|
||||
"project-type.server.lowercase": {
|
||||
"defaultMessage": "{count, plural,one {台のサーバー}other {台のサーバー}}"
|
||||
},
|
||||
"project-type.shader.capital": {
|
||||
"defaultMessage": "シェーダー"
|
||||
},
|
||||
"project-type.shader.category": {
|
||||
"defaultMessage": "シェーダー"
|
||||
},
|
||||
"project-type.shader.lowercase": {
|
||||
"defaultMessage": "シェーダー"
|
||||
},
|
||||
"project.about.compatibility.environments": {
|
||||
"defaultMessage": "対応している環境"
|
||||
},
|
||||
@@ -2318,9 +2204,6 @@
|
||||
"project.about.tags.title": {
|
||||
"defaultMessage": "タグ"
|
||||
},
|
||||
"project.download-count-tooltip": {
|
||||
"defaultMessage": "{count, number}件のダウンロード"
|
||||
},
|
||||
"project.environment.client-and-server.description": {
|
||||
"defaultMessage": "クライアントとサーバーの両方で必要です。"
|
||||
},
|
||||
@@ -2387,21 +2270,9 @@
|
||||
"project.environment.unknown.title": {
|
||||
"defaultMessage": "不明な環境"
|
||||
},
|
||||
"project.follower-count-tooltip": {
|
||||
"defaultMessage": "{count, number}人のフォロワー"
|
||||
},
|
||||
"project.online-player-count": {
|
||||
"defaultMessage": "{count, number}人がオンライン"
|
||||
},
|
||||
"project.online-player-count.tooltip": {
|
||||
"defaultMessage": "{count}人がオンライン"
|
||||
},
|
||||
"project.recent-plays": {
|
||||
"defaultMessage": "{count}件の最近のプレイ"
|
||||
},
|
||||
"project.recent-plays.tooltip": {
|
||||
"defaultMessage": "{count}件の過去2週間のModrinthからのプレイ"
|
||||
},
|
||||
"project.server.customModpackTooltip": {
|
||||
"defaultMessage": "このプロジェクトはカスタムModパックを使用しています"
|
||||
},
|
||||
@@ -3002,9 +2873,6 @@
|
||||
"servers.backups.bulk-bar.aria-label": {
|
||||
"defaultMessage": "{count, plural, one {選択したバックアップ1件に対する一括操作} other {選択したバックアップ#件に対する一括操作}}"
|
||||
},
|
||||
"servers.backups.bulk-bar.deleting": {
|
||||
"defaultMessage": "{total, plural,one {#バックアップ} other {{#バックアップ}}を削除しています..."
|
||||
},
|
||||
"servers.backups.bulk-bar.selected-count": {
|
||||
"defaultMessage": "{count, plural,one {# バックアップが選択されました} other {# バックアップが選択されました}}"
|
||||
},
|
||||
@@ -3248,9 +3116,6 @@
|
||||
"settings.language.languages.search-field.placeholder": {
|
||||
"defaultMessage": "言語を検索..."
|
||||
},
|
||||
"settings.language.languages.search-results-announcement": {
|
||||
"defaultMessage": "検索条件に一致する{matches, plural, =0 {言語が見つかりませんでした} other {、#つの言語が見つかりました}}。"
|
||||
},
|
||||
"settings.language.languages.search.no-results": {
|
||||
"defaultMessage": "検索条件に一致する言語はありませんでした"
|
||||
},
|
||||
@@ -3702,4 +3567,3 @@
|
||||
"defaultMessage": "保存されていない変更があります。"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "구독 정보를 불러오는 데 실패했습니다."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5일"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/개월"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/분기"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/연"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "다음 결제일은 <charge-date>{date}</charge-date>입니다."
|
||||
},
|
||||
@@ -104,21 +92,9 @@
|
||||
"browse.offline": {
|
||||
"defaultMessage": "현재 오프라인 상태입니다. Modrinth를 이용하려면 인터넷에 연결하세요!"
|
||||
},
|
||||
"browse.search.placeholder": {
|
||||
"defaultMessage": "{projectType, select, mod {모드} modpack {모드팩} resourcepack {리소스팩} shader {셰이더} plugin {플러그인} datapack {데이터팩} server {서버} other {프로젝트}} 검색..."
|
||||
},
|
||||
"browse.selected-projects-floating-bar.aria-label": {
|
||||
"defaultMessage": "선택된 프로젝트"
|
||||
},
|
||||
"browse.selected-projects-floating-bar.install": {
|
||||
"defaultMessage": "프로젝트 {count}개 설치"
|
||||
},
|
||||
"browse.selected-projects-floating-bar.selected-count": {
|
||||
"defaultMessage": "프로젝트 {count, plural, other {#}}개 선택됨"
|
||||
},
|
||||
"browse.selected-projects-leave-modal.admonition-body": {
|
||||
"defaultMessage": "설치할 프로젝트로 {count, plural, other {#}}개를 선택했습니다. 지금 설치하거나 설치하지 않고 돌아갈 수 있습니다."
|
||||
},
|
||||
"browse.selected-projects-leave-modal.admonition-header": {
|
||||
"defaultMessage": "선택된 프로젝트가 아직 설치되지 않았습니다"
|
||||
},
|
||||
@@ -326,9 +302,6 @@
|
||||
"content.card.select-project": {
|
||||
"defaultMessage": "{project} 선택"
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-body": {
|
||||
"defaultMessage": "{count}개의 프로젝트를 최신 호환 버전으로 업데이트하시겠습니까? 콘텐츠는 하나씩 업데이트 하는 것을 권장합니다."
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-header": {
|
||||
"defaultMessage": "업데이트 주의"
|
||||
},
|
||||
@@ -338,18 +311,12 @@
|
||||
"content.confirm-bulk-update.shift-click-hint": {
|
||||
"defaultMessage": "향후 이 확인 메시지를 건너뛰려면 Shift 키를 누른 상태에서 “모두 업데이트”를 클릭하세요."
|
||||
},
|
||||
"content.confirm-bulk-update.update-button": {
|
||||
"defaultMessage": "프로젝트 {count}개 업데이트"
|
||||
},
|
||||
"content.confirm-deletion.admonition-body": {
|
||||
"defaultMessage": "모드를 삭제하면 세계에 영구적인 영향을 미칠 수 있으며, 다시 로드할 때 콘텐츠가 누락되거나 예기치 않은 문제가 발생할 수 있습니다."
|
||||
},
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "삭제 주의"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "{itemType} {count}개 삭제"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "{itemType} 삭제"
|
||||
},
|
||||
@@ -431,9 +398,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Shift 키를 누른 상태로 클릭해서 확인을 건너뛸 수 있습니다."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "문제가 발생할 경우 {type, select, server {세계} other {인스턴스}}를 복원할 수 있도록 진행하기 전에 백업을 생성하는 것이 좋습니다."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "여기서 모드팩의 콘텐츠를 확인할 수 있습니다!"
|
||||
},
|
||||
@@ -476,9 +440,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "기다려 주십시오"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "{count}개의 {contentType} 검색..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "파일 이름"
|
||||
},
|
||||
@@ -542,9 +503,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "{contentType} 업데이트 중..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{contentType} {count}개 선택됨"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number}개 선택됨"
|
||||
},
|
||||
@@ -560,9 +518,6 @@
|
||||
"creation-flow.button.import": {
|
||||
"defaultMessage": "가져오기"
|
||||
},
|
||||
"creation-flow.button.import-instances": {
|
||||
"defaultMessage": "인스턴스 {count, plural, other {#}}개 가져오기"
|
||||
},
|
||||
"creation-flow.button.setup-server": {
|
||||
"defaultMessage": "서버 설정"
|
||||
},
|
||||
@@ -851,18 +806,9 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count}개 덮어써짐"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "덮어써짐"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "파일이 덮어써짐"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "{type, select, directory {폴더} other {파일}} 생성"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {폴더} other {파일}} 생성"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "예: my-folder"
|
||||
},
|
||||
@@ -875,9 +821,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "파일 삭제"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {이 폴더와 그 안의 모든 내용물이 영구적으로 삭제됩니다. 이 작업은 되돌릴 수 없습니다.} other {이 파일이 영구적으로 삭제됩니다. 이 작업은 되돌릴 수 없습니다.}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "파일 내용물을 불러올 수 없습니다."
|
||||
},
|
||||
@@ -1004,9 +947,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "예: /my-folder"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {폴더 이동} other {파일 이동}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "홈으로 돌아가기"
|
||||
},
|
||||
@@ -1073,9 +1013,6 @@
|
||||
"files.rename-modal.new-name-label": {
|
||||
"defaultMessage": "새 이름"
|
||||
},
|
||||
"files.row.item-count": {
|
||||
"defaultMessage": "항목 {count}개"
|
||||
},
|
||||
"files.table-header.created": {
|
||||
"defaultMessage": "생성"
|
||||
},
|
||||
@@ -1127,9 +1064,6 @@
|
||||
"files.upload-dropdown.uploads-left": {
|
||||
"defaultMessage": " - {count}개 남음"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "여기에 {type, select, undefined {파일} other {{type}}} 드래그하여 업로드"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "이름에는 영문, 숫자, 하이픈, 밑줄, 공백만 포함되어야 합니다."
|
||||
},
|
||||
@@ -1277,9 +1211,6 @@
|
||||
"form.placeholder.state": {
|
||||
"defaultMessage": "주/도 입력"
|
||||
},
|
||||
"format.bytes.0": {
|
||||
"defaultMessage": "{count, plural, other {# 바이트}}"
|
||||
},
|
||||
"format.bytes.1": {
|
||||
"defaultMessage": "{count, number} KiB"
|
||||
},
|
||||
@@ -1502,18 +1433,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-title": {
|
||||
"defaultMessage": "로더 변경 시 데이터 손실 위험"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "연결된 {projectType, select, server {서버 프로젝트} other {모드팩}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "{loader} 버전"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "로더를 변경하려면 서버를 초기화해야 합니다."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "모드팩을 재설치하면 {type, select, server {서버의} other {인스턴스의}} 콘텐츠가 초기화되어 추가했던 모든 모드나 콘텐츠가 제거됩니다."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "모드팩 재설치"
|
||||
},
|
||||
@@ -1544,9 +1469,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "연결 해제"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "연결을 해제하면 이 {type, select, server {서버} other {인스턴스}}가 {projectType, select, server {서버} other {모드팩}} 프로젝트에서 영구적으로 분리되어 로더와 Minecraft 버전을 변경할 수 있지만, 향후 업데이트를 받을 수 없게 됩니다."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "확인 중..."
|
||||
},
|
||||
@@ -1562,12 +1484,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "모드팩 재설치"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "복구 기능을 사용하면 사용자의 콘텐츠는 삭제되지 않은 채 로더와 Minecraft 종속성이 재설치됩니다. {type, select, server {서버가 제대로 시작되지 않는 경우} other {런처 관련 오류로 인해 게임이 실행되지 않는 경우}}, 이 방법으로 문제가 해결될 수 있습니다."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "{type, select, server {서버} other {인스턴스}} 복구"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "복구"
|
||||
},
|
||||
@@ -1586,9 +1502,6 @@
|
||||
"instance.worlds.game_mode.unknown": {
|
||||
"defaultMessage": "알 수 없는 게임 모드"
|
||||
},
|
||||
"instances.content-install.compatible-count": {
|
||||
"defaultMessage": "호환되는 인스턴스 {count}개"
|
||||
},
|
||||
"instances.content-install.existing-tab": {
|
||||
"defaultMessage": "존재하는 인스턴스"
|
||||
},
|
||||
@@ -1646,9 +1559,6 @@
|
||||
"instances.modpack-content-modal.no-results": {
|
||||
"defaultMessage": "검색 결과와 일치하는 프로젝트가 없습니다."
|
||||
},
|
||||
"instances.modpack-content-modal.search-placeholder": {
|
||||
"defaultMessage": "{count, number}개의 프로젝트 검색"
|
||||
},
|
||||
"instances.updater-modal.badge.current": {
|
||||
"defaultMessage": "현재"
|
||||
},
|
||||
@@ -2399,60 +2309,27 @@
|
||||
"project-type.all": {
|
||||
"defaultMessage": "모두"
|
||||
},
|
||||
"project-type.datapack.capital": {
|
||||
"defaultMessage": "{count, plural, other {데이터 팩}}"
|
||||
},
|
||||
"project-type.datapack.category": {
|
||||
"defaultMessage": "데이터 팩"
|
||||
},
|
||||
"project-type.datapack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {데이터 팩}}"
|
||||
},
|
||||
"project-type.mod.capital": {
|
||||
"defaultMessage": "{count, plural, other {모드}}"
|
||||
},
|
||||
"project-type.mod.category": {
|
||||
"defaultMessage": "모드"
|
||||
},
|
||||
"project-type.mod.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {모드}}"
|
||||
},
|
||||
"project-type.modpack.capital": {
|
||||
"defaultMessage": "{count, plural, other {모드팩}}"
|
||||
},
|
||||
"project-type.modpack.category": {
|
||||
"defaultMessage": "모드팩"
|
||||
},
|
||||
"project-type.modpack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {모드팩}}"
|
||||
},
|
||||
"project-type.plugin.capital": {
|
||||
"defaultMessage": "{count, plural, other {플러그인}}"
|
||||
},
|
||||
"project-type.plugin.category": {
|
||||
"defaultMessage": "플러그인"
|
||||
},
|
||||
"project-type.plugin.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {플러그인}}"
|
||||
},
|
||||
"project-type.project.capital": {
|
||||
"defaultMessage": "프로젝트"
|
||||
},
|
||||
"project-type.project.category": {
|
||||
"defaultMessage": "프로젝트"
|
||||
},
|
||||
"project-type.project.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {프로젝트} other {프로젝트}}"
|
||||
},
|
||||
"project-type.resourcepack.capital": {
|
||||
"defaultMessage": "{count, plural, other {리소스 팩}}"
|
||||
},
|
||||
"project-type.resourcepack.category": {
|
||||
"defaultMessage": "리소스 팩"
|
||||
},
|
||||
"project-type.resourcepack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {리소스 팩}}"
|
||||
},
|
||||
"project-type.server.capital": {
|
||||
"defaultMessage": "{count, plural, one {서버} other {서버}}"
|
||||
},
|
||||
@@ -2462,15 +2339,9 @@
|
||||
"project-type.server.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {서버} other {서버}}"
|
||||
},
|
||||
"project-type.shader.capital": {
|
||||
"defaultMessage": "{count, plural, other {셰이더}}"
|
||||
},
|
||||
"project-type.shader.category": {
|
||||
"defaultMessage": "셰이더"
|
||||
},
|
||||
"project-type.shader.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {셰이더}}"
|
||||
},
|
||||
"project.about.compatibility.environments": {
|
||||
"defaultMessage": "지원되는 실행 환경"
|
||||
},
|
||||
@@ -2675,9 +2546,6 @@
|
||||
"project.recent-plays": {
|
||||
"defaultMessage": "{count} {countPlural, plural, one {회 최근 플레이} other {회 최근 플레이}}"
|
||||
},
|
||||
"project.recent-plays.tooltip": {
|
||||
"defaultMessage": "Modrinth에서 지난 2주동안 {count}회 플레이"
|
||||
},
|
||||
"project.server.customModpackTooltip": {
|
||||
"defaultMessage": "이 프로젝트는 사용자 지정 모드팩을 사용합니다"
|
||||
},
|
||||
@@ -3278,15 +3146,6 @@
|
||||
"servers.backups.admonition.restoring-backup.title": {
|
||||
"defaultMessage": "백업으로부터 복원하는 중"
|
||||
},
|
||||
"servers.backups.bulk-bar.aria-label": {
|
||||
"defaultMessage": "백업 {count, plural, other {#}}개 선택됨"
|
||||
},
|
||||
"servers.backups.bulk-bar.deleting": {
|
||||
"defaultMessage": "백업 {total, plural, other {#}}개 삭제 중..."
|
||||
},
|
||||
"servers.backups.bulk-bar.selected-count": {
|
||||
"defaultMessage": "백업 {count, plural, other {#}}개 선택됨"
|
||||
},
|
||||
"servers.backups.delete-modal.admonition-body": {
|
||||
"defaultMessage": "삭제하면 {count, plural, one {해당 백업은} other {해당 백업들은}} 복구할 수 없습니다. 되돌릴 수 없습니다."
|
||||
},
|
||||
@@ -3299,9 +3158,6 @@
|
||||
"servers.backups.delete-modal.confirm": {
|
||||
"defaultMessage": "백업 {count, plural, one {삭제} other {#개 삭제}}"
|
||||
},
|
||||
"servers.backups.delete-modal.header": {
|
||||
"defaultMessage": "백업 삭제"
|
||||
},
|
||||
"servers.backups.empty.description": {
|
||||
"defaultMessage": "첫 백업 생성하기"
|
||||
},
|
||||
@@ -3464,18 +3320,12 @@
|
||||
"servers.listing.new-label": {
|
||||
"defaultMessage": "새로운"
|
||||
},
|
||||
"servers.listing.notice.files-kept-for-download": {
|
||||
"defaultMessage": "파일은 <days-remaining>{daysRemaining}일 동안 보관됩니다</days-remaining>. 삭제되기 전에 파일을 다운로드하려면 지원팀에 문의하세요. "
|
||||
},
|
||||
"servers.listing.notice.files-preserved-after-cancellation": {
|
||||
"defaultMessage": "취소 후 30일 동안 파일이 보존됩니다."
|
||||
},
|
||||
"servers.listing.notice.moderated": {
|
||||
"defaultMessage": "관리자의 조치로 인해 서버가 정지되었습니다."
|
||||
},
|
||||
"servers.listing.notice.pending-change": {
|
||||
"defaultMessage": "서버는 <date>{formattedDate}</date>에 {verb} {planSize} 플랜으로 업그레이드됩니다."
|
||||
},
|
||||
"servers.listing.notice.provisioning": {
|
||||
"defaultMessage": "서버 설정이 완료될 때까지 잠시 기다려 주십시오. 최대 10분 정도 소요될 수 있습니다."
|
||||
},
|
||||
@@ -3536,9 +3386,6 @@
|
||||
"servers.manage.error.details": {
|
||||
"defaultMessage": "오류 세부정보:"
|
||||
},
|
||||
"servers.manage.error.queue-notice": {
|
||||
"defaultMessage": "최근에 Modrinth Hosting 서버를 구매하셨다면, 현재 대기 중이며 준비가 완료되는 대로 여기에 표시될 것입니다. <경고>새 서버를 구매하려고 시도하지 마십시오.</경고>"
|
||||
},
|
||||
"servers.manage.error.support-notice": {
|
||||
"defaultMessage": "\n서버 상태와 관련하여 개별적인 지원이 필요하시면 Modrinth 지원팀에 문의해 주세요."
|
||||
},
|
||||
@@ -3863,9 +3710,6 @@
|
||||
"settings.language.languages.search-field.placeholder": {
|
||||
"defaultMessage": "언어 검색..."
|
||||
},
|
||||
"settings.language.languages.search-results-announcement": {
|
||||
"defaultMessage": "검색어와 일치하는 언어가 {matches, plural, =0 {없습니다} other {#개 있습니다}}."
|
||||
},
|
||||
"settings.language.languages.search.no-results": {
|
||||
"defaultMessage": "검색어와 일치하는 언어가 없습니다."
|
||||
},
|
||||
@@ -4331,11 +4175,7 @@
|
||||
"ui.confirm-leave-modal.title": {
|
||||
"defaultMessage": "페이지를 떠나겠습니까?"
|
||||
},
|
||||
"ui.stacked-admonitions.alert-count": {
|
||||
"defaultMessage": "알림 {count}개"
|
||||
},
|
||||
"ui.stacked-admonitions.dismiss-all": {
|
||||
"defaultMessage": "모두 닫기"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Gagal memuat butiran langganan."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 hari"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/bulan"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/3 bulan"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/tahun"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "Caj anda yang seterusnya akan dikenakan pada <charge-date>{date}</charge-date>."
|
||||
},
|
||||
@@ -104,21 +92,9 @@
|
||||
"browse.offline": {
|
||||
"defaultMessage": "Anda sedang berada di luar talian. Sambung ke internet untuk melayari Modrinth!"
|
||||
},
|
||||
"browse.search.placeholder": {
|
||||
"defaultMessage": "Cari {projectType, select, mod {mod} modpack {pek mod} resourcepack {pek sumber} shader {pembayang} plugin {pemalam} datapack {pek data} server {pelayan} other {projek}}..."
|
||||
},
|
||||
"browse.selected-projects-floating-bar.aria-label": {
|
||||
"defaultMessage": "Projek yang dipilih"
|
||||
},
|
||||
"browse.selected-projects-floating-bar.install": {
|
||||
"defaultMessage": "Pasang {count, plural, other {# projek}}"
|
||||
},
|
||||
"browse.selected-projects-floating-bar.selected-count": {
|
||||
"defaultMessage": "{count, plural, other {# projek dipilih}}"
|
||||
},
|
||||
"browse.selected-projects-leave-modal.admonition-body": {
|
||||
"defaultMessage": "Anda telah memilih {count, plural, other {# projek}} untuk dipasang. Pasangnya sekarang atau kembali tanpa memasangnya."
|
||||
},
|
||||
"browse.selected-projects-leave-modal.admonition-header": {
|
||||
"defaultMessage": "Projek yang dipilih belum dipasang lagi"
|
||||
},
|
||||
@@ -326,9 +302,6 @@
|
||||
"content.card.select-project": {
|
||||
"defaultMessage": "Pilih {project}"
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-body": {
|
||||
"defaultMessage": "Adakah anda pasti mahu mengemas kini {count, plural, other {# projek}} ke versi terkini yang serasi? Disyorkan untuk mengemas kini kandungan satu per satu."
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-header": {
|
||||
"defaultMessage": "Amaran kemas kini"
|
||||
},
|
||||
@@ -338,18 +311,12 @@
|
||||
"content.confirm-bulk-update.shift-click-hint": {
|
||||
"defaultMessage": "Tahan Shift sambil mengklik \"Kemas kini semua\" untuk melangkau pengesahan ini pada masa akan datang."
|
||||
},
|
||||
"content.confirm-bulk-update.update-button": {
|
||||
"defaultMessage": "Kemas kini {count, plural, other {# projek}}"
|
||||
},
|
||||
"content.confirm-deletion.admonition-body": {
|
||||
"defaultMessage": "Pemadaman mod boleh menjejaskan dunia anda secara kekal dan mungkin menyebabkan kandungan yang hilang atau masalah yang tidak dijangka apabila ia dimuatkan semula."
|
||||
},
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Amaran pemadaman"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Padam {count} {itemType}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Padam {itemType}"
|
||||
},
|
||||
@@ -419,9 +386,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Tahan Shift sambil mengklik untuk melangkau pengesahan."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Kami mengesyorkan agar anda membuat sandaran sebelum meneruskan supaya anda boleh memulihkan {type, select, server {dunia} other {pemasangan}} anda sekiranya terdapat sebarang kerosakan."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "Kandungan pek mod anda kini boleh didapati di sini!"
|
||||
},
|
||||
@@ -464,9 +428,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Sila tunggu"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Cari {count} {contentType}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Nama fail"
|
||||
},
|
||||
@@ -530,9 +491,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "Sedang mengemas kini {contentType}..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count} {contentType} dipilih"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number} dipilih"
|
||||
},
|
||||
@@ -548,9 +506,6 @@
|
||||
"creation-flow.button.import": {
|
||||
"defaultMessage": "Import"
|
||||
},
|
||||
"creation-flow.button.import-instances": {
|
||||
"defaultMessage": "Import {count, plural, other {# pemasangan}}"
|
||||
},
|
||||
"creation-flow.button.setup-server": {
|
||||
"defaultMessage": "Sediakan pelayan"
|
||||
},
|
||||
@@ -677,18 +632,9 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} ditulis ganti"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Ditulis ganti"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "Fail akan ditulis ganti"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "Cipta {type, select, directory {folder} other {fail}}"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "Cipta sebuah {type, select, directory {folder} other {fail}}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "cth. folder-saya"
|
||||
},
|
||||
@@ -701,9 +647,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Padam fail"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {Folder ini dan semua kandungannya akan dipadamkan secara kekal. Tindakan ini tidak boleh dibuat asal.} other {Fail ini akan dipadamkan secara kekal. Tindakan ini tidak boleh dibuat asal.}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "Tidak dapat memuat kandungan fail."
|
||||
},
|
||||
@@ -830,9 +773,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "cth. /folder-saya"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {Pindahkan folder} other {Pindahkan fail}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "Kembali ke laman utama"
|
||||
},
|
||||
@@ -890,9 +830,6 @@
|
||||
"files.rename-modal.new-name-label": {
|
||||
"defaultMessage": "Nama baharu"
|
||||
},
|
||||
"files.row.item-count": {
|
||||
"defaultMessage": "{count, plural, other {# item}}"
|
||||
},
|
||||
"files.table-header.created": {
|
||||
"defaultMessage": "Dicipta"
|
||||
},
|
||||
@@ -944,9 +881,6 @@
|
||||
"files.upload-dropdown.uploads-left": {
|
||||
"defaultMessage": " - {count} yang tinggal"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "Lepaskan {type, select, undefined {fail} other {{type}}} di sini untuk memuat naik"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "Nama mesti mengandungi hanya aksara alfanumerik, tanda sengkang (-), garis bawah (_), atau ruang."
|
||||
},
|
||||
@@ -1313,18 +1247,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-title": {
|
||||
"defaultMessage": "Menukar pemuat boleh menyebabkan kerosakan"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "{projectType, select, server {Projek pelayan} other {Pek mod}} dipautkan"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "Versi {loader}"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "Anda perlu menetap semula pelayan anda untuk menukar pemuat."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Pemasangan semula pek mod akan menetapkan semula kandungan {type, select, server {pelayan} other {pemasangan}} kepada keadaan asalnya, mengalih keluar sebarang mod atau kandungan yang telah anda tambahkan."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Pasang semula pek mod"
|
||||
},
|
||||
@@ -1355,9 +1283,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Nyahpaut"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Penyahpautan secara kekal ini akan memutuskan sambungan {type, select, server {pelayan} other {pemasangan}} ini daripada projek {projectType, select, server {pelayan} other {pek mod}}. Hal ini membenarkan anda menukar pemuat dan versi Minecraft, tetapi anda tidak akan menerima kemas kini pada masa hadapan."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Sedang mengesahkan..."
|
||||
},
|
||||
@@ -1373,12 +1298,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Pasang semula pek mod"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "Pembaikan ini akan memasang semula pemuat dan kebergantungan Minecraft tanpa memadamkan kandungan anda. Ini mungkin menyelesaikan masalah jika {type, select, server {pelayan anda tidak dimulakan dengan betul} other {permainan anda tidak dilancarkan kerana ralat berkaitan pelancar}}."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "Baiki {type, select, server {pelayan} other {pemasangan}}"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Baiki"
|
||||
},
|
||||
@@ -1397,9 +1316,6 @@
|
||||
"instance.worlds.game_mode.unknown": {
|
||||
"defaultMessage": "Mod permainan yang tidak diketahui"
|
||||
},
|
||||
"instances.content-install.compatible-count": {
|
||||
"defaultMessage": "{count} {count, plural, other {pemasangan}} serasi"
|
||||
},
|
||||
"instances.content-install.existing-tab": {
|
||||
"defaultMessage": "Pemasangan sedia ada"
|
||||
},
|
||||
@@ -1457,9 +1373,6 @@
|
||||
"instances.modpack-content-modal.no-results": {
|
||||
"defaultMessage": "Tiada projek yang sepadan dengan carian anda."
|
||||
},
|
||||
"instances.modpack-content-modal.search-placeholder": {
|
||||
"defaultMessage": "Cari {count, number} {count, plural, other {projek}}"
|
||||
},
|
||||
"instances.updater-modal.badge.current": {
|
||||
"defaultMessage": "Semasa"
|
||||
},
|
||||
@@ -2066,78 +1979,30 @@
|
||||
"project-type.all": {
|
||||
"defaultMessage": "Semua"
|
||||
},
|
||||
"project-type.datapack.capital": {
|
||||
"defaultMessage": "{count, plural, other {Pek Data}}"
|
||||
},
|
||||
"project-type.datapack.category": {
|
||||
"defaultMessage": "Pek Data"
|
||||
},
|
||||
"project-type.datapack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {pek data}}"
|
||||
},
|
||||
"project-type.mod.capital": {
|
||||
"defaultMessage": "{count, plural, other {Mod}}"
|
||||
},
|
||||
"project-type.mod.category": {
|
||||
"defaultMessage": "Mod"
|
||||
},
|
||||
"project-type.mod.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {mod}}"
|
||||
},
|
||||
"project-type.modpack.capital": {
|
||||
"defaultMessage": "{count, plural, other {Pek Mod}}"
|
||||
},
|
||||
"project-type.modpack.category": {
|
||||
"defaultMessage": "Pek Mod"
|
||||
},
|
||||
"project-type.modpack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {pek mod}}"
|
||||
},
|
||||
"project-type.plugin.capital": {
|
||||
"defaultMessage": "{count, plural, other {Pemalam}}"
|
||||
},
|
||||
"project-type.plugin.category": {
|
||||
"defaultMessage": "Pemalam"
|
||||
},
|
||||
"project-type.plugin.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {pemalam}}"
|
||||
},
|
||||
"project-type.project.capital": {
|
||||
"defaultMessage": "{count, plural, other {Projek}}"
|
||||
},
|
||||
"project-type.project.category": {
|
||||
"defaultMessage": "Projek"
|
||||
},
|
||||
"project-type.project.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {projek}}"
|
||||
},
|
||||
"project-type.resourcepack.capital": {
|
||||
"defaultMessage": "{count, plural, other {Pek Sumber}}"
|
||||
},
|
||||
"project-type.resourcepack.category": {
|
||||
"defaultMessage": "Pek Sumber"
|
||||
},
|
||||
"project-type.resourcepack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {pek sumber}}"
|
||||
},
|
||||
"project-type.server.capital": {
|
||||
"defaultMessage": "{count, plural, other {Pelayan}}"
|
||||
},
|
||||
"project-type.server.category": {
|
||||
"defaultMessage": "Pelayan"
|
||||
},
|
||||
"project-type.server.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {pelayan}}"
|
||||
},
|
||||
"project-type.shader.capital": {
|
||||
"defaultMessage": "{count, plural, other {Pembayang}}"
|
||||
},
|
||||
"project-type.shader.category": {
|
||||
"defaultMessage": "Pembayang"
|
||||
},
|
||||
"project-type.shader.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {pembayang}}"
|
||||
},
|
||||
"project.about.compatibility.environments": {
|
||||
"defaultMessage": "Persekitaran yang disokong"
|
||||
},
|
||||
@@ -2261,9 +2126,6 @@
|
||||
"project.about.tags.title": {
|
||||
"defaultMessage": "Tag"
|
||||
},
|
||||
"project.download-count-tooltip": {
|
||||
"defaultMessage": "{count, number} {count, plural, other {muat turun}}"
|
||||
},
|
||||
"project.environment.client-and-server.description": {
|
||||
"defaultMessage": "Diperlukan pada kedua-dua pelanggan dan pelayan."
|
||||
},
|
||||
@@ -2330,21 +2192,9 @@
|
||||
"project.environment.unknown.title": {
|
||||
"defaultMessage": "Persekitaran yang tidak diketahui"
|
||||
},
|
||||
"project.follower-count-tooltip": {
|
||||
"defaultMessage": "{count, number} {count, plural, other {pengikut}}"
|
||||
},
|
||||
"project.online-player-count": {
|
||||
"defaultMessage": "{count, number} dalam talian"
|
||||
},
|
||||
"project.online-player-count.tooltip": {
|
||||
"defaultMessage": "{count} {countPlural, plural, other {pemain}} dalam talian"
|
||||
},
|
||||
"project.recent-plays": {
|
||||
"defaultMessage": "{count} {countPlural, plural, other {sesi permainan terkini}}"
|
||||
},
|
||||
"project.recent-plays.tooltip": {
|
||||
"defaultMessage": "{count} {countPlural, plural, other {sesi permainan terkini}} daripada Modrinth dalam 2 minggu yang lalu"
|
||||
},
|
||||
"project.server.customModpackTooltip": {
|
||||
"defaultMessage": "Projek ini menggunakan pek mod tersuai"
|
||||
},
|
||||
@@ -2987,18 +2837,12 @@
|
||||
"servers.listing.new-label": {
|
||||
"defaultMessage": "Baharu"
|
||||
},
|
||||
"servers.listing.notice.files-kept-for-download": {
|
||||
"defaultMessage": "Fail anda akan disimpan selama <days-remaining>{daysRemaining} {daysRemaining, plural, other {hari} } lagi</days-remaining>. Hubungi sokongan untuk memuat turun fail sebelum ia dipadamkan. "
|
||||
},
|
||||
"servers.listing.notice.files-preserved-after-cancellation": {
|
||||
"defaultMessage": "Fail anda akan disimpan selama 30 hari selepas pembatalan."
|
||||
},
|
||||
"servers.listing.notice.moderated": {
|
||||
"defaultMessage": "Pelayan anda telah digantung melalui tindakan penyederhanaan. "
|
||||
},
|
||||
"servers.listing.notice.pending-change": {
|
||||
"defaultMessage": "Pelayan anda akan {verb} ke Pelan {planSize} pada <date>{formattedDate}</date>. "
|
||||
},
|
||||
"servers.listing.notice.provisioning": {
|
||||
"defaultMessage": "Sila tunggu sementara kami menyediakan pelayan anda. Ini boleh mengambil masa sehingga 10 minit."
|
||||
},
|
||||
@@ -3104,9 +2948,6 @@
|
||||
"servers.manage.resubscribe-success.title": {
|
||||
"defaultMessage": "Berjaya"
|
||||
},
|
||||
"servers.manage.search-placeholder": {
|
||||
"defaultMessage": "Cari {count} {count, plural, other {pelayan}}..."
|
||||
},
|
||||
"servers.manage.servers-title": {
|
||||
"defaultMessage": "Modrinth Hosting"
|
||||
},
|
||||
@@ -3119,9 +2960,6 @@
|
||||
"servers.manage.settings-hint.title": {
|
||||
"defaultMessage": "Tetapan pelayan anda telah dipindahkan"
|
||||
},
|
||||
"servers.medal-listing.countdown.remaining": {
|
||||
"defaultMessage": "Tinggal <days-count>{days}</days-count> {days, plural, other {hari}} <hours-count>{hours}</hours-count> {hours, plural, other {jam}} <minutes-count>{minutes}</minutes-count> {minutes, plural, other {minit}} <seconds-count>{seconds}</seconds-count> {seconds, plural, other {saat}}..."
|
||||
},
|
||||
"servers.medal-listing.new-server-label": {
|
||||
"defaultMessage": "Pelayan baharu"
|
||||
},
|
||||
@@ -3332,9 +3170,6 @@
|
||||
"settings.language.languages.search-field.placeholder": {
|
||||
"defaultMessage": "Cari bahasa..."
|
||||
},
|
||||
"settings.language.languages.search-results-announcement": {
|
||||
"defaultMessage": "{matches, plural, =0 {Tiada bahasa yang sepadan} other {Terdapat # bahasa yang sepadan}} dengan carian anda."
|
||||
},
|
||||
"settings.language.languages.search.no-results": {
|
||||
"defaultMessage": "Tiada bahasa yang sepadan dengan carian anda."
|
||||
},
|
||||
@@ -3801,4 +3636,3 @@
|
||||
"defaultMessage": "Tinggalkan laman?"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Het laden van de abonnementsgegevens is mislukt."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 Dagen"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/maand"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/kwartaal"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/jaar"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "Uw volgende afschrijving vindt plaats op <charge-date>{date}</charge-date>."
|
||||
},
|
||||
@@ -329,12 +317,6 @@
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Verwijderwaarschuwing"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Verwijder {count} {itemType}{count, plural, one {} other {s}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Verwijder {itemType}{count, plural, one {} other {s}}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select, downgrade {Downgrading} other {Updating}} kan compatibiliteitsproblemen veroorzaken. Mods of content die je bovenop het modpack hebt toegevoegd, blijven behouden, maar zijn mogelijk niet compatibel met de nieuwe versie."
|
||||
},
|
||||
@@ -401,9 +383,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Houd Shift ingedrukt tijdens het klikken om de bevestiging over te slaan."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "We raden aan een back-up te maken voordat je verder gaat zodat je je {type, select, server {wereld} other {instantie}} kunt herstellen als iets kapot gaat."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "De inhoud van je modpack kan vanaf nu hier gevonden worden!"
|
||||
},
|
||||
@@ -446,9 +425,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Wacht alsjeblieft"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Zoek {count} {contentType}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Bestandsnamen"
|
||||
},
|
||||
@@ -512,9 +488,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "{contentType} aan het updaten..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count} {contentType} Geselecteerd"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number} geselecteerd"
|
||||
},
|
||||
@@ -560,24 +533,12 @@
|
||||
"files.conflict-modal.overwrite-many-warning": {
|
||||
"defaultMessage": "Als u doorgaat met het uitpakken, worden meer dan 100 bestanden overschreven; hier zijn er een paar."
|
||||
},
|
||||
"files.conflict-modal.overwrite-warning": {
|
||||
"defaultMessage": ""
|
||||
},
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} Overschreven"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Overschreven"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "Bestanden worden overschreven"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "Maak {type, select, directory {folder} other {file}}"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "Maak een {type, select, directory {folder} other {file}}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "Bijv. mijn-map"
|
||||
},
|
||||
@@ -590,9 +551,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Bestand verwijderen"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {This folder and all its contents will be permanently deleted. This action cannot be undone.} other {This file will be permanently deleted. This action cannot be undone.}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "De inhoud van het bestand kon niet worden geladen."
|
||||
},
|
||||
@@ -719,9 +677,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "Bijv. /mijn-map"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {Move folder} other {Move file}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "Terug naar de startpagina"
|
||||
},
|
||||
@@ -767,15 +722,9 @@
|
||||
"files.operations.extracted": {
|
||||
"defaultMessage": "{size} Geëxtraheerd"
|
||||
},
|
||||
"files.operations.extracting": {
|
||||
"defaultMessage": "{bron} Uitpakken"
|
||||
},
|
||||
"files.operations.modpack-from-url": {
|
||||
"defaultMessage": "Modpack via URL"
|
||||
},
|
||||
"files.rename-modal.header": {
|
||||
"defaultMessage": "Hernoem {naam}"
|
||||
},
|
||||
"files.rename-modal.new-name-label": {
|
||||
"defaultMessage": "Nieuwe naam"
|
||||
},
|
||||
@@ -833,9 +782,6 @@
|
||||
"files.upload-dropdown.uploads-left": {
|
||||
"defaultMessage": " - {count} over"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "Sleep {type, select, undefined {files} other {{type}s}} hierheen om te uploaden"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "De naam mag alleen bestaan uit letters, cijfers, streepjes, onderstrepingstekens of spaties."
|
||||
},
|
||||
@@ -1190,18 +1136,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-title": {
|
||||
"defaultMessage": "Het vervangen van loaders is schadelijk"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "Gekoppeld {projectType, select, server {server project} other {modpack}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "{loader}-versie"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "Je moet je server opnieuw opstarten om van loader te wisselen."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Als je het modpack opnieuw installeert, wordt de inhoud van {type, select, server {server's} other {instance's}} teruggezet naar de oorspronkelijke staat, waarbij alle mods of inhoud die je hebt toegevoegd, worden verwijderd."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Modpack opnieuw installeren"
|
||||
},
|
||||
@@ -1232,9 +1172,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Koppeling verwijderen"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Door de koppeling ongedaan te maken, wordt deze {type, select, server {server} other {instance}} definitief losgekoppeld van het {projectType, select, server {server} other {modpack}}-project. Hierdoor kun je de loader en de Minecraft-versie wijzigen, maar ontvang je geen toekomstige updates meer."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Bezig met controleren..."
|
||||
},
|
||||
@@ -1250,12 +1187,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Modpack opnieuw installeren"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "Door het spel opnieuw te installeren, worden de loader en de Minecraft-afhankelijkheden opnieuw geïnstalleerd zonder dat je inhoud wordt verwijderd. Dit kan problemen verhelpen als je {type, select, server {server is not starting correctly} other {game is not launching due to launcher-related errors}}."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "Herstel {type, select, server {server} other {instance}}"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Herstellen"
|
||||
},
|
||||
@@ -1343,9 +1274,6 @@
|
||||
"instances.updater-modal.badge.incompatible": {
|
||||
"defaultMessage": "Niet compatibel"
|
||||
},
|
||||
"instances.updater-modal.downgrade-to": {
|
||||
"defaultMessage": "Terugzetten naar {versie}"
|
||||
},
|
||||
"instances.updater-modal.header": {
|
||||
"defaultMessage": "Update versie"
|
||||
},
|
||||
@@ -1379,12 +1307,6 @@
|
||||
"instances.updater-modal.show-incompatible": {
|
||||
"defaultMessage": "Toon compatibele"
|
||||
},
|
||||
"instances.updater-modal.switch-to": {
|
||||
"defaultMessage": "Overschakelen naar {versie}"
|
||||
},
|
||||
"instances.updater-modal.update-to": {
|
||||
"defaultMessage": "Update naar {versie}"
|
||||
},
|
||||
"instances.updater-modal.warning-app": {
|
||||
"defaultMessage": "Een update kan uw instantie onbruikbaar maken. Bekijk eerst het wijzigingslogboeken van de versie en maak een back-up."
|
||||
},
|
||||
@@ -2828,9 +2750,6 @@
|
||||
"servers.listing.notice.moderated": {
|
||||
"defaultMessage": "Uw account is door de moderators geblokkeerd. "
|
||||
},
|
||||
"servers.listing.notice.pending-change": {
|
||||
"defaultMessage": "Uw server wordt op <date>{formattedDate}</date> overgezet naar het {planSize} Plan. "
|
||||
},
|
||||
"servers.listing.notice.provisioning": {
|
||||
"defaultMessage": "Even geduld a.u.b. terwijl we uw server instellen. Dit kan tot 10 minuten duren."
|
||||
},
|
||||
@@ -3630,4 +3549,3 @@
|
||||
"defaultMessage": "Wil je de pagina verlaten?"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -212,12 +212,6 @@
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Slettingsadvarsel"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Slett {count} {itemType}{count, plural, one {} other {s}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Slett {itemType}{count, plural, one {} other {s}}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-header": {
|
||||
"defaultMessage": "{action, select, downgrade {Nedgrader} other {Oppdatering}} advarsel"
|
||||
},
|
||||
@@ -278,9 +272,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Hold inne Skift mens du klikker for å hoppe over bekreftelse."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Vi anbefaler at du lager ei sikkerhetskopiering før du fortsetter, sånn at du kan få tilbake {type, select, server {verden} other {instansen}}-en din viss noe går i stykker."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "Modpakkeinnholdet ditt kan nå bli funnet her!"
|
||||
},
|
||||
@@ -464,18 +455,12 @@
|
||||
"installation-settings.edit.warning-server": {
|
||||
"defaultMessage": "Vi anbefaler ikke at du endrer installeringsinstillingene dine etter installering av innhold. Viss du må endre dem, gjør omstart av serveren din."
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "Kopla til {projectType, select, server {serverprosjekt} other {modpakke}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "{loader}-versjon"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "Du kommer til å måtte starte serveren din på nytt att for å bytte loader."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Re-installering av modpakka tilbakestiller {type, select, server {serverens} other {instanser}}-innholdet til den opprinnelige tilstanden, fjerner modsa/innholda du har lagt til."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Re-installer modpakke"
|
||||
},
|
||||
@@ -506,9 +491,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Kople fra"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Frakopling kommer til å permanent frakople denne {type, select, server {server} other {instansen}} fra {projectType, select, server {server} other {modpakke}}-prosjektet, som gjør at du kan endre loader-en og Minecraft-versjonen, men du kommer ikke til å få framtidige oppdateringer."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Bekrefter..."
|
||||
},
|
||||
@@ -524,12 +506,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Reinstaller modpakke"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "Reparering installerer loader-en og Minecraft-avhengigheter på nytt att, uten å slette innholdet ditt. Dette kan fikse problem viss {type, select, server {serveren din ikke starter opp riktig} other {spillet ikke starter opp grunna problem relatert til launcher-en}}."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "Reparer {type, select, server {server} other {instanse}}"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Reparer"
|
||||
},
|
||||
@@ -2163,4 +2139,3 @@
|
||||
"defaultMessage": "Du har ulagrede endringer."
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Nie udało się załadować detalów subskrypcji."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 dni"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/miesiąc"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/kwartał"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/rok"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "Następna opłata zostanie pobrana dnia <charge-date>{date}</charge-date>."
|
||||
},
|
||||
@@ -104,21 +92,9 @@
|
||||
"browse.offline": {
|
||||
"defaultMessage": "Jesteś offline. Połącz się z internetem, aby przeglądać Modrinth!"
|
||||
},
|
||||
"browse.search.placeholder": {
|
||||
"defaultMessage": "Szukaj {projectType, select, mod {modów} modpack {paczek modów} resourcepack {paczek zasobów} shader {shaderów} plugin {pluginów} datapack {paczek danych} server {serwerów} other {projektów}}..."
|
||||
},
|
||||
"browse.selected-projects-floating-bar.aria-label": {
|
||||
"defaultMessage": "Wybrane projekty"
|
||||
},
|
||||
"browse.selected-projects-floating-bar.install": {
|
||||
"defaultMessage": "Zainstaluj {count, plural, one {# projekt} few {# projekty} other {# projektów}}"
|
||||
},
|
||||
"browse.selected-projects-floating-bar.selected-count": {
|
||||
"defaultMessage": "Wybrano {count, plural, one {# projekt} few {# projekty} other {# projektów}}"
|
||||
},
|
||||
"browse.selected-projects-leave-modal.admonition-body": {
|
||||
"defaultMessage": "Wybrano {count, plural, one{# projekt} few {# projekty} other {# projektów}} do zainstalowania. Zainstaluj je teraz lub wróć bez instalowania ich."
|
||||
},
|
||||
"browse.selected-projects-leave-modal.admonition-header": {
|
||||
"defaultMessage": "Wybrane projekty jeszcze nie zainstalowane"
|
||||
},
|
||||
@@ -326,9 +302,6 @@
|
||||
"content.card.select-project": {
|
||||
"defaultMessage": "Wybierz {project}"
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-body": {
|
||||
"defaultMessage": "Czy na pewno chcesz zaktualizować {count, plural, one {# projekt} few {# projekty} other {# projektów}} do ich najnowszych wersji? Zalecane jest aktualizowanie modów jeden po drugim."
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-header": {
|
||||
"defaultMessage": "Ostrzeżenie o aktualizacjach"
|
||||
},
|
||||
@@ -338,21 +311,12 @@
|
||||
"content.confirm-bulk-update.shift-click-hint": {
|
||||
"defaultMessage": "Przytrzymaj Shift klikając \"Zaktualizuj wszystko\", by pominąć ten dialog w przyszłości."
|
||||
},
|
||||
"content.confirm-bulk-update.update-button": {
|
||||
"defaultMessage": "Aktualizuj {count, plural, one {# projekt} few {# projekty} other {# projektów}}"
|
||||
},
|
||||
"content.confirm-deletion.admonition-body": {
|
||||
"defaultMessage": "Usuwanie modyfikacji może permanentnie wpłynąć na twój świat i spowodować brakujące elementy lub nieoczekiwane problemy przy ponownym jego wczytaniu."
|
||||
},
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Ostrzeżenie o usuwaniu modów"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Usuń {count} {itemType}{count, plural, one { element} few { elementy} many { elementów} other { elementu}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Usuń {itemType} ({count, plural, one {1 sztuka} other {{count} szt.Mapping}}) "
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select, downgrade {Aktualizacja do starszej} other {Aktualizacja do nowszej}} wersji może powodować problemy związane z kompatybilnością. Modyfikacje lub treści, które zostały dodane do paczki modów zostaną zachowane, ale mogą być niekompatybilne z nową wersją."
|
||||
},
|
||||
@@ -425,9 +389,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Przytrzymaj Shift podczas przyciskania, aby pominąć potwierdzenie."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Zalecamy utworzenie kopii zapasowej, by można było przywrócić {type, select, server {Twój świat} other {Twoją instancję}} w wypadku problemów."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "Treści Twojej paczki modów teraz możesz znaleźć tutaj!"
|
||||
},
|
||||
@@ -470,9 +431,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Proszę czekać"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Szukaj {count} {contentType}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Nazwy plików"
|
||||
},
|
||||
@@ -536,9 +494,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "Aktualizowanie {contentType}..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "Wybrano: {count} {contentType}"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "Wybrano {count, number}"
|
||||
},
|
||||
@@ -554,9 +509,6 @@
|
||||
"creation-flow.button.import": {
|
||||
"defaultMessage": "Importuj"
|
||||
},
|
||||
"creation-flow.button.import-instances": {
|
||||
"defaultMessage": "Importuj {count, plural, one {# instancję} few {# instancje} other {# instancji}}"
|
||||
},
|
||||
"creation-flow.button.setup-server": {
|
||||
"defaultMessage": "Ustaw serwer"
|
||||
},
|
||||
@@ -839,24 +791,9 @@
|
||||
"files.conflict-modal.overwrite-many-warning": {
|
||||
"defaultMessage": "Ponad 100 plików zostanie podmienionych, jeśli rozpakujesz ten plik; niektóre z nich są pokazane poniżej."
|
||||
},
|
||||
"files.conflict-modal.overwrite-warning": {
|
||||
"defaultMessage": "{count, plural, one {Podany plik istnieje już na Twoim serwerze i zostanie nadpisany} few {Podane {count} pliki istnieją już na Twoim serwerze i zostaną nadpisane} other {Podane {count} plików istnieje już na Twoim serwerze i zostanie nadpisanych}}, jeżeli rozpakujesz ten plik."
|
||||
},
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} {count, plural, one {nadpisany} other {nadpisanych}}"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Nadpisano"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "Pliki zostaną nadpisane"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "Utwórz {type, select, directory {folder} other {plik}}"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "Utwórz {type, select, directory {folder} other {plik}}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "np. mój-folder"
|
||||
},
|
||||
@@ -869,9 +806,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Usuń plik"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {Ten folder i wszystko w nim zawarte zostanie trwale usunięte.} other {Ten plik zostanie trwale usunięty.}} Tej akcji nie można odwrócić."
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "Nie udało się odczytać danych z pliku."
|
||||
},
|
||||
@@ -998,9 +932,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "np. /mój-folder"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "Przenieś {type, select, directory {folder} other {plik}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "Powrót do strony głównej"
|
||||
},
|
||||
@@ -1067,9 +998,6 @@
|
||||
"files.rename-modal.new-name-label": {
|
||||
"defaultMessage": "Nowa nazwa"
|
||||
},
|
||||
"files.row.item-count": {
|
||||
"defaultMessage": "{count, plural, one {# przedmiot} few {# przedmioty} other {# przedmiotów}}"
|
||||
},
|
||||
"files.table-header.created": {
|
||||
"defaultMessage": "Utworzono"
|
||||
},
|
||||
@@ -1118,12 +1046,6 @@
|
||||
"files.upload-dropdown.unexpected-error": {
|
||||
"defaultMessage": "Wystąpił nieoczekiwany błąd."
|
||||
},
|
||||
"files.upload-dropdown.uploads-left": {
|
||||
"defaultMessage": " - {count, plural, one {pozostał} few {pozostały} other {pozostało}} {count}"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "Przeciągnij i upuść {type, select, undefined {pliki} other {pliki {type}}, aby je przesłać"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "Nazwa powinna zawierać tylko znaki alfanumeryczne, myślniki, znaki podkreślenia lub spacje."
|
||||
},
|
||||
@@ -1271,9 +1193,6 @@
|
||||
"form.placeholder.state": {
|
||||
"defaultMessage": "Wprowadź województwo"
|
||||
},
|
||||
"format.bytes.0": {
|
||||
"defaultMessage": "{count, plural, one {# bajt} few {# bajty} other {# bajtów}}"
|
||||
},
|
||||
"format.bytes.1": {
|
||||
"defaultMessage": "{count, number} KiB"
|
||||
},
|
||||
@@ -1496,18 +1415,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-title": {
|
||||
"defaultMessage": "Zmiana loadera jest destruktywna"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "Połączone {projectType, select, server {projekty serwera} other {paczki zasobów}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "Wersja {loader}"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "Musisz zrestartować swój serwer, aby zmienić wersje silnika."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Re-instalacja paczki modów resetuje zasoby {type, select, server {serwera} other {instalacji}}, do {type, select, server {jego} other {jej}} oryginalnego stanu, usuwając jakiekolwiek mody, lub zasoby które dodałeś."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Przeinstaluj paczkę modów"
|
||||
},
|
||||
@@ -1538,9 +1451,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Rozłącz"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Rozłączanie trwale rozłącza {type, select, server {ten serwer} other {tą instancję}} od projektu {projectType, select, server {tego serwera} other {tej paczki modów}}, co pozwala na zmianę loadera lub wersji gry kosztem braku aktualizacji."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Weryfikowanie..."
|
||||
},
|
||||
@@ -1556,12 +1466,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Przeinstaluj paczkę modów"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "Naprawianie, ponownie instaluje silnik, oraz zależności Minecrafta, bez usuwania twojego świata. To może naprawić problemy, jeśli {type, select, server {twój serwer się poprawnie nie uruchamia} other {twoja gra się poprawnie nie uruchamia}}."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "Napraw {type, select, server {serwer} other {instalację}}"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Napraw"
|
||||
},
|
||||
@@ -1580,9 +1484,6 @@
|
||||
"instance.worlds.game_mode.unknown": {
|
||||
"defaultMessage": "Nieznany tryb gry"
|
||||
},
|
||||
"instances.content-install.compatible-count": {
|
||||
"defaultMessage": "{count} {count, plural, one {kompatybilna} few {kompatybilne} many {kompatybilnych} other {kompatybilne}} {count, plural, one {instalacja} few {instalacje} many {instalacji} other {instalacje}}"
|
||||
},
|
||||
"instances.content-install.existing-tab": {
|
||||
"defaultMessage": "Istniejąca instancja"
|
||||
},
|
||||
@@ -2393,78 +2294,30 @@
|
||||
"project-type.all": {
|
||||
"defaultMessage": "Wszystko"
|
||||
},
|
||||
"project-type.datapack.capital": {
|
||||
"defaultMessage": "{count, plural, one {Paczka danych} few {Paczki danych} other {Paczek danych}}"
|
||||
},
|
||||
"project-type.datapack.category": {
|
||||
"defaultMessage": "Paczki danych"
|
||||
},
|
||||
"project-type.datapack.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {paczka danych} few {paczki danych} other {paczek danych}}"
|
||||
},
|
||||
"project-type.mod.capital": {
|
||||
"defaultMessage": "{count, plural, one {Mod} few {Mody} other {Modów}}"
|
||||
},
|
||||
"project-type.mod.category": {
|
||||
"defaultMessage": "Modyfikacje"
|
||||
},
|
||||
"project-type.mod.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {mod} few {mody} other {modów}}"
|
||||
},
|
||||
"project-type.modpack.capital": {
|
||||
"defaultMessage": "{count, plural, one {Paczka modów} few {Paczki modów} other {Paczek modów}}"
|
||||
},
|
||||
"project-type.modpack.category": {
|
||||
"defaultMessage": "Paczki modów"
|
||||
},
|
||||
"project-type.modpack.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {paczka modów} few {paczki modów} other {paczek modów}}"
|
||||
},
|
||||
"project-type.plugin.capital": {
|
||||
"defaultMessage": "{count, plural, one {Plugin} few {Pluginy} other {Pluginów}}"
|
||||
},
|
||||
"project-type.plugin.category": {
|
||||
"defaultMessage": "Pluginy"
|
||||
},
|
||||
"project-type.plugin.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {plugin} few {pluginy} other {pluginów}}"
|
||||
},
|
||||
"project-type.project.capital": {
|
||||
"defaultMessage": "{count, plural, one {Projekt} few {Projekty} other {Projektów}}"
|
||||
},
|
||||
"project-type.project.category": {
|
||||
"defaultMessage": "Projekty"
|
||||
},
|
||||
"project-type.project.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {projekt} few {projekty} other {projektów}}"
|
||||
},
|
||||
"project-type.resourcepack.capital": {
|
||||
"defaultMessage": "{count, plural, one {Paczka zasobów} few {Paczki zasobów} other {Paczek zasobów}}"
|
||||
},
|
||||
"project-type.resourcepack.category": {
|
||||
"defaultMessage": "Paczki zasobów"
|
||||
},
|
||||
"project-type.resourcepack.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {paczka zasobów} few {paczki zasobów} other {paczek zasobów}}"
|
||||
},
|
||||
"project-type.server.capital": {
|
||||
"defaultMessage": "{count, plural, one {Serwer} few {Serwery} other {Serwerów}}"
|
||||
},
|
||||
"project-type.server.category": {
|
||||
"defaultMessage": "Serwery"
|
||||
},
|
||||
"project-type.server.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {serwer} few {serwery} other {serwerów}}"
|
||||
},
|
||||
"project-type.shader.capital": {
|
||||
"defaultMessage": "{count, plural, one {Shader} few {Shadery} other {Shaderów}}"
|
||||
},
|
||||
"project-type.shader.category": {
|
||||
"defaultMessage": "Shadery"
|
||||
},
|
||||
"project-type.shader.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {shader} few {shadery} other {shaderów}}"
|
||||
},
|
||||
"project.about.compatibility.environments": {
|
||||
"defaultMessage": "Wspierane środowiska"
|
||||
},
|
||||
@@ -2588,9 +2441,6 @@
|
||||
"project.about.tags.title": {
|
||||
"defaultMessage": "Etykiety"
|
||||
},
|
||||
"project.download-count-tooltip": {
|
||||
"defaultMessage": "{count, number} {count, plural, one {pobranie} few {pobrania} other {pobrań}}"
|
||||
},
|
||||
"project.environment.client-and-server.description": {
|
||||
"defaultMessage": "Wymagany i na kliencie, i na serwerze."
|
||||
},
|
||||
@@ -3278,9 +3128,6 @@
|
||||
"servers.backups.bulk-bar.deleting": {
|
||||
"defaultMessage": "Usuwanie {total, plural, one {# kopii zapasowej} other {# kopii zapasowych}}..."
|
||||
},
|
||||
"servers.backups.bulk-bar.selected-count": {
|
||||
"defaultMessage": "Wybrano {count, plural, one {# kopię zapasową} few {# kopie zapasowe} other {# kopii zapasowych}}"
|
||||
},
|
||||
"servers.backups.delete-modal.admonition-body": {
|
||||
"defaultMessage": "Po usunięciu nie będzie można odzyskać {count, plural, one {tej kopii zapasowej} other {tych kopii zapasowych}}. Usuwanie jest trwałe."
|
||||
},
|
||||
@@ -3290,9 +3137,6 @@
|
||||
"servers.backups.delete-modal.backups-label": {
|
||||
"defaultMessage": "{count, plural, one {Kopia zapasowa} other {Kopie zapasowe ({count})}}"
|
||||
},
|
||||
"servers.backups.delete-modal.confirm": {
|
||||
"defaultMessage": "Usuń {count, plural, one {kopię zapasową} few {# kopie zapasowe} other {# kopii zapasowych}}"
|
||||
},
|
||||
"servers.backups.delete-modal.header": {
|
||||
"defaultMessage": "Usuń {count, plural, one {kopię zapasową} other {kopie zapasowe}}"
|
||||
},
|
||||
@@ -3467,9 +3311,6 @@
|
||||
"servers.listing.notice.moderated": {
|
||||
"defaultMessage": "Twój serwer został zawieszony poprzez działania moderatorskie. "
|
||||
},
|
||||
"servers.listing.notice.pending-change": {
|
||||
"defaultMessage": "Twój serwer zostanie {verb} do planu {planSize} dnia <date>{formattedDate}</date>. "
|
||||
},
|
||||
"servers.listing.notice.provisioning": {
|
||||
"defaultMessage": "Prosimy o cierpliwość, podczas gdy ustawiamy Twój serwer. Może to potrwać nawet 10 minut."
|
||||
},
|
||||
@@ -3590,9 +3431,6 @@
|
||||
"servers.manage.settings-hint.title": {
|
||||
"defaultMessage": "Ustawienia twojego serwera zostały przeniesione"
|
||||
},
|
||||
"servers.medal-listing.countdown.remaining": {
|
||||
"defaultMessage": "<days-count>{days}</days-count> {days, plural, one {dzień} other {dni}}, <hours-count>{hours}</hours-count> {hours, plural, one {godzina} few {godziny} other {godzin}}, <minutes-count>{minutes}</minutes-count> {minutes, plural, one {minuta} few {minuty} other {minut}}, <seconds-count>{seconds}</seconds-count> {seconds, plural, one {sekunda} few {sekundy} other {sekund}} do końca..."
|
||||
},
|
||||
"servers.medal-listing.new-server-label": {
|
||||
"defaultMessage": "Nowy serwer"
|
||||
},
|
||||
@@ -3851,15 +3689,9 @@
|
||||
"settings.language.categories.search-result": {
|
||||
"defaultMessage": "Wyniki wyszukiwania"
|
||||
},
|
||||
"settings.language.description": {
|
||||
"defaultMessage": "Wybierz preferowany język, w którym ma być wyświetlana strona. Tłumaczenia są wykonywane przez chętnych <crowdin-link>na stronie Crowdin</crowdin-link>."
|
||||
},
|
||||
"settings.language.languages.search-field.placeholder": {
|
||||
"defaultMessage": "Szukaj język..."
|
||||
},
|
||||
"settings.language.languages.search-results-announcement": {
|
||||
"defaultMessage": "{matches, plural, =0 {Żaden język nie pasuje} one {# język pasuje} few {# języki pasują} other {# języków pasuje}} do Twojego wyszukiwania."
|
||||
},
|
||||
"settings.language.languages.search.no-results": {
|
||||
"defaultMessage": "Nie znaleziono żadnego języka pasującego do Twojego wyszukiwania."
|
||||
},
|
||||
@@ -4325,11 +4157,7 @@
|
||||
"ui.confirm-leave-modal.title": {
|
||||
"defaultMessage": "Opuścić stronę?"
|
||||
},
|
||||
"ui.stacked-admonitions.alert-count": {
|
||||
"defaultMessage": "{count, plural, one {# alert} few {# alerty} other {# alertów}}"
|
||||
},
|
||||
"ui.stacked-admonitions.dismiss-all": {
|
||||
"defaultMessage": "Odrzuć wszystkie"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Não foi possível carregar os detalhes da assinatura."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 dias"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/mês"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/trimestre"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/ano"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "Sua próxima cobrança será em <charge-date>{date}</charge-date>."
|
||||
},
|
||||
@@ -104,9 +92,6 @@
|
||||
"browse.offline": {
|
||||
"defaultMessage": "Você está offline. Conecte a internet para navegar no Modrinth!"
|
||||
},
|
||||
"browse.search.placeholder": {
|
||||
"defaultMessage": "Buscar {projectType, select, mod {mods} modpack {pacotes de mods} resourcepack {pacotes de recursos} shader {sombreadores} plugin {plugins} datapack {pacotes de dados} server {servidores} other {projetos}}..."
|
||||
},
|
||||
"browse.selected-projects-floating-bar.aria-label": {
|
||||
"defaultMessage": "Selecione projetos"
|
||||
},
|
||||
@@ -347,12 +332,6 @@
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Aviso de exclusão"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Excluir {count} {itemType}{count, plural, one {} other {s}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Excluir {itemType}{count, plural, one {} other {s}}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select, downgrade {O retrocesso de versão} other {A atualização}} pode causar problemas de compatibilidade. Mods ou conteúdo que você adicionou além do pacote de mods serão mantidos, mas podem não ser compatíveis com a nova versão."
|
||||
},
|
||||
@@ -431,9 +410,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Segure Shift ao clicar para pular a confirmação."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Recomendamos criar uma cópia de segurança antes de prosseguir, assim você poderá restaurar {type, select, server {seu mundo} other {sua instância}} caso algo dê errado."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "O conteúdo do seu pacote de mods agora pode ser encontrado aqui!"
|
||||
},
|
||||
@@ -476,9 +452,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Por favor, aguarde"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Buscar {count} {contentType}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Nomes dos arquivos"
|
||||
},
|
||||
@@ -542,9 +515,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "Atualizando {contentType}..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count} {contentType} selecionado(s)"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number} selecionado(s)"
|
||||
},
|
||||
@@ -851,18 +821,9 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} sobrescrito"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Sobrescrito"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "Os arquivos serão sobrescritos"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "Criar {type, select, directory {pasta} other {arquivo}}"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "Criar {type, select, directory {uma pasta} other {um arquivo}}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "ex.: minha-pasta"
|
||||
},
|
||||
@@ -875,9 +836,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Excluir arquivo"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {Esta pasta e todo o seu conteúdo serão excluídos permanentemente. Esta ação não pode ser desfeita.} other {Este arquivo será excluído permanentemente. Esta ação não pode ser desfeita.}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "Não foi possível carregar o conteúdo do arquivo."
|
||||
},
|
||||
@@ -1004,9 +962,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "ex.: /minha-pasta"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "Mover {type, select, directory {pasta} other {arquivo}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "Voltar para a página inicial"
|
||||
},
|
||||
@@ -1073,9 +1028,6 @@
|
||||
"files.rename-modal.new-name-label": {
|
||||
"defaultMessage": "Novo nome"
|
||||
},
|
||||
"files.row.item-count": {
|
||||
"defaultMessage": "{count, plural, =0 {Nenhum item} one {# item} other {# itens}}"
|
||||
},
|
||||
"files.table-header.created": {
|
||||
"defaultMessage": "Criado"
|
||||
},
|
||||
@@ -1127,9 +1079,6 @@
|
||||
"files.upload-dropdown.uploads-left": {
|
||||
"defaultMessage": " - {count} restantes"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "Solte {type, select, undefined {arquivos} other {{type}s}} aqui para enviar"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "O nome deve conter apenas caracteres alfanuméricos, hífens, sublinhados ou espaços."
|
||||
},
|
||||
@@ -1502,18 +1451,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-title": {
|
||||
"defaultMessage": "Alterar carregadores é destrutivo"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "Vinculado ao {projectType, select, server {projeto de servidor} other {pacote de mods}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "Versão do {loader}"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "Você precisará redefinir seu servidor para trocar o carregador."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Reinstalar o pacote de mods redefine o conteúdo {type, select, server {do servidor} other {da instancia}} para seu estado original, removendo quaisquer mods ou conteúdo que você tenha adicionado."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Reinstalar pacote de mods"
|
||||
},
|
||||
@@ -1544,9 +1487,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Desvincular"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Desvincular desconecta permanentemente {type, select, server {este servidor} other {esta instância}} do {projectType, select, server {projeto de servidor} other {pacote de mods}}, permitindo que você altere o carregador e a versão do Minecraft, mas você não receberá atualizações futuras."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Verificando..."
|
||||
},
|
||||
@@ -1562,12 +1502,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Reinstalar pacote de mods"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "Reparar reinstala o carregador e as dependências do Minecraft sem excluir seu conteúdo. Isso pode resolver problemas se seu {type, select, server {servidor não estiver iniciando corretamente} other {jogo não estiver iniciando devido a erros relacionados ao launcher}}."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "Reparar {type, select, server {servidor} other {instância}}"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Reparar"
|
||||
},
|
||||
@@ -1586,9 +1520,6 @@
|
||||
"instance.worlds.game_mode.unknown": {
|
||||
"defaultMessage": "Modo de jogo desconhecido"
|
||||
},
|
||||
"instances.content-install.compatible-count": {
|
||||
"defaultMessage": "{count, plural, =0 {Nenhuma instância compatível} one {{count} instância compatível} other {{count} instâncias compatíveis}} "
|
||||
},
|
||||
"instances.content-install.existing-tab": {
|
||||
"defaultMessage": "Instância existente"
|
||||
},
|
||||
@@ -2594,9 +2525,6 @@
|
||||
"project.about.tags.title": {
|
||||
"defaultMessage": "Etiquetas"
|
||||
},
|
||||
"project.download-count-tooltip": {
|
||||
"defaultMessage": "{count, plural, =0 {Nenhum download} one {{count} download} other {{count} downloads}}"
|
||||
},
|
||||
"project.environment.client-and-server.description": {
|
||||
"defaultMessage": "Necessário tanto no cliente quanto no servidor."
|
||||
},
|
||||
@@ -2663,21 +2591,6 @@
|
||||
"project.environment.unknown.title": {
|
||||
"defaultMessage": "Ambiente desconhecido"
|
||||
},
|
||||
"project.follower-count-tooltip": {
|
||||
"defaultMessage": "{count, plural, =0 {Nenhum seguidor} one {{count} seguidor} other {{count} seguidores}}"
|
||||
},
|
||||
"project.online-player-count": {
|
||||
"defaultMessage": "{count, plural, =0 {Ninguém online} other {{count} online}}"
|
||||
},
|
||||
"project.online-player-count.tooltip": {
|
||||
"defaultMessage": "{count, plural, =0 {Nenhum jogador} one {{count} jogador} other {{count} jogadores}} online"
|
||||
},
|
||||
"project.recent-plays": {
|
||||
"defaultMessage": "{countPlural, plural, =0 {Nenhuma entrada recente} one {{count} entrada recente} other {{count} entradas recentes}}"
|
||||
},
|
||||
"project.recent-plays.tooltip": {
|
||||
"defaultMessage": "{countPlural, plural, =0 {Nenhuma entrada recente} one {{count} entrada recente} other {{count} entradas recentes}} do Modrinth nas últimas 2 semanas"
|
||||
},
|
||||
"project.server.customModpackTooltip": {
|
||||
"defaultMessage": "Este projeto utiliza um pacote de mods personalizado"
|
||||
},
|
||||
@@ -3464,18 +3377,12 @@
|
||||
"servers.listing.new-label": {
|
||||
"defaultMessage": "Novo"
|
||||
},
|
||||
"servers.listing.notice.files-kept-for-download": {
|
||||
"defaultMessage": "Seus arquivos serão mantidos por mais {daysRemaining, plural, one {{daysRemaining} dia} other {{daysRemaining} dias}}. Entre em contato com o suporte para baixar os arquivos antes que sejam excluídos. "
|
||||
},
|
||||
"servers.listing.notice.files-preserved-after-cancellation": {
|
||||
"defaultMessage": "Seus arquivos serão preservados por 30 dias após o cancelamento."
|
||||
},
|
||||
"servers.listing.notice.moderated": {
|
||||
"defaultMessage": "Seu servidor foi suspenso por ação da moderação. "
|
||||
},
|
||||
"servers.listing.notice.pending-change": {
|
||||
"defaultMessage": "Seu servidor {verb} para o plano {planSize} em <date>{formattedDate}</date>. "
|
||||
},
|
||||
"servers.listing.notice.provisioning": {
|
||||
"defaultMessage": "Aguarde enquanto configuramos seu servidor. Isso pode levar até 10 minutos."
|
||||
},
|
||||
@@ -4331,11 +4238,7 @@
|
||||
"ui.confirm-leave-modal.title": {
|
||||
"defaultMessage": "Sair da página?"
|
||||
},
|
||||
"ui.stacked-admonitions.alert-count": {
|
||||
"defaultMessage": "{count, plural, =0 {Nenhum alerta} one {# alerta} other {# alertas}}"
|
||||
},
|
||||
"ui.stacked-admonitions.dismiss-all": {
|
||||
"defaultMessage": "Dispensar tudo"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Falha ao carregar detalhes da assinatura"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 dias"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/mês"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/trimestre"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/year"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "A sua próxima cobrança será em <charge-date>{date}</charge-date>."
|
||||
},
|
||||
@@ -299,12 +287,6 @@
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Aviso de eliminação"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Eliminar {count} {itemType}{count, plural, one {} other {s}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Eliminar {itemType}{count, plural, one {} other {s}}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select, downgrade {Reverter} other {Atualizar}} pode causar incompatibilidades. Mods ou conteúdo que tu adicionar ao modpack será mantido, mas pode não ser compatível com a nova versão."
|
||||
},
|
||||
@@ -371,9 +353,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Pressiona Shift enquanto clicas para saltar a confirmação."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Recomendamos a criação de um backup antes de proceder para que você possa restaurar {type, select, server {seu mundo} other {sua instância}} se alguma coisa quebrar."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "O conteúdo do teu modpack agora pode ser encontrado aqui!"
|
||||
},
|
||||
@@ -416,9 +395,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Aguarde"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Procurar {count} {contentType}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Nomes dos ficheiros"
|
||||
},
|
||||
@@ -482,9 +458,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "A atualizar {contentType}..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "Selecionou {count} {contentType}"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number} selecionado"
|
||||
},
|
||||
@@ -503,18 +476,9 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} a substituir"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Conflito"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "Os ficheiros serão substituídos"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "Criar {type, select, directory {pasta} other {arquivo}}"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "Criar {type, select, directory {uma pasta} other {um arquivo}}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "ex.: meu-diretorio"
|
||||
},
|
||||
@@ -527,9 +491,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Eliminar ficheiro"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {Este diretório e todo o seu conteúdo serão permanentemente apagados. Esta ação não pode ser desfeita.} other {Esse ficheiro será permanentemente apagado. Esta ação não pode ser desfeita.}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "Não foi possível carregar o conteúdo do ficheiro"
|
||||
},
|
||||
@@ -581,9 +542,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "ex.: /minha-pasta"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {Mover pasta} other {Mover ficheiro}}"
|
||||
},
|
||||
"files.navbar.new-folder": {
|
||||
"defaultMessage": "Nova pasta"
|
||||
},
|
||||
@@ -2586,4 +2544,3 @@
|
||||
"defaultMessage": "Tens alterações por guardar."
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -50,9 +50,6 @@
|
||||
"billing.resubscribe-modal.cancel": {
|
||||
"defaultMessage": "Отмена"
|
||||
},
|
||||
"billing.resubscribe-modal.cpus": {
|
||||
"defaultMessage": "{sharedCpus, plural, one {# разделяемый} other {# разделяемых}} CPU"
|
||||
},
|
||||
"billing.resubscribe-modal.description": {
|
||||
"defaultMessage": "Вы собираетесь возобновить подписку на <server-name>{serverName}</server-name>. После оплаты сервер продолжит работу без остановок."
|
||||
},
|
||||
@@ -65,18 +62,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Не удалось загрузить данные о подписке."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "в 5 дней"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "в месяц"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "в 3 месяца"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "в год"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "Следующее списание — <charge-date>{date}</charge-date>."
|
||||
},
|
||||
@@ -104,21 +89,9 @@
|
||||
"browse.offline": {
|
||||
"defaultMessage": "Вы не в сети. Подключитесь к интернету, чтобы искать на Modrinth."
|
||||
},
|
||||
"browse.search.placeholder": {
|
||||
"defaultMessage": "Поиск {projectType, select, mod {модов} modpack {сборок} resourcepack {наборов ресурсов} shader {шейдеров} plugin {плагинов} datapack {наборов данных} server {серверов} other {проектов}}..."
|
||||
},
|
||||
"browse.selected-projects-floating-bar.aria-label": {
|
||||
"defaultMessage": "Выбранные проекты"
|
||||
},
|
||||
"browse.selected-projects-floating-bar.install": {
|
||||
"defaultMessage": "Установить {count, plural, one {# проект} few {# проекта} other {# проектов}}"
|
||||
},
|
||||
"browse.selected-projects-floating-bar.selected-count": {
|
||||
"defaultMessage": "{count, plural, one {# проект выбран} few {# проекта выбрано} other {# проектов выбрано}}"
|
||||
},
|
||||
"browse.selected-projects-leave-modal.admonition-body": {
|
||||
"defaultMessage": "{count, plural, one {Выбран # проект} few {Выбрано # проекта} other {Выбрано # проектов}} для установки. Установите {count, plural, =1 {его} other {их}} сейчас или вернитесь без изменений."
|
||||
},
|
||||
"browse.selected-projects-leave-modal.admonition-header": {
|
||||
"defaultMessage": "Выбранные проекты ещё не установлены"
|
||||
},
|
||||
@@ -326,9 +299,6 @@
|
||||
"content.card.select-project": {
|
||||
"defaultMessage": "Выбрать {project}"
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-body": {
|
||||
"defaultMessage": "Вы уверены, что хотите обновить {count, plural, one {# проект} few {# проекта} other {# проектов}} до их последней совместимой версии? Рекомендуется обновлять контент по отдельности."
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-header": {
|
||||
"defaultMessage": "Предупреждение об обновлении"
|
||||
},
|
||||
@@ -338,21 +308,12 @@
|
||||
"content.confirm-bulk-update.shift-click-hint": {
|
||||
"defaultMessage": "Удерживайте Shift при нажатии на кнопку \"Обновить всё\", чтобы пропустить это подтверждение в будущем."
|
||||
},
|
||||
"content.confirm-bulk-update.update-button": {
|
||||
"defaultMessage": "Обновить {count, plural, one {# проект} few {# проекта} other {# проектов}}"
|
||||
},
|
||||
"content.confirm-deletion.admonition-body": {
|
||||
"defaultMessage": "Удаление мода может необратимо повлиять на ваш мир и привести к отсутствию контента или неожиданным проблемам при его следующей загрузке."
|
||||
},
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Предупреждение об удалении"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Удалить {count, plural, one {# проект} few {# проекта} other {# проектов}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Удалить {itemType}{count, plural, one {} few {а} many {ов} other {а}}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select, downgrade {Downgrading} other {Updating}} Это может привести к проблемам с совместимостью. Моды или контент, добавленные вами в дополнение к набору модов, будут сохранены, но могут быть несовместимы с новой версией."
|
||||
},
|
||||
@@ -377,9 +338,6 @@
|
||||
"content.confirm-unlink.unlink-button": {
|
||||
"defaultMessage": "Отвязать"
|
||||
},
|
||||
"content.diff-modal.added-count": {
|
||||
"defaultMessage": "{count, plural, one {# добавление} few {# добавления} other {# добавлений}}"
|
||||
},
|
||||
"content.diff-modal.diff-type.added": {
|
||||
"defaultMessage": "Добавлен (зависимость)"
|
||||
},
|
||||
@@ -389,15 +347,9 @@
|
||||
"content.diff-modal.diff-type.updated": {
|
||||
"defaultMessage": "Обновлён"
|
||||
},
|
||||
"content.diff-modal.removed-count": {
|
||||
"defaultMessage": "{count, plural, one {# удаление} few {# удаления} other {# удалений}}"
|
||||
},
|
||||
"content.diff-modal.unknown-content-body": {
|
||||
"defaultMessage": "Некоторый контент на вашем сервере не может быть анализирован и может быть затронут этим изменением."
|
||||
},
|
||||
"content.diff-modal.updated-count": {
|
||||
"defaultMessage": "{count, plural, one {# обновление} few {# обновления} other {# обновлений}}"
|
||||
},
|
||||
"content.filter.disabled": {
|
||||
"defaultMessage": "Отключён"
|
||||
},
|
||||
@@ -431,9 +383,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Удерживайте клавишу Shift во время нажатия, чтобы пропустить подтверждение."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Мы рекомендуем вам создать резервное копирование до продожения, чтобы вы смогли восстановить ваш{type, select, server { мир} other {у сборку}}."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "Теперь он находится здесь!"
|
||||
},
|
||||
@@ -452,9 +401,6 @@
|
||||
"content.page-layout.busy-description": {
|
||||
"defaultMessage": "Пожалуйста, дождитесь завершения операции перед редактированием."
|
||||
},
|
||||
"content.page-layout.empty.hint": {
|
||||
"defaultMessage": "Найдите проекты или добавьте файлы"
|
||||
},
|
||||
"content.page-layout.empty.modpack-hint": {
|
||||
"defaultMessage": "Добавьте дополнительный контент поверх этой сборки"
|
||||
},
|
||||
@@ -476,9 +422,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Подождите"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Поиск по {count, plural, one {# проекту} other {# проектам}}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Названия файлов"
|
||||
},
|
||||
@@ -518,33 +461,6 @@
|
||||
"content.selection-bar.all-already-enabled": {
|
||||
"defaultMessage": "Все выбранные проекты уже включены"
|
||||
},
|
||||
"content.selection-bar.bulk.deleting": {
|
||||
"defaultMessage": "Удаление проектов: {progress, number}/{total, number}..."
|
||||
},
|
||||
"content.selection-bar.bulk.deleting-waiting": {
|
||||
"defaultMessage": "Удаление проектов..."
|
||||
},
|
||||
"content.selection-bar.bulk.disabling": {
|
||||
"defaultMessage": "Отключение проектов: {progress, number}/{total, number}..."
|
||||
},
|
||||
"content.selection-bar.bulk.disabling-waiting": {
|
||||
"defaultMessage": "Отключение проектов..."
|
||||
},
|
||||
"content.selection-bar.bulk.enabling": {
|
||||
"defaultMessage": "Включение проектов: {progress, number}/{total, number}..."
|
||||
},
|
||||
"content.selection-bar.bulk.enabling-waiting": {
|
||||
"defaultMessage": "Включение проектов..."
|
||||
},
|
||||
"content.selection-bar.bulk.updating": {
|
||||
"defaultMessage": "Обновление проектов: {progress, number}/{total, number}..."
|
||||
},
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "Обновление проектов..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count, plural, one {# проект выбран} few {# проекта выбрано} other {# проектов выбрано}}"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "Выбрано: {count, number}"
|
||||
},
|
||||
@@ -560,9 +476,6 @@
|
||||
"creation-flow.button.import": {
|
||||
"defaultMessage": "Импортировать"
|
||||
},
|
||||
"creation-flow.button.import-instances": {
|
||||
"defaultMessage": "Импортировать {count, plural, one {# сборку} few {# сборки} other {# сборок}}"
|
||||
},
|
||||
"creation-flow.button.setup-server": {
|
||||
"defaultMessage": "Установить сервер"
|
||||
},
|
||||
@@ -845,24 +758,9 @@
|
||||
"files.conflict-modal.overwrite-many-warning": {
|
||||
"defaultMessage": "При продолжении более 100 файлов будут перезаписаны; вот некоторые из них."
|
||||
},
|
||||
"files.conflict-modal.overwrite-warning": {
|
||||
"defaultMessage": "{count, plural, one {Следующий # файл} few {Следующие # файла} other {Следующие # файлов}} уже есть на сервере. При продолжении {count, plural, =1 {он будет перезаписан} other {они будут перезаписаны}}."
|
||||
},
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count, plural, one {# перезапись} few {# перезаписи} other {# перезаписей}}"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Перезапись"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "Файлы будут перезаписаны"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "Создать {type, select, directory {папку} other {файл}}"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "Создание {type, select, directory {папки} other {файла}}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "Например: my-folder"
|
||||
},
|
||||
@@ -875,9 +773,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Удаление файла"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {Эта папка и всё содержимое в ней будет удалено навсегда. Это действие необратимо.} other {Этот файл будет удалён навсегда. Это действие необратимо.}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "Не получилось загрузить контент файла."
|
||||
},
|
||||
@@ -902,9 +797,6 @@
|
||||
"files.editor.find-in-file": {
|
||||
"defaultMessage": "Найти"
|
||||
},
|
||||
"files.editor.find-match-count": {
|
||||
"defaultMessage": "{current, number} из {total, number}"
|
||||
},
|
||||
"files.editor.find-next-match": {
|
||||
"defaultMessage": "Следующее совпадение"
|
||||
},
|
||||
@@ -989,9 +881,6 @@
|
||||
"files.layout.extraction-started-title": {
|
||||
"defaultMessage": "Извлечение началось"
|
||||
},
|
||||
"files.layout.selected-count": {
|
||||
"defaultMessage": "Выбрано: {count, number}"
|
||||
},
|
||||
"files.layout.unsaved-changes": {
|
||||
"defaultMessage": "Имеются несохранённые изменения."
|
||||
},
|
||||
@@ -1004,9 +893,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "Например: /my-folder"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "Перемещение {type, select, directory {папки} other {файла}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "В начало"
|
||||
},
|
||||
@@ -1073,9 +959,6 @@
|
||||
"files.rename-modal.new-name-label": {
|
||||
"defaultMessage": "Новое имя"
|
||||
},
|
||||
"files.row.item-count": {
|
||||
"defaultMessage": "{count, plural, one {# элемент} few {# элемента} other {# элементов}}"
|
||||
},
|
||||
"files.table-header.created": {
|
||||
"defaultMessage": "Создан"
|
||||
},
|
||||
@@ -1127,9 +1010,6 @@
|
||||
"files.upload-dropdown.uploads-left": {
|
||||
"defaultMessage": " - {count} осталось"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "Перетащите сюда {type, select, undefined {файл(ы)} other {{type}}}, чтобы загрузить"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "Имя должно содержать только буквенные символы, дефисы, подчеркивания или пробелы."
|
||||
},
|
||||
@@ -1277,9 +1157,6 @@
|
||||
"form.placeholder.state": {
|
||||
"defaultMessage": "Введите край/область"
|
||||
},
|
||||
"format.bytes.0": {
|
||||
"defaultMessage": "{count, plural, one {# байт} few {# байта} many {# байт} other {# байта}}"
|
||||
},
|
||||
"format.bytes.1": {
|
||||
"defaultMessage": "{count, number} КиБ"
|
||||
},
|
||||
@@ -1418,9 +1295,6 @@
|
||||
"hosting.specs.gb-storage": {
|
||||
"defaultMessage": "{storage} ГБ диска"
|
||||
},
|
||||
"hosting.specs.shared-cpus": {
|
||||
"defaultMessage": "{cpus, plural, one {# разделяемый} other {# разделяемых}} CPU"
|
||||
},
|
||||
"icon-select.edit": {
|
||||
"defaultMessage": "Изменить иконку"
|
||||
},
|
||||
@@ -1502,18 +1376,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-title": {
|
||||
"defaultMessage": "Смена загрузчика модов приведёт к повреждениям"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "Отвязка {projectType, select, server {серверного проекта} other {сборки}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "Версия {loader}"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "Вам нужно сбросить сервер для изменения загрузчика."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Переустановка модпака сбросит содержимое {type, select, server {сервера} other {сборки}} до исходного состояния, удалив все добавленные вами моды и файлы."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Переустановка сборки"
|
||||
},
|
||||
@@ -1544,9 +1412,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Отвязать"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Отвязка навсегда отсоединяет {type, select, server {этот сервер} other {этот экземпляр}} от {projectType, select, server {этого серверного} other {этого}} проекта, что позволяет изменить загрузчик и версию Minecraft, но вы больше не будете получать обновления."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Проверка..."
|
||||
},
|
||||
@@ -1562,12 +1427,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Переустановить сборку"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "Будут переустановлены загрузчик и зависимости Minecraft. Контент останется. Может устранить проблемы {type, select, server {с запуском сервера} other {с запуском из‑за ошибок лаунчера}}."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "Исправление {type, select, server {сервера} other {сборки}}"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Исправить"
|
||||
},
|
||||
@@ -1586,9 +1445,6 @@
|
||||
"instance.worlds.game_mode.unknown": {
|
||||
"defaultMessage": "Неизвестный режим игры"
|
||||
},
|
||||
"instances.content-install.compatible-count": {
|
||||
"defaultMessage": "{count, plural, one {# совместимая сборка} few {# совместимые сборки} other {# совместимых сборок}}"
|
||||
},
|
||||
"instances.content-install.existing-tab": {
|
||||
"defaultMessage": "Существующая сборка"
|
||||
},
|
||||
@@ -2114,9 +1970,6 @@
|
||||
"markdown-editor.max-length.unlimited": {
|
||||
"defaultMessage": "без ограничений"
|
||||
},
|
||||
"markdown-editor.max-length.value": {
|
||||
"defaultMessage": "{currentLength, number}/{maxLength, number}"
|
||||
},
|
||||
"markdown-editor.placeholder": {
|
||||
"defaultMessage": "Напишите что‑нибудь..."
|
||||
},
|
||||
@@ -2399,78 +2252,30 @@
|
||||
"project-type.all": {
|
||||
"defaultMessage": "Всё"
|
||||
},
|
||||
"project-type.datapack.capital": {
|
||||
"defaultMessage": "{count, plural, one {набор данных} few {набора данных} other {наборов данных}}"
|
||||
},
|
||||
"project-type.datapack.category": {
|
||||
"defaultMessage": "Наборы данных"
|
||||
},
|
||||
"project-type.datapack.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {набор данных} few {набора данных} other {наборов данных}}"
|
||||
},
|
||||
"project-type.mod.capital": {
|
||||
"defaultMessage": "{count, plural, one {мод} few {мода} other {модов}}"
|
||||
},
|
||||
"project-type.mod.category": {
|
||||
"defaultMessage": "Моды"
|
||||
},
|
||||
"project-type.mod.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {мод} few {мода} other {модов}}"
|
||||
},
|
||||
"project-type.modpack.capital": {
|
||||
"defaultMessage": "{count, plural, one {сборка} few {сборки} other {сборок}}"
|
||||
},
|
||||
"project-type.modpack.category": {
|
||||
"defaultMessage": "Сборки"
|
||||
},
|
||||
"project-type.modpack.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {сборка} few {сборки} other {сборок}}"
|
||||
},
|
||||
"project-type.plugin.capital": {
|
||||
"defaultMessage": "{count, plural, one {плагин} few {плагина} other {плагинов}}"
|
||||
},
|
||||
"project-type.plugin.category": {
|
||||
"defaultMessage": "Плагины"
|
||||
},
|
||||
"project-type.plugin.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {плагин} few {плагина} other {плагинов}}"
|
||||
},
|
||||
"project-type.project.capital": {
|
||||
"defaultMessage": "{count, plural, one {проект} few {проекта} other {проектов}}"
|
||||
},
|
||||
"project-type.project.category": {
|
||||
"defaultMessage": "Проекты"
|
||||
},
|
||||
"project-type.project.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {проект} few {проекта} other {проектов}}"
|
||||
},
|
||||
"project-type.resourcepack.capital": {
|
||||
"defaultMessage": "{count, plural, one {набор ресурсов} few {набора ресурсов} other {наборов ресурсов}}"
|
||||
},
|
||||
"project-type.resourcepack.category": {
|
||||
"defaultMessage": "Наборы ресурсов"
|
||||
},
|
||||
"project-type.resourcepack.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {набор ресурсов} few {набора ресурсов} other {наборов ресурсов}}"
|
||||
},
|
||||
"project-type.server.capital": {
|
||||
"defaultMessage": "{count, plural, one {сервер} few {сервера} other {серверов}}"
|
||||
},
|
||||
"project-type.server.category": {
|
||||
"defaultMessage": "Серверы"
|
||||
},
|
||||
"project-type.server.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {сервер} few {сервера} other {серверов}}"
|
||||
},
|
||||
"project-type.shader.capital": {
|
||||
"defaultMessage": "{count, plural, one {шейдер} few {шейдера} other {шейдеров}}"
|
||||
},
|
||||
"project-type.shader.category": {
|
||||
"defaultMessage": "Шейдеры"
|
||||
},
|
||||
"project-type.shader.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {шейдер} few {шейдера} other {шейдеров}}"
|
||||
},
|
||||
"project.about.compatibility.environments": {
|
||||
"defaultMessage": "Поддерживаемые среды"
|
||||
},
|
||||
@@ -2594,9 +2399,6 @@
|
||||
"project.about.tags.title": {
|
||||
"defaultMessage": "Теги"
|
||||
},
|
||||
"project.download-count-tooltip": {
|
||||
"defaultMessage": "{count, number} {count, plural, one {скачивание} few {скачивания} other {скачиваний}}"
|
||||
},
|
||||
"project.environment.client-and-server.description": {
|
||||
"defaultMessage": "Обязателен и для клиента, и для сервера."
|
||||
},
|
||||
@@ -2663,21 +2465,9 @@
|
||||
"project.environment.unknown.title": {
|
||||
"defaultMessage": "Неизвестная среда"
|
||||
},
|
||||
"project.follower-count-tooltip": {
|
||||
"defaultMessage": "{count, number} {count, plural, one {подписчик} few {подписчика} other {подписчиков}}"
|
||||
},
|
||||
"project.online-player-count": {
|
||||
"defaultMessage": "{count, number} в игре"
|
||||
},
|
||||
"project.online-player-count.tooltip": {
|
||||
"defaultMessage": "{count} {countPlural, plural, one {игрок} few {игрока} other {игроков}} сейчас на сервере"
|
||||
},
|
||||
"project.recent-plays": {
|
||||
"defaultMessage": "{count} {countPlural, plural, one {недавний запуск} few {недавних запуска} other {недавних запусков}}"
|
||||
},
|
||||
"project.recent-plays.tooltip": {
|
||||
"defaultMessage": "{count} {countPlural, plural, one {запуск} few {запуска} other {запусков}} через Modrinth за последние 2 недели"
|
||||
},
|
||||
"project.server.customModpackTooltip": {
|
||||
"defaultMessage": "Используется собственная сборка"
|
||||
},
|
||||
@@ -3122,9 +2912,6 @@
|
||||
"search.filter.locked.default.sync": {
|
||||
"defaultMessage": "Синхронизировать"
|
||||
},
|
||||
"search.filter.locked.default.title": {
|
||||
"defaultMessage": "Фильтр заблокирован"
|
||||
},
|
||||
"search.filter.locked.default.unlock": {
|
||||
"defaultMessage": "Разблокировать"
|
||||
},
|
||||
@@ -3464,18 +3251,12 @@
|
||||
"servers.listing.new-label": {
|
||||
"defaultMessage": "Новый"
|
||||
},
|
||||
"servers.listing.notice.files-kept-for-download": {
|
||||
"defaultMessage": "Ваши файлы будут храниться еще {daysRemaining} {daysRemaining, plural,one {день} few {дня} many {дней} other {дней}}. Свяжитесь с поддержкой чтобы скачать файлы до того, как они будут удалены. "
|
||||
},
|
||||
"servers.listing.notice.files-preserved-after-cancellation": {
|
||||
"defaultMessage": "Ваши файлы будут храниться в течение 30 дней."
|
||||
},
|
||||
"servers.listing.notice.moderated": {
|
||||
"defaultMessage": "Ваш сервер был заблокирован модерацией "
|
||||
},
|
||||
"servers.listing.notice.pending-change": {
|
||||
"defaultMessage": "Ваш сервер будет {verb} к {planSize} Запланирован на <date>{formattedDate}</date>. "
|
||||
},
|
||||
"servers.listing.notice.provisioning": {
|
||||
"defaultMessage": "Пожалуйста, подождите, пока мы настроим ваш сервер. Это займет до 10 минут."
|
||||
},
|
||||
@@ -3581,9 +3362,6 @@
|
||||
"servers.manage.resubscribe-success.title": {
|
||||
"defaultMessage": "Готово"
|
||||
},
|
||||
"servers.manage.search-placeholder": {
|
||||
"defaultMessage": "Поиск по {count, plural, one {# серверу} other {# серверам}}..."
|
||||
},
|
||||
"servers.manage.servers-title": {
|
||||
"defaultMessage": "Modrinth Hosting"
|
||||
},
|
||||
@@ -3596,9 +3374,6 @@
|
||||
"servers.manage.settings-hint.title": {
|
||||
"defaultMessage": "Настройки сервера перемещены"
|
||||
},
|
||||
"servers.medal-listing.countdown.remaining": {
|
||||
"defaultMessage": "<days-count>{days}</days-count> {days, plural, one {день} few {дня} other {дней}} <hours-count>{hours}</hours-count> {hours, plural, one {час} few {часа} other {часов}} <minutes-count>{minutes}</minutes-count> {minutes, plural, one {минута} few {минуты} other {минут}} <seconds-count>{seconds}</seconds-count> {seconds, plural, one {секунда} few {секунды} other {секунд}} осталось..."
|
||||
},
|
||||
"servers.medal-listing.new-server-label": {
|
||||
"defaultMessage": "Новый сервер"
|
||||
},
|
||||
@@ -3863,9 +3638,6 @@
|
||||
"settings.language.languages.search-field.placeholder": {
|
||||
"defaultMessage": "Поиск языка..."
|
||||
},
|
||||
"settings.language.languages.search-results-announcement": {
|
||||
"defaultMessage": "{matches, plural, =0 {Не найдены языки, соответствующие} one {Найден # язык, соответствующий} few {Найдено # языка, соответствующих} other {Найдено # языков, соответствующих}} запросу."
|
||||
},
|
||||
"settings.language.languages.search.no-results": {
|
||||
"defaultMessage": "Не найдены языки, соответствующие запросу."
|
||||
},
|
||||
@@ -4331,11 +4103,7 @@
|
||||
"ui.confirm-leave-modal.title": {
|
||||
"defaultMessage": "Уйти со страницы?"
|
||||
},
|
||||
"ui.stacked-admonitions.alert-count": {
|
||||
"defaultMessage": "{count, plural, one {# уведомление} few {# уведомления} other {# уведомлений}}"
|
||||
},
|
||||
"ui.stacked-admonitions.dismiss-all": {
|
||||
"defaultMessage": "Закрыть всё"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -59,18 +59,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Misslyckades att ladda prenumerationsdetaljer."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 dagar"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/månad"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/kvartal"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/år"
|
||||
},
|
||||
"billing.resubscribe-modal.plan-label": {
|
||||
"defaultMessage": "Plan"
|
||||
},
|
||||
@@ -269,21 +257,12 @@
|
||||
"content.confirm-bulk-update.header": {
|
||||
"defaultMessage": "Uppdatera projekt"
|
||||
},
|
||||
"content.confirm-bulk-update.update-button": {
|
||||
"defaultMessage": "Uppdatera {count} projekt"
|
||||
},
|
||||
"content.confirm-deletion.admonition-body": {
|
||||
"defaultMessage": "Att radera en mod kan ständigt påverka din värld och kan orsaka försvunnen innehåll eller oförväntade problem när den öppnas igen."
|
||||
},
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Raderingsvarning"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Radera {count} {count, plural, one {{itemType, select, project {projekt} version {version} user {användare} other {projekt}}} other {{itemType, select, project {projekt} version {versioner} user {användare} other {projekt}}}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Radera {count, plural, one {{itemType, select, project {projekt} version {version} user {användare} other {projekt}}} other {{itemType, select, project {projekt} version {versioner} user {användare} other {projekt}}}}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select, downgrade {Att nedgradera} other {Att uppdatera}} kan orsaka kompatibilitetsproblem. Moddar eller innehåller du har lagt till själv kommer behållas, men kanske inte är kompatibel med nya versionen."
|
||||
},
|
||||
@@ -350,9 +329,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Håll Skift medan du klickar för att hoppa över bekräftelsen."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Vi rekommenderar att du skapar en säkerhetskopia så att du kan återställa din {type, select, server {värld} other {instans}} ifall något går sönder."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "Modpaketets innehåll kan nu ses här!"
|
||||
},
|
||||
@@ -395,9 +371,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Vänligen vänta"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Sök genom {count} {contentType}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Filernas namn"
|
||||
},
|
||||
@@ -461,9 +434,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "Uppdaterar {contentType}..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count} {contentType} valda"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number} valda"
|
||||
},
|
||||
@@ -482,18 +452,9 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} överskrivna"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Överskriven"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "Filer kommer att skrivas över"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "Skapa {type, select, directory {mapp} other {fil}}"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "Skapa en {type, select, directory {mapp} other {fil}}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "t.ex. min-mapp"
|
||||
},
|
||||
@@ -506,9 +467,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Radera fil"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {Mappen och dess innehåll kommer raderas permanent. Det här kan inte ångras.} other {Filen kommer raderas permanent. Det här kan inte ångras.}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "Kunde inte ladda filens innehåll."
|
||||
},
|
||||
@@ -872,18 +830,12 @@
|
||||
"installation-settings.edit.warning-server": {
|
||||
"defaultMessage": "Vi rekommenderar inte att du ändrar installationsinställningarna efter att du har installerat innehållet. Om du vill ändra dem måste du starta om servern."
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "Länkat {projectType, select, server {serverprojekt} other {modpaket}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "{loader} version"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "Du kommer att behöva ställa om din server för att ändra loader."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Ominstallering av modpaketet återställer {type, select, server {serverns} other {instansens}} innehåll till dess originella skick, vilket kommer ta bort moddar eller innehåll som du lagt till."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Ominstallera modpaket"
|
||||
},
|
||||
@@ -914,9 +866,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Avlänka"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Att avlänka kommer permanent avkoppla denna {type, select, server {server} other {instans}} från {projectType, select, server {server} other {modpaket}}-projektet, vilket ska låta dig ändra loadern och Minecraft-versionen, men du kommer inte att få uppdateringar i framtiden."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Verifierar..."
|
||||
},
|
||||
@@ -932,12 +881,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Ominstallera modpack"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "Att laga kommer att ominstallera loadern och Minecraft-beroenden utan att radera ditt innehåll. Detta kan lösa problem om {type, select, server {din server inte startar som den ska} other {ditt spel inte startar på grund av lancher-relaterade fel}}."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "Reparera {type, select, server {server} other {instans}}"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Reparera"
|
||||
},
|
||||
@@ -1016,9 +959,6 @@
|
||||
"instances.modpack-content-modal.no-results": {
|
||||
"defaultMessage": "Inga projekt matchar din sökning."
|
||||
},
|
||||
"instances.modpack-content-modal.search-placeholder": {
|
||||
"defaultMessage": "Sök genom {count, number} projekt"
|
||||
},
|
||||
"instances.updater-modal.badge.current": {
|
||||
"defaultMessage": "Nuvarande"
|
||||
},
|
||||
@@ -1808,15 +1748,9 @@
|
||||
"project.environment.unknown.title": {
|
||||
"defaultMessage": "Okänd miljö"
|
||||
},
|
||||
"project.follower-count-tooltip": {
|
||||
"defaultMessage": "{count, number} följare"
|
||||
},
|
||||
"project.online-player-count": {
|
||||
"defaultMessage": "{count, number} online"
|
||||
},
|
||||
"project.online-player-count.tooltip": {
|
||||
"defaultMessage": "{count} spelare online"
|
||||
},
|
||||
"project.recent-plays": {
|
||||
"defaultMessage": "Spelades senast {count} {countPlural, plural, one {gång} other {gånger}}"
|
||||
},
|
||||
@@ -2552,9 +2486,6 @@
|
||||
"settings.language.languages.search-field.placeholder": {
|
||||
"defaultMessage": "Sök efter ett språk..."
|
||||
},
|
||||
"settings.language.languages.search-results-announcement": {
|
||||
"defaultMessage": "{matches, plural, =0 {Inga språk matchar} other {# språk matchar}} din sökning."
|
||||
},
|
||||
"settings.language.languages.search.no-results": {
|
||||
"defaultMessage": "Inget språk matchar din sökning."
|
||||
},
|
||||
@@ -2976,4 +2907,3 @@
|
||||
"defaultMessage": "Du har osparade ändringar."
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -143,9 +143,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "กำลังอัปเดต {contentType}..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count} {contentType} เลือกแล้ว"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number} เลือกแล้ว"
|
||||
},
|
||||
@@ -654,4 +651,3 @@
|
||||
"defaultMessage": "โปรไฟล์สาธารณะ"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -59,18 +59,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Abonelik detayları yüklenemedi."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 gün"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/ay"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/çeyrek"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/yıl"
|
||||
},
|
||||
"billing.resubscribe-modal.plan-label": {
|
||||
"defaultMessage": "Plan"
|
||||
},
|
||||
@@ -299,18 +287,12 @@
|
||||
"content.confirm-bulk-update.shift-click-hint": {
|
||||
"defaultMessage": "Gelecekte bu onayı atlamak için \"Hepsini güncelle\" seçeneğine tıklarken Shift tuşuna basılı tutun."
|
||||
},
|
||||
"content.confirm-bulk-update.update-button": {
|
||||
"defaultMessage": "{count} projeyi güncelle"
|
||||
},
|
||||
"content.confirm-deletion.admonition-body": {
|
||||
"defaultMessage": "Mod kaldırmak dünyanızı kalıcı şekilde etkileyebilir ve eksik içerik ve beklenmedik sorunlar yaşayabilirsiniz."
|
||||
},
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Kaldırma uyarısı"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "{count} {itemType} kaldır"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "{itemType} kaldır"
|
||||
},
|
||||
@@ -389,9 +371,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Doğrulamayı atlamak için tıklarken Shift basılı tutun."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Herhangi bir şey bozulursa {type, select, server {dünyanızı} other {kurulumunuzu}} kurtarmak için devam etmeden önce yedek oluşturmanızı tavsiye ediyoruz."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "Mod paketinizin içeriği artık burada bulunabilir!"
|
||||
},
|
||||
@@ -434,9 +413,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Lütfen bekleyin"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "{count} {contentType} arasında arayın..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Dosya adları"
|
||||
},
|
||||
@@ -500,9 +476,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "{contentType} güncelleniyor..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count} {contentType} seçildi"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number} seçildi"
|
||||
},
|
||||
@@ -749,18 +722,9 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} tanesinin üzerine yazıldı"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Üzerine yazıldı"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "Dosyaların üzerine yazılacak"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "{type, select, directory {klasör} other {dosya}} oluştur"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "Bir {type, select, directory {klasör} other {dosya}} oluştur"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "örneğin: klasörüm"
|
||||
},
|
||||
@@ -773,9 +737,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Dosyayı sil"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {Bu klasör ve içindeki tüm içerikler kalıcı olarak silinecektir. Bu işlem geri alınamaz.} other {Bu dosya kalıcı olarak silinecektir. Bu işlem geri alınamaz.}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "Dosya içeriği yüklenemedi."
|
||||
},
|
||||
@@ -902,9 +863,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "Örn. /klasorum"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {Klasörü taşı} other {Dosyayı taşı}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "Ana sayfaya dön"
|
||||
},
|
||||
@@ -1016,9 +974,6 @@
|
||||
"files.upload-dropdown.uploads-left": {
|
||||
"defaultMessage": "- {count} kaldı"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "Yüklemek için {type, select, undefined {dosyaları} other {{type}ları}} buraya bırakın"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "Ad yalnızca alfanümerik karakterler, tireler, alt çizgiler veya boşluklar içerebilir."
|
||||
},
|
||||
@@ -1367,18 +1322,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-title": {
|
||||
"defaultMessage": "Yükleyici değiştirmek tehlikelidir"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "Bağlı {projectType, select, server {sunucu} other {mod paketi}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "{loader} sürümü"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "Yükleyici değiştirmek için sunucunuzu sıfırlamalısınız."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Mod paketini tekrardan kurmak {type, select, server {sunucuyu} other {kurulumu}} orijinal hâline geri döndürür. Bu işlem sonradan eklediğiniz tüm içeriği siler."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Mod paketini yeniden kur"
|
||||
},
|
||||
@@ -1409,9 +1358,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Bağlantıyı kopar"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Bağlantıyı kalıcı olarak kesmek, bu {type, select, server {sunucunun} other {örneğin}} {projectType, select, server {sunucu} other {mod paketi}} projesiyle olan ilişkisini tamamen koparır; bu sayede yükleyiciyi ve Minecraft sürümünü değiştirebilirsiniz ancak gelecekteki güncellemeleri alamazsınız."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Doğrulanıyor..."
|
||||
},
|
||||
@@ -1427,12 +1373,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Mod paketini yeniden kur"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "Tamir etmek yükleyiciyi ve Minecraft'ın çalışması için gereken dosyaları, sizin içeriğinizi silmeden tekrar yükler. Bu, {type, select, server {sunucunuz doğru başlamıyor ise} other {oyununuz yükleyici bazlı hatalardan dolayı başlamıyor ise}} sorunları çözebilir."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "{type, select, server {Sunucuyu} other {Kurulumu}} tamir et"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Tamir et"
|
||||
},
|
||||
@@ -1451,9 +1391,6 @@
|
||||
"instance.worlds.game_mode.unknown": {
|
||||
"defaultMessage": "Bilinmeyen oyun modu"
|
||||
},
|
||||
"instances.content-install.compatible-count": {
|
||||
"defaultMessage": "{count} uyumlu kurulum"
|
||||
},
|
||||
"instances.content-install.existing-tab": {
|
||||
"defaultMessage": "Var olan kurulum"
|
||||
},
|
||||
@@ -2009,9 +1946,6 @@
|
||||
"payment-method.amex": {
|
||||
"defaultMessage": "American Express"
|
||||
},
|
||||
"payment-method.card_display": {
|
||||
"defaultMessage": ""
|
||||
},
|
||||
"payment-method.cashapp": {
|
||||
"defaultMessage": "Cash App"
|
||||
},
|
||||
@@ -2087,72 +2021,30 @@
|
||||
"project-type.all": {
|
||||
"defaultMessage": "Tümü"
|
||||
},
|
||||
"project-type.datapack.capital": {
|
||||
"defaultMessage": "Veri Paketi"
|
||||
},
|
||||
"project-type.datapack.category": {
|
||||
"defaultMessage": "Veri Paketleri"
|
||||
},
|
||||
"project-type.datapack.lowercase": {
|
||||
"defaultMessage": "veri paketi"
|
||||
},
|
||||
"project-type.mod.capital": {
|
||||
"defaultMessage": "Mod"
|
||||
},
|
||||
"project-type.mod.category": {
|
||||
"defaultMessage": "Modlar"
|
||||
},
|
||||
"project-type.mod.lowercase": {
|
||||
"defaultMessage": "mod"
|
||||
},
|
||||
"project-type.modpack.capital": {
|
||||
"defaultMessage": "Mod Paketi"
|
||||
},
|
||||
"project-type.modpack.category": {
|
||||
"defaultMessage": "Mod Paketleri"
|
||||
},
|
||||
"project-type.modpack.lowercase": {
|
||||
"defaultMessage": "mod paketi"
|
||||
},
|
||||
"project-type.plugin.capital": {
|
||||
"defaultMessage": "Plugin"
|
||||
},
|
||||
"project-type.plugin.category": {
|
||||
"defaultMessage": "Pluginler"
|
||||
},
|
||||
"project-type.plugin.lowercase": {
|
||||
"defaultMessage": "plugin"
|
||||
},
|
||||
"project-type.project.capital": {
|
||||
"defaultMessage": "{count, plural,one {Proje} other {Projeler}}"
|
||||
},
|
||||
"project-type.project.category": {
|
||||
"defaultMessage": "Projeler"
|
||||
},
|
||||
"project-type.project.lowercase": {
|
||||
"defaultMessage": "proje"
|
||||
},
|
||||
"project-type.resourcepack.capital": {
|
||||
"defaultMessage": "Kaynak Paketi"
|
||||
},
|
||||
"project-type.resourcepack.category": {
|
||||
"defaultMessage": "Kaynak Paketleri"
|
||||
},
|
||||
"project-type.resourcepack.lowercase": {
|
||||
"defaultMessage": "kaynak paketi"
|
||||
},
|
||||
"project-type.server.capital": {
|
||||
"defaultMessage": "Sunucu"
|
||||
},
|
||||
"project-type.server.category": {
|
||||
"defaultMessage": "Sunucular"
|
||||
},
|
||||
"project-type.server.lowercase": {
|
||||
"defaultMessage": "sunucu"
|
||||
},
|
||||
"project-type.shader.capital": {
|
||||
"defaultMessage": "Shader"
|
||||
},
|
||||
"project-type.shader.category": {
|
||||
"defaultMessage": "Shaderlar"
|
||||
},
|
||||
@@ -2282,9 +2174,6 @@
|
||||
"project.about.tags.title": {
|
||||
"defaultMessage": "Etiketler"
|
||||
},
|
||||
"project.download-count-tooltip": {
|
||||
"defaultMessage": "{count, number} indirme"
|
||||
},
|
||||
"project.environment.client-and-server.description": {
|
||||
"defaultMessage": "Hem istemci hem de sunucu tarafında gereklidir."
|
||||
},
|
||||
@@ -2351,21 +2240,9 @@
|
||||
"project.environment.unknown.title": {
|
||||
"defaultMessage": "Bilinmeyen ortam"
|
||||
},
|
||||
"project.follower-count-tooltip": {
|
||||
"defaultMessage": "{count, number} takipçi"
|
||||
},
|
||||
"project.online-player-count": {
|
||||
"defaultMessage": "{count, number} çevrim içi"
|
||||
},
|
||||
"project.online-player-count.tooltip": {
|
||||
"defaultMessage": "{count} çevrim içi oyuncu"
|
||||
},
|
||||
"project.recent-plays": {
|
||||
"defaultMessage": "{count} oynama"
|
||||
},
|
||||
"project.recent-plays.tooltip": {
|
||||
"defaultMessage": "Modrinth'den son 2 haftada {count} oynama"
|
||||
},
|
||||
"project.server.customModpackTooltip": {
|
||||
"defaultMessage": "Bu proje özel bir mod paketi kullanmaktadır"
|
||||
},
|
||||
@@ -3624,4 +3501,3 @@
|
||||
"defaultMessage": "Sayfadan ayrılsın mı?"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Не вдалося завантажити деталей підписки."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 днів"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/місяць"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/квартал"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/рік"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "Ваше наступне списання буде <charge-date>{date}</charge-date>."
|
||||
},
|
||||
@@ -104,21 +92,9 @@
|
||||
"browse.offline": {
|
||||
"defaultMessage": "Ви наразі не в мережі. Під'єднайтеся до Інтернету, аби шукати на Modrinth!"
|
||||
},
|
||||
"browse.search.placeholder": {
|
||||
"defaultMessage": "Шукати {projectType, select, mod {моди} modpack {збірки} resourcepack {пакети ресурсів} shader {шейдери} plugin {плаґіни} datapack {пакети даних} server {сервери} other {проєкти}}..."
|
||||
},
|
||||
"browse.selected-projects-floating-bar.aria-label": {
|
||||
"defaultMessage": "Обрані проєкти"
|
||||
},
|
||||
"browse.selected-projects-floating-bar.install": {
|
||||
"defaultMessage": "Установити {count, plural, one {# проєкт} few {# проєкти} many {# проєктів} other {# проєкту}}"
|
||||
},
|
||||
"browse.selected-projects-floating-bar.selected-count": {
|
||||
"defaultMessage": "Обрано {count, plural, one {# проєкт} few {# проєкти} many {# проєктів} other {# проєкту}}"
|
||||
},
|
||||
"browse.selected-projects-leave-modal.admonition-body": {
|
||||
"defaultMessage": "Ви обрали {count, plural, one {# проєкт} few {# проєкти} many {# проєктів} other {# проєкту}} для встановлення. Установіть їх зараз або поверніться, не встановивши."
|
||||
},
|
||||
"browse.selected-projects-leave-modal.admonition-header": {
|
||||
"defaultMessage": "Обрані проєкти ще не встановлено"
|
||||
},
|
||||
@@ -326,9 +302,6 @@
|
||||
"content.card.select-project": {
|
||||
"defaultMessage": "Обрати {project}"
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-body": {
|
||||
"defaultMessage": "Ви впевнені, що хочете оновити {count, plural, one {# проєкт} few {# проєкти} other {# проєктів}} до їхньої останньої сумісної версії? Рекомендується оновлювати вміст по одному."
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-header": {
|
||||
"defaultMessage": "Попередження щодо оновлення"
|
||||
},
|
||||
@@ -338,18 +311,12 @@
|
||||
"content.confirm-bulk-update.shift-click-hint": {
|
||||
"defaultMessage": "Щоб пропустити це підтвердження в майбутньому, утримуйте клавішу Shift, натискаючи «Оновити все»."
|
||||
},
|
||||
"content.confirm-bulk-update.update-button": {
|
||||
"defaultMessage": "Оновити {count, plural, one {# проєкт} few {# проєкти} other {# проєктів}}"
|
||||
},
|
||||
"content.confirm-deletion.admonition-body": {
|
||||
"defaultMessage": "Видалення моду може назавжди вплинути на ваш світ й спричинити втрату вмісту або несподівані проблеми при його повторному завантаженні."
|
||||
},
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Попередження щодо видалення"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Видалити {count} {itemType}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Видалення {itemType}"
|
||||
},
|
||||
@@ -431,9 +398,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Утримуйте клавішу Shift під час натискання, щоб пропустити підтвердження."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Ми рекомендуємо створити резервну копію перш ніж продовжувати, щоб ви могли відновити свій {type, select, server {світ} other {профіль}}, якщо щось піде не так."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "Уміст вашої збірки тепер можна знайти тут!"
|
||||
},
|
||||
@@ -452,9 +416,6 @@
|
||||
"content.page-layout.busy-description": {
|
||||
"defaultMessage": "Будь ласка, дочекайтеся завершення операції, перш ніж редагувати вміст."
|
||||
},
|
||||
"content.page-layout.empty.hint": {
|
||||
"defaultMessage": "Знайдіть або вивантажте {contentType, select, mod {мод} mods {моди} plugin {плаґін} plugins {плаґіни} datapack {пакет даних} datapacks {пакети даних} project {проєкт} projects {проєкти} other {вміст}}, щоб розпочати"
|
||||
},
|
||||
"content.page-layout.empty.modpack-hint": {
|
||||
"defaultMessage": "Додайте додатковий уміст до цієї збірки"
|
||||
},
|
||||
@@ -476,9 +437,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Будь ласка, зачекайте"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Пошук серед {count} {contentType, select, mod {мода} mods {модів} plugin {плаґіна} plugins {плаґінів} datapack {пакета даних} datapacks {пакетів даних} проєкт {проєкту} проєктs {проєктів} other {елементів умісту}}…"
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Назви файлів"
|
||||
},
|
||||
@@ -518,33 +476,6 @@
|
||||
"content.selection-bar.all-already-enabled": {
|
||||
"defaultMessage": "Увесь вибраний уміст уже ввімкнено"
|
||||
},
|
||||
"content.selection-bar.bulk.deleting": {
|
||||
"defaultMessage": "Видалення {progress}/{total} {contentType, select, mod {мода} mods {модів} plugin {плаґіна} plugins {плаґінів} datapack {пакета даних} datapacks {пакетів даних} project {проєкту} projects {проєктів} other {вмісту}}…"
|
||||
},
|
||||
"content.selection-bar.bulk.deleting-waiting": {
|
||||
"defaultMessage": "Видалення {contentType, select, mod {мода} mods {модів} plugin {плаґіна} plugins {плаґінів} datapack {пакета даних} datapacks {пакетів даних} project {проєкту} projects {проєктів} other {вмісту}}…"
|
||||
},
|
||||
"content.selection-bar.bulk.disabling": {
|
||||
"defaultMessage": "Вимкнення {progress}/{total} {contentType, select, mod {мода} mods {модів} plugin {плаґіна} plugins {плаґінів} datapack {пакета даних} datapacks {пакетів даних} project {проєкту} projects {проєктів} other {вмісту}}…"
|
||||
},
|
||||
"content.selection-bar.bulk.disabling-waiting": {
|
||||
"defaultMessage": "Вимкнення {contentType, select, mod {мода} mods {модів} plugin {плаґіна} plugins {плаґінів} datapack {пакета даних} datapacks {пакетів даних} project {проєкту} projects {проєктів} other {вмісту}}…"
|
||||
},
|
||||
"content.selection-bar.bulk.enabling": {
|
||||
"defaultMessage": "Увімкнення {progress}/{total} {contentType, select, mod {мода} mods {модів} plugin {плаґіна} plugins {плаґінів} datapack {пакета даних} datapacks {пакетів даних} project {проєкту} projects {проєктів} other {вмісту}}…"
|
||||
},
|
||||
"content.selection-bar.bulk.enabling-waiting": {
|
||||
"defaultMessage": "Увімкнення {contentType, select, mod {мода} mods {модів} plugin {плаґіна} plugins {плаґінів} datapack {пакета даних} datapacks {пакетів даних} project {проєкту} projects {проєктів} other {вмісту}}…"
|
||||
},
|
||||
"content.selection-bar.bulk.updating": {
|
||||
"defaultMessage": "Оновлення {progress}/{total} {contentType, select, mod {мода} mods {модів} plugin {плаґіна} plugins {плаґінів} datapack {пакета даних} datapacks {пакетів даних} project {проєкту} projects {проєктів} other {вмісту}}…"
|
||||
},
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "Оновлення {contentType, select, mod {мода} mods {модів} plugin {плаґіна} plugins {плаґінів} datapack {пакета даних} datapacks {пакетів даних} project {проєкту} projects {проєктів} other {вмісту}}…"
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "Вибрано {count} {contentType, select, mod {мод} mods {{count, plural, few {моди} other {модів}}} plugin {плаґін} plugins {{count, plural, few {плаґіни} other {плаґінів}}} datapack {пакет даних} datapacks {{count, plural, few {пакети даних} other {пакетів даних}}} проєкт {проєкт} проєктs {{count, plural, few {проєкти} other {проєктів}}} other {{count, plural, one {елемент умісту} few {елементи вмісту} other {елементів умісту}}}}"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "Вибрано {count, number}"
|
||||
},
|
||||
@@ -560,9 +491,6 @@
|
||||
"creation-flow.button.import": {
|
||||
"defaultMessage": "Імпорт"
|
||||
},
|
||||
"creation-flow.button.import-instances": {
|
||||
"defaultMessage": "Імпорт {count, plural, one {# профілю} few {# профілів} many {# профілів} other {# профілів}}"
|
||||
},
|
||||
"creation-flow.button.setup-server": {
|
||||
"defaultMessage": "Налаштування сервера"
|
||||
},
|
||||
@@ -851,18 +779,9 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} перезаписано"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Перезаписано"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "Файли будуть перезаписані"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "Створити {type, select, directory {теку} other {файл}}"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "Створити {type, select, directory {теку} other {файл}}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "як-от my-folder"
|
||||
},
|
||||
@@ -875,9 +794,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Видалити файл"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {Цю теку та весь її вміст буде назавжди видалено. Цю дію неможливо скасувати.} other {Цей файл буде назавжди видалено. Цю дію неможливо скасувати.}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "Не вдалося завантажити вміст теки."
|
||||
},
|
||||
@@ -1004,9 +920,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "як-от /my-folder"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {Перемістити теку} other {Перемістити файл}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "На головну"
|
||||
},
|
||||
@@ -1073,9 +986,6 @@
|
||||
"files.rename-modal.new-name-label": {
|
||||
"defaultMessage": "Нова назва"
|
||||
},
|
||||
"files.row.item-count": {
|
||||
"defaultMessage": "{count, plural, one {# елемент} few {# елементи} other {# елементів}}"
|
||||
},
|
||||
"files.table-header.created": {
|
||||
"defaultMessage": "Створено"
|
||||
},
|
||||
@@ -1127,9 +1037,6 @@
|
||||
"files.upload-dropdown.uploads-left": {
|
||||
"defaultMessage": " — залишилося {count}"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "Перемістіть сюди файли, щоб вивантажити їх"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "Назва може містити лише літери, цифри, тире, нижні підкреслення або пробіли."
|
||||
},
|
||||
@@ -1277,9 +1184,6 @@
|
||||
"form.placeholder.state": {
|
||||
"defaultMessage": "Уведіть регіон"
|
||||
},
|
||||
"format.bytes.0": {
|
||||
"defaultMessage": "{count, plural, one {# байт} few {# байти} many {# байтів} other {# байтів}}"
|
||||
},
|
||||
"format.bytes.1": {
|
||||
"defaultMessage": "{count, number} КіБ"
|
||||
},
|
||||
@@ -1502,18 +1406,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-title": {
|
||||
"defaultMessage": "Змінення завантажувача деструктивне"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "{projectType, select, server {Пов’заний проєкт сервера} other {Пов’зана збірка}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "Версія {loader}"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "Щоб змінювати завантажувач потрібно скинути сервер."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Перевстановлення зібрки скине вміст {type, select, server {сервера} other {профіля}} до початкового стану, видаливши всі моди та вміст, які ви додавали."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Перевстановити збірку"
|
||||
},
|
||||
@@ -1544,9 +1442,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Відв’язати"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Відв’яжіть {type, select, server {сервер} other {профіль}} від проєкту {projectType, select, server {сервера} other {збірки}}. Це дозволить змінити завантажувач і версію Minecraft, але ви не будете отримувати майбутні оновлення."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Перевірка…"
|
||||
},
|
||||
@@ -1562,12 +1457,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Перевстановити збірку"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "Лагодження перевстановить завантажувач та залежності Minecraft без видалення вашого вмісту. Це може розв’язати проблеми, якщо {type, select, server {ваш сервер не запускається належним чином} other {ваша гра не запускається через помилки запускача}}."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "Полагодити {type, select, server {сервер} other {профіль}}"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Полагодити"
|
||||
},
|
||||
@@ -1586,9 +1475,6 @@
|
||||
"instance.worlds.game_mode.unknown": {
|
||||
"defaultMessage": "Невідомий режим"
|
||||
},
|
||||
"instances.content-install.compatible-count": {
|
||||
"defaultMessage": "{count} {count, plural, one {сумісний профіль} few {сумісні профілі} other {сумісних профілів}}"
|
||||
},
|
||||
"instances.content-install.existing-tab": {
|
||||
"defaultMessage": "Наявний профіль"
|
||||
},
|
||||
@@ -2399,78 +2285,30 @@
|
||||
"project-type.all": {
|
||||
"defaultMessage": "Усі"
|
||||
},
|
||||
"project-type.datapack.capital": {
|
||||
"defaultMessage": "{count, plural, one {Пакет даних} few {Пакети даних} many {Пакетів даних} other {Пакетів даних}}"
|
||||
},
|
||||
"project-type.datapack.category": {
|
||||
"defaultMessage": "Пакети даних"
|
||||
},
|
||||
"project-type.datapack.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {пакет даних} few {пакети даних} many {пакетів даних} other {пакетів даних}}"
|
||||
},
|
||||
"project-type.mod.capital": {
|
||||
"defaultMessage": "{count, plural, one {Мод} few {Мода} many {Модів} other {Модів}}"
|
||||
},
|
||||
"project-type.mod.category": {
|
||||
"defaultMessage": "Моди"
|
||||
},
|
||||
"project-type.mod.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {мод} few {мода} many {модів} other {модів}}"
|
||||
},
|
||||
"project-type.modpack.capital": {
|
||||
"defaultMessage": "{count, plural, one {Збірка} few {Збірки} other {Збірок}}"
|
||||
},
|
||||
"project-type.modpack.category": {
|
||||
"defaultMessage": "Збірки"
|
||||
},
|
||||
"project-type.modpack.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {збірка} few {збірки} other {збірок}}"
|
||||
},
|
||||
"project-type.plugin.capital": {
|
||||
"defaultMessage": "{count, plural, one {Плаґін} few {Плаґіни} many {Плаґінів} other {Плаґінів}}"
|
||||
},
|
||||
"project-type.plugin.category": {
|
||||
"defaultMessage": "Плаґіни"
|
||||
},
|
||||
"project-type.plugin.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {плаґін} few {плаґіни} many {плаґінів} other {плаґінів}}"
|
||||
},
|
||||
"project-type.project.capital": {
|
||||
"defaultMessage": "{count, plural, one {Проєкт} few {Проєкти} other {Проєктів}}"
|
||||
},
|
||||
"project-type.project.category": {
|
||||
"defaultMessage": "Проєкти"
|
||||
},
|
||||
"project-type.project.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {проєкт} few {проєкти} many {проєктів} other {проєктів}}"
|
||||
},
|
||||
"project-type.resourcepack.capital": {
|
||||
"defaultMessage": "{count, plural, one {Пакет ресурсів} few {Пакети ресурсів} many {Пакетів ресурсів} other {Пакетів ресурсів}}"
|
||||
},
|
||||
"project-type.resourcepack.category": {
|
||||
"defaultMessage": "Пакети ресурсів"
|
||||
},
|
||||
"project-type.resourcepack.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {пакет ресурсів} few {пакети ресурсів} many {пакетів ресурсів} other {пакетів ресурсів}}"
|
||||
},
|
||||
"project-type.server.capital": {
|
||||
"defaultMessage": "{count, plural, one {Сервер} few {Сервери} many {Серверів} other {Серверів}}"
|
||||
},
|
||||
"project-type.server.category": {
|
||||
"defaultMessage": "Сервери"
|
||||
},
|
||||
"project-type.server.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {сервер} few {сервери} many {серверів} other {серверів}}"
|
||||
},
|
||||
"project-type.shader.capital": {
|
||||
"defaultMessage": "{count, plural, one {Шейдер} few {Шейдери} other {Шейдерів}}"
|
||||
},
|
||||
"project-type.shader.category": {
|
||||
"defaultMessage": "Шейдери"
|
||||
},
|
||||
"project-type.shader.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {шейдер} few {шейдери} other {шейдерів}}"
|
||||
},
|
||||
"project.about.compatibility.environments": {
|
||||
"defaultMessage": "Підтримувані середовища"
|
||||
},
|
||||
@@ -2594,9 +2432,6 @@
|
||||
"project.about.tags.title": {
|
||||
"defaultMessage": "Теґи"
|
||||
},
|
||||
"project.download-count-tooltip": {
|
||||
"defaultMessage": "{count, number} {count, plural, one {завантаження} few {завантаження} other {завантажень}}"
|
||||
},
|
||||
"project.environment.client-and-server.description": {
|
||||
"defaultMessage": "Необхідно й на клієнті й на сервері."
|
||||
},
|
||||
@@ -2663,18 +2498,9 @@
|
||||
"project.environment.unknown.title": {
|
||||
"defaultMessage": "Невідоме середовище"
|
||||
},
|
||||
"project.follower-count-tooltip": {
|
||||
"defaultMessage": "{count, number} {count, plural, one {відстежує} few {відстежують} other {відстежують}}"
|
||||
},
|
||||
"project.online-player-count": {
|
||||
"defaultMessage": "{count, number} у мережі"
|
||||
},
|
||||
"project.online-player-count.tooltip": {
|
||||
"defaultMessage": "{count} {countPlural, plural, one {гравець} few {гравці} many {гравців} other {гравців}} у мережі"
|
||||
},
|
||||
"project.recent-plays": {
|
||||
"defaultMessage": "{count} {countPlural, plural, one {нещодавно грав} few {нещодавно грали} many {нещодавно грали} other {нещодавно грали}}"
|
||||
},
|
||||
"project.recent-plays.tooltip": {
|
||||
"defaultMessage": "{count} {countPlural, plural, one {нещодавно грав} other {нещодавно грали}} з Modrinth за останні 2 тижні"
|
||||
},
|
||||
@@ -3281,27 +3107,12 @@
|
||||
"servers.backups.bulk-bar.aria-label": {
|
||||
"defaultMessage": "{count, plural, one {Групові дії для однієї вибраної резервної копії} other {Групові дії для # вибраних резервних копій}}"
|
||||
},
|
||||
"servers.backups.bulk-bar.deleting": {
|
||||
"defaultMessage": "Видалення {total, plural, one {# резервоної копії} few {# резервних копій} many {# резервних копій} other {# резервних копій}}…"
|
||||
},
|
||||
"servers.backups.bulk-bar.selected-count": {
|
||||
"defaultMessage": "{count, plural, one {# резервну копію вибрано} few {# резевні копії вибрано} many {# резевних копій вибрано} other {# резевних копій вибрано}}"
|
||||
},
|
||||
"servers.backups.delete-modal.admonition-body": {
|
||||
"defaultMessage": "Після видалення {count, plural, one {цієї резервної копії} other {цих резервних копій}} не можна буде відновитися. Видалення остаточне."
|
||||
},
|
||||
"servers.backups.delete-modal.admonition-header": {
|
||||
"defaultMessage": "Попередження видалення"
|
||||
},
|
||||
"servers.backups.delete-modal.backups-label": {
|
||||
"defaultMessage": "{count, plural, one {Резервна копія} few {Резервні копії ({count})} many {Резервні копії ({count})} other {Резервні копії ({count})}}"
|
||||
},
|
||||
"servers.backups.delete-modal.confirm": {
|
||||
"defaultMessage": "Видалити {count, plural, one {резервну копію} few {# резервні копії} many {# резервних копій} other {# резервних копій}}"
|
||||
},
|
||||
"servers.backups.delete-modal.header": {
|
||||
"defaultMessage": "Видалення {count, plural, one {резервної копії} few {резервних копій} many {# резервних копій} other {# резервних копій}}"
|
||||
},
|
||||
"servers.backups.empty.description": {
|
||||
"defaultMessage": "Створення вашої першої резервної копії"
|
||||
},
|
||||
@@ -3464,18 +3275,12 @@
|
||||
"servers.listing.new-label": {
|
||||
"defaultMessage": "Новий"
|
||||
},
|
||||
"servers.listing.notice.files-kept-for-download": {
|
||||
"defaultMessage": "Ваші файли зберігатимуться ще <days-remaining>{daysRemaining} {daysRemaining, plural, one {день} few {дні} many {днів} other {днів} }</days-remaining>. Зверніться до служби підтримки, щоб завантажити файли, перш ніж їх буде видалено. "
|
||||
},
|
||||
"servers.listing.notice.files-preserved-after-cancellation": {
|
||||
"defaultMessage": "Ваші файли зберігатимуться протягом 30 днів після скасування."
|
||||
},
|
||||
"servers.listing.notice.moderated": {
|
||||
"defaultMessage": "Ваш сервер призупинено модерацією. "
|
||||
},
|
||||
"servers.listing.notice.pending-change": {
|
||||
"defaultMessage": "Ваш сервер буде {verb} до {planSize} плану <date>{formattedDate}</date>. "
|
||||
},
|
||||
"servers.listing.notice.provisioning": {
|
||||
"defaultMessage": "Зачекайте, поки ми налаштуємо ваш сервер. Це може тривати до 10 хвилин."
|
||||
},
|
||||
@@ -3581,9 +3386,6 @@
|
||||
"servers.manage.resubscribe-success.title": {
|
||||
"defaultMessage": "Успіх"
|
||||
},
|
||||
"servers.manage.search-placeholder": {
|
||||
"defaultMessage": "Пошук {count} {count, plural, one {сервера} few {серверів} many {серверів} other {серверів}}…"
|
||||
},
|
||||
"servers.manage.servers-title": {
|
||||
"defaultMessage": "Modrinth Hosting"
|
||||
},
|
||||
@@ -3596,9 +3398,6 @@
|
||||
"servers.manage.settings-hint.title": {
|
||||
"defaultMessage": "Налаштування вашого сервера переміщено"
|
||||
},
|
||||
"servers.medal-listing.countdown.remaining": {
|
||||
"defaultMessage": "Залишилося <days-count>{days}</days-count> {days, plural, one {день} few {дні} other {днів}} <hours-count>{hours}</hours-count> {hours, plural, one {година} few {години} other {годин}} <minutes-count>{minutes}</minutes-count> {minutes, plural, one {хвилина} few {хвилини} other {хвилин}} <seconds-count>{seconds}</seconds-count> {seconds, plural, one {секунда} few {секунди} other {секунд}}…"
|
||||
},
|
||||
"servers.medal-listing.new-server-label": {
|
||||
"defaultMessage": "Новий сервер"
|
||||
},
|
||||
@@ -3863,9 +3662,6 @@
|
||||
"settings.language.languages.search-field.placeholder": {
|
||||
"defaultMessage": "Пошук мови…"
|
||||
},
|
||||
"settings.language.languages.search-results-announcement": {
|
||||
"defaultMessage": "За вашим запитом {matches, plural,=0 {не знайдено жодної мови} one {знайдено # мову} few{знайдено # мови} other {знайдено # мов}}."
|
||||
},
|
||||
"settings.language.languages.search.no-results": {
|
||||
"defaultMessage": "За вашим запитом не знайдено жодної мови."
|
||||
},
|
||||
@@ -4331,11 +4127,7 @@
|
||||
"ui.confirm-leave-modal.title": {
|
||||
"defaultMessage": "Покинути сторінку?"
|
||||
},
|
||||
"ui.stacked-admonitions.alert-count": {
|
||||
"defaultMessage": "{count, plural, one {# оповіщення} few {# оповіщення} many {# оповіщень} other {# оповіщень}}"
|
||||
},
|
||||
"ui.stacked-admonitions.dismiss-all": {
|
||||
"defaultMessage": "Відхилити все"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "Lỗi tải thông tin đăng ký."
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 ngày"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/tháng"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/quý"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/năm"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "Lần thanh toán tiếp theo sẽ là vào <charge-date> {date} </charge-date>."
|
||||
},
|
||||
@@ -299,12 +287,6 @@
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "Cảnh báo trước khi xoá"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "Xóa {count} {itemType}{count, plural, other {}}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "Xóa {itemType} {count, plural, other {}}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select, downgrade {Việc hạ phiên bản} other {Việc cập nhật}} có thể gây ra lỗi tương thích. Những mod mà bạn thêm vào modpack sẽ được giữ lại nhưng chúng có thể sẽ không tương thích với phiên bản mới của modpack."
|
||||
},
|
||||
@@ -371,9 +353,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "Giữ nút Shift khi click để bỏ qua xác nhận."
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "Chúng tôi khuyên bạn nên tạo bản sao lưu trước khi tiếp tục để có thể khôi phục {type, select, server {thế giới} other {phiên chơi}} của mình nếu có sự cố xảy ra."
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "Nội dung modpack của bạn hiện đã có ở đây!"
|
||||
},
|
||||
@@ -416,9 +395,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "Vui lòng chờ"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "Tìm {count} {contentType}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "Tên tệp"
|
||||
},
|
||||
@@ -482,9 +458,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "Đang cập nhật {contentType}..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "{count} {contentType} đã được chọn"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "{count, number} đã được chọn"
|
||||
},
|
||||
@@ -503,18 +476,9 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "{count} bị ghi đè"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "Ghi đè"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "Những tệp sẽ bị ghi đè"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "Tạo {type, select, directory {thư mục} other {tệp}}"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "Tạo một {type, select, directory {thư mục} other {tệp}}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "v.d. thu-muc-cua-toi"
|
||||
},
|
||||
@@ -527,9 +491,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "Xoá tệp"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {Thư mục này và toàn bộ nội dung của nó sẽ bị xoá vĩnh viễn. Hành động này một đi không trở lại.} other {Tệp này sẽ bị xoá vĩnh viễn. Hành động này một đi không trở lại.}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "Không thể tải nội dung tệp."
|
||||
},
|
||||
@@ -656,9 +617,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "v.d. /thu-muc-cua-toi"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {Move folder} other {Move file}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "Quay về trang chủ"
|
||||
},
|
||||
@@ -755,9 +713,6 @@
|
||||
"files.upload-dropdown.file": {
|
||||
"defaultMessage": "Tệp"
|
||||
},
|
||||
"files.upload-dropdown.file-uploads": {
|
||||
"defaultMessage": "Tải lên"
|
||||
},
|
||||
"files.upload-dropdown.incorrect-file-type": {
|
||||
"defaultMessage": "Sai định dạng khi tải lên"
|
||||
},
|
||||
@@ -1043,18 +998,12 @@
|
||||
"installation-settings.incompatible-content.game-version-warning-title": {
|
||||
"defaultMessage": "Cảnh báo không tương thích"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "Đã liên kết {projectType, select, server {dự án máy chủ} other {modpack}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "Phiên bản {loader}"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "Bạn sẽ cần khởi động lại máy chủ để đổi mod loader."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "Việc cài đặt lại modpack sẽ đặt lại nội dung của {type, select, server {máy chủ} other {phiên chơi}} về trạng thái ban đầu, đồng thời gỡ bỏ mọi mod hoặc nội dung mà bạn đã thêm vào."
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "Cài đặt lại modpack"
|
||||
},
|
||||
@@ -1085,9 +1034,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "Huỷ liên kết"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "Hủy liên kết sẽ ngắt kết nối vĩnh viễn {type, select, server {máy chủ} other {phiên chơi}} này khỏi dự án {projectType, select, server {máy chủ} other {modpack}}, cho phép bạn thay đổi trình nạp và phiên bản Minecraft, nhưng bạn sẽ không nhận được các bản cập nhật trong tương lai."
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "Đang xác minh..."
|
||||
},
|
||||
@@ -1103,12 +1049,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "Cài đặt lại modpack"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "Việc sửa chữa sẽ cài đặt lại trình nạp và các phụ thuộc của Minecraft mà không xóa nội dung của bạn. Điều này có thể giải quyết các sự cố nếu {type, select, server {máy chủ không khởi động đúng cách} other {trò chơi không khởi chạy do lỗi liên quan đến trình khởi chạy}}."
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "Sửa {type, select, server {server} other {instance}}"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "Sửa"
|
||||
},
|
||||
@@ -1127,9 +1067,6 @@
|
||||
"instance.worlds.game_mode.unknown": {
|
||||
"defaultMessage": "Chế độ chơi không xác định"
|
||||
},
|
||||
"instances.content-install.compatible-count": {
|
||||
"defaultMessage": "Tương thích {count} cái với {count, plural, other {instance}}"
|
||||
},
|
||||
"instances.content-install.existing-tab": {
|
||||
"defaultMessage": "Phiên chơi có sẵn"
|
||||
},
|
||||
@@ -1751,78 +1688,33 @@
|
||||
"project-type.all": {
|
||||
"defaultMessage": "Tất cả"
|
||||
},
|
||||
"project-type.datapack.capital": {
|
||||
"defaultMessage": "{count, plural, other {Data Pack}}"
|
||||
},
|
||||
"project-type.datapack.category": {
|
||||
"defaultMessage": "Data Pack"
|
||||
},
|
||||
"project-type.datapack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {data pack}}"
|
||||
},
|
||||
"project-type.mod.capital": {
|
||||
"defaultMessage": "{count, plural, other {Mod}}"
|
||||
},
|
||||
"project-type.mod.category": {
|
||||
"defaultMessage": "Mod"
|
||||
},
|
||||
"project-type.mod.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {mod}}"
|
||||
},
|
||||
"project-type.modpack.capital": {
|
||||
"defaultMessage": "{count, plural, other {Modpack}}"
|
||||
},
|
||||
"project-type.modpack.category": {
|
||||
"defaultMessage": "Modpack"
|
||||
},
|
||||
"project-type.modpack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {modpack}}"
|
||||
},
|
||||
"project-type.plugin.capital": {
|
||||
"defaultMessage": "{count, plural, other {Plugin}}"
|
||||
},
|
||||
"project-type.plugin.category": {
|
||||
"defaultMessage": "Plugin"
|
||||
},
|
||||
"project-type.plugin.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {plugin}}"
|
||||
},
|
||||
"project-type.project.capital": {
|
||||
"defaultMessage": "{count, plural, one {Dự án} other {Dự án}}"
|
||||
},
|
||||
"project-type.project.category": {
|
||||
"defaultMessage": "Dự án"
|
||||
},
|
||||
"project-type.project.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {dự án}}"
|
||||
},
|
||||
"project-type.resourcepack.capital": {
|
||||
"defaultMessage": "{count, plural, other {Gói tài nguyên}}"
|
||||
},
|
||||
"project-type.resourcepack.category": {
|
||||
"defaultMessage": "Gói tài nguyên"
|
||||
},
|
||||
"project-type.resourcepack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {gói tài nguyên}}"
|
||||
},
|
||||
"project-type.server.capital": {
|
||||
"defaultMessage": "{count, plural, other {Máy chủ}}"
|
||||
},
|
||||
"project-type.server.category": {
|
||||
"defaultMessage": "Máy chủ"
|
||||
},
|
||||
"project-type.server.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {máy chủ}}"
|
||||
},
|
||||
"project-type.shader.capital": {
|
||||
"defaultMessage": "{count, plural, other {Shader}}"
|
||||
},
|
||||
"project-type.shader.category": {
|
||||
"defaultMessage": "Shader"
|
||||
},
|
||||
"project-type.shader.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {shader}}"
|
||||
},
|
||||
"project.about.compatibility.environments": {
|
||||
"defaultMessage": "Môi trường được hỗ trợ"
|
||||
},
|
||||
@@ -2753,9 +2645,6 @@
|
||||
"settings.language.languages.search-field.placeholder": {
|
||||
"defaultMessage": "Tìm kiếm một ngôn ngữ..."
|
||||
},
|
||||
"settings.language.languages.search-results-announcement": {
|
||||
"defaultMessage": "{matches, plural, =0 {Không có ngôn ngữ nào} other {Có # ngôn ngữ}} khớp với tìm kiếm của bạn."
|
||||
},
|
||||
"settings.language.languages.search.no-results": {
|
||||
"defaultMessage": "Không có ngôn ngữ phù hợp với tìm kiếm của bạn."
|
||||
},
|
||||
@@ -3192,4 +3081,3 @@
|
||||
"defaultMessage": "Rời khỏi trang nhé?"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "获取订阅信息失败。"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 天"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/月"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/季度"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/年"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "你的下一次扣费日期为 <charge-date>{date}</charge-date>。"
|
||||
},
|
||||
@@ -104,21 +92,9 @@
|
||||
"browse.offline": {
|
||||
"defaultMessage": "你目前处于离线状态。连接互联网来浏览Modrinth!"
|
||||
},
|
||||
"browse.search.placeholder": {
|
||||
"defaultMessage": "搜索{projectType, select, mod {模组} modpack {整合包} resourcepack {资源包} shader {光影包} plugin {插件} datapack {数据包} server {服务器} other {项目}}……"
|
||||
},
|
||||
"browse.selected-projects-floating-bar.aria-label": {
|
||||
"defaultMessage": "选定的项目"
|
||||
},
|
||||
"browse.selected-projects-floating-bar.install": {
|
||||
"defaultMessage": "安装{count, plural, other {#个项目}}"
|
||||
},
|
||||
"browse.selected-projects-floating-bar.selected-count": {
|
||||
"defaultMessage": "{count, plural, other {#个已选择的项目}}"
|
||||
},
|
||||
"browse.selected-projects-leave-modal.admonition-body": {
|
||||
"defaultMessage": "你已经选择了{count, plural, other {#个}}要安装的项目。立即安装它们,或不安装并返回。"
|
||||
},
|
||||
"browse.selected-projects-leave-modal.admonition-header": {
|
||||
"defaultMessage": "选定的项目尚未安装"
|
||||
},
|
||||
@@ -326,9 +302,6 @@
|
||||
"content.card.select-project": {
|
||||
"defaultMessage": "选择 {project}"
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-body": {
|
||||
"defaultMessage": "是否确定要将 {count, plural, other {# 个项目}}更新至最新的兼容版本?建议逐个更新内容。"
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-header": {
|
||||
"defaultMessage": "更新警告"
|
||||
},
|
||||
@@ -338,21 +311,12 @@
|
||||
"content.confirm-bulk-update.shift-click-hint": {
|
||||
"defaultMessage": "在点击“全部更新”时按住 Shift 键,以后将跳过此确认。"
|
||||
},
|
||||
"content.confirm-bulk-update.update-button": {
|
||||
"defaultMessage": "更新 {count, plural, other {# 个项目}}"
|
||||
},
|
||||
"content.confirm-deletion.admonition-body": {
|
||||
"defaultMessage": "删除模组可能会对你的游戏世界造成永久性影响,并可能导致再次加载时出现内容缺失或意外问题。"
|
||||
},
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "删除警告"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "删除 {count} 个{itemType}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "删除{itemType}{count, plural,one {} other {s}}"
|
||||
},
|
||||
"content.confirm-modpack-update.admonition-body": {
|
||||
"defaultMessage": "{action, select, downgrade {降级} other {更新}}可能会导致兼容性问题。你在整合包基础上额外添加的模组或内容将被保留,但可能与新版本不兼容。"
|
||||
},
|
||||
@@ -419,9 +383,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "在点击时按住 Shift 键可跳过确认步骤。"
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "我们建议你在继续之前先创建备份,以便在出现任何问题时可以恢复你的{type, select, server {存档} other {实例}}。"
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "你现在可以在这里找到你的整合包内容!"
|
||||
},
|
||||
@@ -464,9 +425,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "请稍等"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "搜索 {count} 个{contentType}……"
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "文件名"
|
||||
},
|
||||
@@ -530,9 +488,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "正在更新 {contentType}……"
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "已选择 {count} 个 {contentType}"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "已选择 {count, number} 个"
|
||||
},
|
||||
@@ -548,9 +503,6 @@
|
||||
"creation-flow.button.import": {
|
||||
"defaultMessage": "导入"
|
||||
},
|
||||
"creation-flow.button.import-instances": {
|
||||
"defaultMessage": "导入 {count} 个实例"
|
||||
},
|
||||
"creation-flow.button.setup-server": {
|
||||
"defaultMessage": "初始化服务器"
|
||||
},
|
||||
@@ -839,18 +791,9 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "将覆盖 {count} 个文件"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "覆盖"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "文件将被覆盖"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "新建{type, select, directory {文件夹} other {文件}}"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "新建一个{type, select, directory {文件夹} other {文件}}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "如:my-folder"
|
||||
},
|
||||
@@ -863,9 +806,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "删除文件"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {此文件夹及其所有内容将被永久删除。此操作无法撤销。} other {此文件将被永久删除。此操作无法撤销。}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "无法加载文件内容。"
|
||||
},
|
||||
@@ -992,9 +932,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "如:/my-folder"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {移动文件夹} other {移动文件}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "返回主目录"
|
||||
},
|
||||
@@ -1061,9 +998,6 @@
|
||||
"files.rename-modal.new-name-label": {
|
||||
"defaultMessage": "新名称"
|
||||
},
|
||||
"files.row.item-count": {
|
||||
"defaultMessage": "{count} 项"
|
||||
},
|
||||
"files.table-header.created": {
|
||||
"defaultMessage": "创建时间"
|
||||
},
|
||||
@@ -1115,9 +1049,6 @@
|
||||
"files.upload-dropdown.uploads-left": {
|
||||
"defaultMessage": " :剩余 {count}"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "拖拽{type, select, undefined {文件} other { {type} }}到此处上传"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "名称只能包含字母、数字、连字符(-)、下划线(_)或空格。"
|
||||
},
|
||||
@@ -1265,9 +1196,6 @@
|
||||
"form.placeholder.state": {
|
||||
"defaultMessage": "输入州/省"
|
||||
},
|
||||
"format.bytes.0": {
|
||||
"defaultMessage": "{count, plural, other {# 字节}}"
|
||||
},
|
||||
"format.bytes.1": {
|
||||
"defaultMessage": "{count, number} KiB"
|
||||
},
|
||||
@@ -1490,18 +1418,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-title": {
|
||||
"defaultMessage": "更改加载器具有破坏性"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "链接 {projectType, select, server {服务器项目} other {整合包}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "{loader} 版本"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "你需要重置服务器以切换加载器。"
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "重新安装模组包会将 {type, select, server {服务器的} other {实例}} 内容重置为原始状态,移除你添加的任何模组或内容。"
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "重新安装整合包"
|
||||
},
|
||||
@@ -1532,9 +1454,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "取消链接"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "取消链接会永久断开此 {type, select, server {服务器} other {实例}} 与 {projectType, select, server {服务器} other {整合包}} 项目的连接,并允许你更改加载器和 Minecraft 版本,但你将无法获得后续的更新。"
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "正在验证……"
|
||||
},
|
||||
@@ -1550,12 +1469,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "重新安装整合包"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "修复将会重新安装加载器和 Minecraft 依赖项,但不会删除你的内容。如果你的{type, select, server {服务器无法正常启动} other {游戏因启动器相关错误而无法启动}},执行此操作可能会解决问题。"
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "修复 {type, select, server {服务器} other {实例}}"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "修复"
|
||||
},
|
||||
@@ -1634,9 +1547,6 @@
|
||||
"instances.modpack-content-modal.no-results": {
|
||||
"defaultMessage": "没有符合搜索条件的项目。"
|
||||
},
|
||||
"instances.modpack-content-modal.search-placeholder": {
|
||||
"defaultMessage": "搜索 {count, number} {count, plural, other {个项目}}"
|
||||
},
|
||||
"instances.updater-modal.badge.current": {
|
||||
"defaultMessage": "当前"
|
||||
},
|
||||
@@ -2387,78 +2297,33 @@
|
||||
"project-type.all": {
|
||||
"defaultMessage": "全部"
|
||||
},
|
||||
"project-type.datapack.capital": {
|
||||
"defaultMessage": "{count, plural, other {数据包}}"
|
||||
},
|
||||
"project-type.datapack.category": {
|
||||
"defaultMessage": "数据包"
|
||||
},
|
||||
"project-type.datapack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {数据包}}"
|
||||
},
|
||||
"project-type.mod.capital": {
|
||||
"defaultMessage": "{count, plural, other {模组}}"
|
||||
},
|
||||
"project-type.mod.category": {
|
||||
"defaultMessage": "模组"
|
||||
},
|
||||
"project-type.mod.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {模组}}"
|
||||
},
|
||||
"project-type.modpack.capital": {
|
||||
"defaultMessage": "{count, plural, other {整合包}}"
|
||||
},
|
||||
"project-type.modpack.category": {
|
||||
"defaultMessage": "整合包"
|
||||
},
|
||||
"project-type.modpack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {整合包}}"
|
||||
},
|
||||
"project-type.plugin.capital": {
|
||||
"defaultMessage": "{count, plural, other {插件}}"
|
||||
},
|
||||
"project-type.plugin.category": {
|
||||
"defaultMessage": "插件"
|
||||
},
|
||||
"project-type.plugin.lowercase": {
|
||||
"defaultMessage": "{count, plural, one {插件} other {插件集}}"
|
||||
},
|
||||
"project-type.project.capital": {
|
||||
"defaultMessage": "项目"
|
||||
},
|
||||
"project-type.project.category": {
|
||||
"defaultMessage": "项目"
|
||||
},
|
||||
"project-type.project.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {项目}}"
|
||||
},
|
||||
"project-type.resourcepack.capital": {
|
||||
"defaultMessage": "{count, plural, other {资源包}}"
|
||||
},
|
||||
"project-type.resourcepack.category": {
|
||||
"defaultMessage": "资源包"
|
||||
},
|
||||
"project-type.resourcepack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {资源包}}"
|
||||
},
|
||||
"project-type.server.capital": {
|
||||
"defaultMessage": "{count, plural, other {服务器}}"
|
||||
},
|
||||
"project-type.server.category": {
|
||||
"defaultMessage": "服务器"
|
||||
},
|
||||
"project-type.server.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {服务器}}"
|
||||
},
|
||||
"project-type.shader.capital": {
|
||||
"defaultMessage": "{count, plural, other {光影包}}"
|
||||
},
|
||||
"project-type.shader.category": {
|
||||
"defaultMessage": "光影包"
|
||||
},
|
||||
"project-type.shader.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {光影包}}"
|
||||
},
|
||||
"project.about.compatibility.environments": {
|
||||
"defaultMessage": "支持的运行环境"
|
||||
},
|
||||
@@ -2582,9 +2447,6 @@
|
||||
"project.about.tags.title": {
|
||||
"defaultMessage": "标签"
|
||||
},
|
||||
"project.download-count-tooltip": {
|
||||
"defaultMessage": "{count, number} {count, plural, other {次下载}}"
|
||||
},
|
||||
"project.environment.client-and-server.description": {
|
||||
"defaultMessage": "客户端和服务端都需要。"
|
||||
},
|
||||
@@ -2651,21 +2513,9 @@
|
||||
"project.environment.unknown.title": {
|
||||
"defaultMessage": "未知运行环境"
|
||||
},
|
||||
"project.follower-count-tooltip": {
|
||||
"defaultMessage": "{count, number} {count, plural, other {人关注}}"
|
||||
},
|
||||
"project.online-player-count": {
|
||||
"defaultMessage": "{count, number} 在线"
|
||||
},
|
||||
"project.online-player-count.tooltip": {
|
||||
"defaultMessage": "{count} {countPlural, plural, other {个玩家}} 在线"
|
||||
},
|
||||
"project.recent-plays": {
|
||||
"defaultMessage": "{count} {countPlural, plural, other {人最近游玩}}"
|
||||
},
|
||||
"project.recent-plays.tooltip": {
|
||||
"defaultMessage": "在过去两周内共有 {count} {countPlural, plural, other {人}}通过 Modrinth 游玩"
|
||||
},
|
||||
"project.server.customModpackTooltip": {
|
||||
"defaultMessage": "这个项目使用了自定义整合包"
|
||||
},
|
||||
@@ -3266,15 +3116,6 @@
|
||||
"servers.backups.admonition.restoring-backup.title": {
|
||||
"defaultMessage": "从备份中恢复"
|
||||
},
|
||||
"servers.backups.bulk-bar.aria-label": {
|
||||
"defaultMessage": "已选择 {count} 个备份的批量操作"
|
||||
},
|
||||
"servers.backups.bulk-bar.deleting": {
|
||||
"defaultMessage": "正在删除 {total} 个备份……"
|
||||
},
|
||||
"servers.backups.bulk-bar.selected-count": {
|
||||
"defaultMessage": "{count} 个备份被选中"
|
||||
},
|
||||
"servers.backups.delete-modal.admonition-body": {
|
||||
"defaultMessage": "一旦删除, {count, plural, one {这个备份将不能} other {这些备份将不能}}被恢复。删除是永久性的。"
|
||||
},
|
||||
@@ -3287,9 +3128,6 @@
|
||||
"servers.backups.delete-modal.confirm": {
|
||||
"defaultMessage": "删除{count, plural, one {备份} other { # 个备份}}"
|
||||
},
|
||||
"servers.backups.delete-modal.header": {
|
||||
"defaultMessage": "删除备份"
|
||||
},
|
||||
"servers.backups.empty.description": {
|
||||
"defaultMessage": "创建你的第一个备份"
|
||||
},
|
||||
@@ -3461,9 +3299,6 @@
|
||||
"servers.listing.notice.moderated": {
|
||||
"defaultMessage": "你的服务器因管理操作停用。"
|
||||
},
|
||||
"servers.listing.notice.pending-change": {
|
||||
"defaultMessage": "你的服务器将在 <date>{formattedDate}</date> {verb, select, downgrade {降级} upgrade {升级} other {切换}}到{planSize}计划。"
|
||||
},
|
||||
"servers.listing.notice.provisioning": {
|
||||
"defaultMessage": "请等待我们设置你的服务器。这可能需要长达10分钟的时间。"
|
||||
},
|
||||
@@ -3569,9 +3404,6 @@
|
||||
"servers.manage.resubscribe-success.title": {
|
||||
"defaultMessage": "成功"
|
||||
},
|
||||
"servers.manage.search-placeholder": {
|
||||
"defaultMessage": "搜索 {count} {count, plural, other {个服务器}}..."
|
||||
},
|
||||
"servers.manage.servers-title": {
|
||||
"defaultMessage": "Modrinth Hosting"
|
||||
},
|
||||
@@ -3584,9 +3416,6 @@
|
||||
"servers.manage.settings-hint.title": {
|
||||
"defaultMessage": "你的服务器设置已移动"
|
||||
},
|
||||
"servers.medal-listing.countdown.remaining": {
|
||||
"defaultMessage": "<days-count>{days}</days-count> {days, plural, other {天}} <hours-count>{hours}</hours-count> {hours, plural, other {小时}} <minutes-count>{minutes}</minutes-count> {minutes, plural, other {分钟}} <seconds-count>{seconds}</seconds-count> {seconds, plural, other {秒}} 剩余……"
|
||||
},
|
||||
"servers.medal-listing.new-server-label": {
|
||||
"defaultMessage": "新服务器"
|
||||
},
|
||||
@@ -3851,9 +3680,6 @@
|
||||
"settings.language.languages.search-field.placeholder": {
|
||||
"defaultMessage": "搜索语言..."
|
||||
},
|
||||
"settings.language.languages.search-results-announcement": {
|
||||
"defaultMessage": "{matches, plural, =0 {没有符合搜索条件的语言} other {共有 # 个语言符合搜索条件}}。"
|
||||
},
|
||||
"settings.language.languages.search.no-results": {
|
||||
"defaultMessage": "没有符合搜索条件的语言。"
|
||||
},
|
||||
@@ -4319,11 +4145,7 @@
|
||||
"ui.confirm-leave-modal.title": {
|
||||
"defaultMessage": "离开页面?"
|
||||
},
|
||||
"ui.stacked-admonitions.alert-count": {
|
||||
"defaultMessage": "{count} 个警报"
|
||||
},
|
||||
"ui.stacked-admonitions.dismiss-all": {
|
||||
"defaultMessage": "全部忽略"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -65,18 +65,6 @@
|
||||
"billing.resubscribe-modal.failed-load": {
|
||||
"defaultMessage": "無法載入訂閱詳細資訊。"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.five-days": {
|
||||
"defaultMessage": "/5 天"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.monthly": {
|
||||
"defaultMessage": "/月"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.quarterly": {
|
||||
"defaultMessage": "/季"
|
||||
},
|
||||
"billing.resubscribe-modal.interval.yearly": {
|
||||
"defaultMessage": "/年"
|
||||
},
|
||||
"billing.resubscribe-modal.next-charge": {
|
||||
"defaultMessage": "下一次扣款日期為 <charge-date>{date}</charge-date>。"
|
||||
},
|
||||
@@ -107,12 +95,6 @@
|
||||
"browse.selected-projects-floating-bar.aria-label": {
|
||||
"defaultMessage": "已選取專案"
|
||||
},
|
||||
"browse.selected-projects-floating-bar.install": {
|
||||
"defaultMessage": "安裝 {count} 個專案"
|
||||
},
|
||||
"browse.selected-projects-floating-bar.selected-count": {
|
||||
"defaultMessage": "已選取 {count} 個專案"
|
||||
},
|
||||
"browse.selected-projects-leave-modal.discard": {
|
||||
"defaultMessage": "捨棄"
|
||||
},
|
||||
@@ -314,9 +296,6 @@
|
||||
"content.card.select-project": {
|
||||
"defaultMessage": "選取「{project}」"
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-body": {
|
||||
"defaultMessage": "確定要將這 {count} 個專案更新至最新的相容版本嗎?建議你逐一進行更新。"
|
||||
},
|
||||
"content.confirm-bulk-update.admonition-header": {
|
||||
"defaultMessage": "更新警告"
|
||||
},
|
||||
@@ -326,18 +305,12 @@
|
||||
"content.confirm-bulk-update.shift-click-hint": {
|
||||
"defaultMessage": "按住 Shift 鍵並點選「全部更新」,即可在日後跳過這項確認步驟。"
|
||||
},
|
||||
"content.confirm-bulk-update.update-button": {
|
||||
"defaultMessage": "更新 {count} 個專案"
|
||||
},
|
||||
"content.confirm-deletion.admonition-body": {
|
||||
"defaultMessage": "刪除模組可能會對你的世界造成永久性影響,並在重新載入時導致內容遺失或發生非預期的問題。"
|
||||
},
|
||||
"content.confirm-deletion.admonition-header": {
|
||||
"defaultMessage": "刪除警告"
|
||||
},
|
||||
"content.confirm-deletion.delete-button": {
|
||||
"defaultMessage": "刪除 {count} 個{itemType}"
|
||||
},
|
||||
"content.confirm-deletion.header": {
|
||||
"defaultMessage": "刪除{itemType}"
|
||||
},
|
||||
@@ -407,9 +380,6 @@
|
||||
"content.inline-backup.shift-click-hint": {
|
||||
"defaultMessage": "按住 Shift 鍵並點選以跳過確認。"
|
||||
},
|
||||
"content.inline-backup.warning-body": {
|
||||
"defaultMessage": "我們建議在繼續操作前先建立備份,以便在發生問題時還原你的{type, select, server {世界} other {實例}}。"
|
||||
},
|
||||
"content.modpack-card.content-hint-description": {
|
||||
"defaultMessage": "你模組包的內容現在可以在這裡找到了!"
|
||||
},
|
||||
@@ -452,9 +422,6 @@
|
||||
"content.page-layout.please-wait": {
|
||||
"defaultMessage": "請稍候"
|
||||
},
|
||||
"content.page-layout.search-placeholder": {
|
||||
"defaultMessage": "搜尋 {count} 個{contentType}..."
|
||||
},
|
||||
"content.page-layout.share.file-names": {
|
||||
"defaultMessage": "檔案名稱"
|
||||
},
|
||||
@@ -518,9 +485,6 @@
|
||||
"content.selection-bar.bulk.updating-waiting": {
|
||||
"defaultMessage": "正在上傳{contentType}..."
|
||||
},
|
||||
"content.selection-bar.selected-count": {
|
||||
"defaultMessage": "已選取 {count} 個{contentType}"
|
||||
},
|
||||
"content.selection-bar.selected-count-simple": {
|
||||
"defaultMessage": "已選取 {count, number} 個項目"
|
||||
},
|
||||
@@ -536,9 +500,6 @@
|
||||
"creation-flow.button.import": {
|
||||
"defaultMessage": "匯入"
|
||||
},
|
||||
"creation-flow.button.import-instances": {
|
||||
"defaultMessage": "匯入 {count} 個實例"
|
||||
},
|
||||
"creation-flow.button.setup-server": {
|
||||
"defaultMessage": "設定伺服器"
|
||||
},
|
||||
@@ -827,18 +788,9 @@
|
||||
"files.conflict-modal.overwritten-count": {
|
||||
"defaultMessage": "將覆寫 {count} 個檔案"
|
||||
},
|
||||
"files.conflict-modal.overwritten-label": {
|
||||
"defaultMessage": "將覆寫"
|
||||
},
|
||||
"files.conflict-modal.warning-header": {
|
||||
"defaultMessage": "檔案將被覆寫"
|
||||
},
|
||||
"files.create-modal.create-button": {
|
||||
"defaultMessage": "建立{type, select, directory {資料夾} other {檔案}}"
|
||||
},
|
||||
"files.create-modal.header": {
|
||||
"defaultMessage": "建立{type, select, directory {資料夾} other {檔案}}"
|
||||
},
|
||||
"files.create-modal.placeholder-directory": {
|
||||
"defaultMessage": "例如:my-folder"
|
||||
},
|
||||
@@ -851,9 +803,6 @@
|
||||
"files.delete-modal.header": {
|
||||
"defaultMessage": "刪除檔案"
|
||||
},
|
||||
"files.delete-modal.warning": {
|
||||
"defaultMessage": "{type, select, directory {這個資料夾及其所有內容將被永久刪除。此動作無法復原。} other {這個檔案將被永久刪除。此動作無法復原。}}"
|
||||
},
|
||||
"files.editor.failed-to-open-text": {
|
||||
"defaultMessage": "無法載入檔案內容。"
|
||||
},
|
||||
@@ -980,9 +929,6 @@
|
||||
"files.move-modal.destination-placeholder": {
|
||||
"defaultMessage": "例如:/my-folder"
|
||||
},
|
||||
"files.move-modal.header": {
|
||||
"defaultMessage": "{type, select, directory {移動資料夾} other {移動檔案}}"
|
||||
},
|
||||
"files.navbar.back-to-home": {
|
||||
"defaultMessage": "回到首頁"
|
||||
},
|
||||
@@ -1103,9 +1049,6 @@
|
||||
"files.upload-dropdown.uploads-left": {
|
||||
"defaultMessage": "剩餘 {count} 個"
|
||||
},
|
||||
"files.upload.drag-and-drop.drop-to-upload": {
|
||||
"defaultMessage": "將 {type, select, undefined {檔案} other {{type}}} 拖曳到這裡以上傳"
|
||||
},
|
||||
"files.validation.name-invalid-directory": {
|
||||
"defaultMessage": "名稱只能包含英數字、破折號、底線或空格"
|
||||
},
|
||||
@@ -1253,9 +1196,6 @@
|
||||
"form.placeholder.state": {
|
||||
"defaultMessage": "輸入縣市/省/州"
|
||||
},
|
||||
"format.bytes.0": {
|
||||
"defaultMessage": "{count} 位元組"
|
||||
},
|
||||
"format.bytes.1": {
|
||||
"defaultMessage": "{count, number} KiB"
|
||||
},
|
||||
@@ -1475,18 +1415,12 @@
|
||||
"installation-settings.incompatible-content.loader-change-title": {
|
||||
"defaultMessage": "變更載入器具有破壞性"
|
||||
},
|
||||
"installation-settings.linked-instance.title": {
|
||||
"defaultMessage": "已連結的{projectType, select, server {伺服器專案} other {模組包}}"
|
||||
},
|
||||
"installation-settings.loader-version": {
|
||||
"defaultMessage": "{loader} 版本"
|
||||
},
|
||||
"installation-settings.platform-lock-tooltip": {
|
||||
"defaultMessage": "你需要重設伺服器才能切換載入器。"
|
||||
},
|
||||
"installation-settings.reinstall-modpack.description": {
|
||||
"defaultMessage": "重新安裝模組包會將{type, select, server {伺服器} other {實例}}內容重設為原始狀態,你新增的所有模組或內容都將被移除。"
|
||||
},
|
||||
"installation-settings.reinstall-modpack.title": {
|
||||
"defaultMessage": "重新安裝模組包"
|
||||
},
|
||||
@@ -1517,9 +1451,6 @@
|
||||
"installation-settings.unlink": {
|
||||
"defaultMessage": "取消連結"
|
||||
},
|
||||
"installation-settings.unlink.description": {
|
||||
"defaultMessage": "取消連結將永久切斷此{type, select, server {伺服器} other {實例}}與{projectType, select, server {伺服器} other {模組包}}專案的連結。這讓你可以更改載入器與 Minecraft 版本,但你將無法收到未來的更新。"
|
||||
},
|
||||
"installation-settings.verifying": {
|
||||
"defaultMessage": "驗證中..."
|
||||
},
|
||||
@@ -1535,12 +1466,6 @@
|
||||
"instance.confirm-reinstall.reinstall-button": {
|
||||
"defaultMessage": "重新安裝模組包"
|
||||
},
|
||||
"instance.confirm-repair.body": {
|
||||
"defaultMessage": "修復實例會在保留遊戲內容的情況下,重新安裝載入器與 Minecraft 的必要元件。這或許能修復你{type, select, server {伺服器無法正常啟動的問題} other {的遊戲因啟動器出錯而打不開的問題}}。"
|
||||
},
|
||||
"instance.confirm-repair.header": {
|
||||
"defaultMessage": "修復{type, select, server {伺服器} other {實例}}"
|
||||
},
|
||||
"instance.confirm-repair.repair-button": {
|
||||
"defaultMessage": "修復"
|
||||
},
|
||||
@@ -1559,9 +1484,6 @@
|
||||
"instance.worlds.game_mode.unknown": {
|
||||
"defaultMessage": "未知的遊戲模式"
|
||||
},
|
||||
"instances.content-install.compatible-count": {
|
||||
"defaultMessage": "{count} 個相容實例"
|
||||
},
|
||||
"instances.content-install.existing-tab": {
|
||||
"defaultMessage": "已有實例"
|
||||
},
|
||||
@@ -1619,9 +1541,6 @@
|
||||
"instances.modpack-content-modal.no-results": {
|
||||
"defaultMessage": "沒有專案符合你的搜尋字詞。"
|
||||
},
|
||||
"instances.modpack-content-modal.search-placeholder": {
|
||||
"defaultMessage": "搜尋 {count, number} 個專案"
|
||||
},
|
||||
"instances.updater-modal.badge.current": {
|
||||
"defaultMessage": "目前"
|
||||
},
|
||||
@@ -2219,60 +2138,27 @@
|
||||
"project-type.all": {
|
||||
"defaultMessage": "全部"
|
||||
},
|
||||
"project-type.datapack.capital": {
|
||||
"defaultMessage": "{count, plural, other {資料包}}"
|
||||
},
|
||||
"project-type.datapack.category": {
|
||||
"defaultMessage": "資料包"
|
||||
},
|
||||
"project-type.datapack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {資料包}}"
|
||||
},
|
||||
"project-type.mod.capital": {
|
||||
"defaultMessage": "{count, plural, other {模組}}"
|
||||
},
|
||||
"project-type.mod.category": {
|
||||
"defaultMessage": "模組"
|
||||
},
|
||||
"project-type.mod.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {模組}}"
|
||||
},
|
||||
"project-type.modpack.capital": {
|
||||
"defaultMessage": "{count, plural, other {模組包}}"
|
||||
},
|
||||
"project-type.modpack.category": {
|
||||
"defaultMessage": "模組包"
|
||||
},
|
||||
"project-type.modpack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {模組包}}"
|
||||
},
|
||||
"project-type.plugin.capital": {
|
||||
"defaultMessage": "{count, plural, other {插件}}"
|
||||
},
|
||||
"project-type.plugin.category": {
|
||||
"defaultMessage": "插件"
|
||||
},
|
||||
"project-type.plugin.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {插件}}"
|
||||
},
|
||||
"project-type.project.capital": {
|
||||
"defaultMessage": "專案"
|
||||
},
|
||||
"project-type.project.category": {
|
||||
"defaultMessage": "專案"
|
||||
},
|
||||
"project-type.project.lowercase": {
|
||||
"defaultMessage": "個 {count, plural, one {專案} other {專案}}"
|
||||
},
|
||||
"project-type.resourcepack.capital": {
|
||||
"defaultMessage": "{count, plural, other {資源包}}"
|
||||
},
|
||||
"project-type.resourcepack.category": {
|
||||
"defaultMessage": "資源包"
|
||||
},
|
||||
"project-type.resourcepack.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {資源包}}"
|
||||
},
|
||||
"project-type.server.capital": {
|
||||
"defaultMessage": "{count, plural, one {伺服器} other {伺服器}}"
|
||||
},
|
||||
@@ -2282,15 +2168,9 @@
|
||||
"project-type.server.lowercase": {
|
||||
"defaultMessage": "個 {count, plural, one {伺服器} other {伺服器}}"
|
||||
},
|
||||
"project-type.shader.capital": {
|
||||
"defaultMessage": "{count, plural, other {光影包}}"
|
||||
},
|
||||
"project-type.shader.category": {
|
||||
"defaultMessage": "光影包"
|
||||
},
|
||||
"project-type.shader.lowercase": {
|
||||
"defaultMessage": "{count, plural, other {光影包}}"
|
||||
},
|
||||
"project.about.compatibility.environments": {
|
||||
"defaultMessage": "支援環境"
|
||||
},
|
||||
@@ -2414,9 +2294,6 @@
|
||||
"project.about.tags.title": {
|
||||
"defaultMessage": "標籤"
|
||||
},
|
||||
"project.download-count-tooltip": {
|
||||
"defaultMessage": "{count, number} 次下載"
|
||||
},
|
||||
"project.environment.client-and-server.description": {
|
||||
"defaultMessage": "用戶端與伺服器皆需安裝。"
|
||||
},
|
||||
@@ -2483,21 +2360,9 @@
|
||||
"project.environment.unknown.title": {
|
||||
"defaultMessage": "未知的執行環境"
|
||||
},
|
||||
"project.follower-count-tooltip": {
|
||||
"defaultMessage": "{count, number} 位追蹤者"
|
||||
},
|
||||
"project.online-player-count": {
|
||||
"defaultMessage": "{count, number} 人在線上"
|
||||
},
|
||||
"project.online-player-count.tooltip": {
|
||||
"defaultMessage": "{count} 位玩家在線上"
|
||||
},
|
||||
"project.recent-plays": {
|
||||
"defaultMessage": "{count} 次近期遊玩"
|
||||
},
|
||||
"project.recent-plays.tooltip": {
|
||||
"defaultMessage": "過去 2 週內來自 Modrinth 的 {count} 次最近遊玩次數"
|
||||
},
|
||||
"project.server.customModpackTooltip": {
|
||||
"defaultMessage": "這個專案使用了自訂模組包"
|
||||
},
|
||||
@@ -3098,15 +2963,6 @@
|
||||
"servers.backups.admonition.restoring-backup.title": {
|
||||
"defaultMessage": "從備份還原"
|
||||
},
|
||||
"servers.backups.bulk-bar.aria-label": {
|
||||
"defaultMessage": "對 {count} 個選取的備份執行批次動作"
|
||||
},
|
||||
"servers.backups.bulk-bar.deleting": {
|
||||
"defaultMessage": "正在刪除 {total} 個備份..."
|
||||
},
|
||||
"servers.backups.bulk-bar.selected-count": {
|
||||
"defaultMessage": "已選取 {count} 個備份"
|
||||
},
|
||||
"servers.backups.delete-modal.admonition-body": {
|
||||
"defaultMessage": "一旦刪除,{count, plural, one {這個備份} other {這些備份}}將無法還原。刪除後即永久消失。"
|
||||
},
|
||||
@@ -3119,9 +2975,6 @@
|
||||
"servers.backups.delete-modal.confirm": {
|
||||
"defaultMessage": "刪除{count, plural, one {備份} other {# 個備份}}"
|
||||
},
|
||||
"servers.backups.delete-modal.header": {
|
||||
"defaultMessage": "刪除備份"
|
||||
},
|
||||
"servers.backups.empty.description": {
|
||||
"defaultMessage": "建立你的第一個備份"
|
||||
},
|
||||
@@ -3263,18 +3116,12 @@
|
||||
"servers.listing.new-label": {
|
||||
"defaultMessage": "新伺服器"
|
||||
},
|
||||
"servers.listing.notice.files-kept-for-download": {
|
||||
"defaultMessage": "你的檔案還會保留 <days-remaining>{daysRemaining} 天</days-remaining>。請在檔案被刪除前聯絡支援團隊以進行下載。"
|
||||
},
|
||||
"servers.listing.notice.files-preserved-after-cancellation": {
|
||||
"defaultMessage": "取消服務後,你的檔案將保留 30 天。"
|
||||
},
|
||||
"servers.listing.notice.moderated": {
|
||||
"defaultMessage": "由於違反管理規範,你的伺服器已遭停權。"
|
||||
},
|
||||
"servers.listing.notice.pending-change": {
|
||||
"defaultMessage": "你的伺服器將於 {formattedDate} {verb}為 {planSize} 方案。"
|
||||
},
|
||||
"servers.listing.notice.provisioning": {
|
||||
"defaultMessage": "我們正在為你設定伺服器,請稍候。這可能需要長達 10 分鐘。"
|
||||
},
|
||||
@@ -3380,9 +3227,6 @@
|
||||
"servers.manage.resubscribe-success.title": {
|
||||
"defaultMessage": "成功"
|
||||
},
|
||||
"servers.manage.search-placeholder": {
|
||||
"defaultMessage": "搜尋 {count} {count, plural, other {個伺服器}}..."
|
||||
},
|
||||
"servers.manage.servers-title": {
|
||||
"defaultMessage": "Modrinth Hosting"
|
||||
},
|
||||
@@ -3395,9 +3239,6 @@
|
||||
"servers.manage.settings-hint.title": {
|
||||
"defaultMessage": "你的伺服器設定已移動位置"
|
||||
},
|
||||
"servers.medal-listing.countdown.remaining": {
|
||||
"defaultMessage": "剩餘 <days-count>{days}</days-count> 天 <hours-count>{hours}</hours-count> 小時 <minutes-count>{minutes}</minutes-count> 分鐘 <seconds-count>{seconds}</seconds-count> 秒..."
|
||||
},
|
||||
"servers.medal-listing.new-server-label": {
|
||||
"defaultMessage": "新伺服器"
|
||||
},
|
||||
@@ -3653,9 +3494,6 @@
|
||||
"settings.language.languages.search-field.placeholder": {
|
||||
"defaultMessage": "搜尋語言..."
|
||||
},
|
||||
"settings.language.languages.search-results-announcement": {
|
||||
"defaultMessage": "{matches, plural, =0 {未搜尋到相關語言} other {有 # 個語言符合搜尋字詞}}"
|
||||
},
|
||||
"settings.language.languages.search.no-results": {
|
||||
"defaultMessage": "沒有語言符合你的搜尋字詞。"
|
||||
},
|
||||
@@ -4121,11 +3959,7 @@
|
||||
"ui.confirm-leave-modal.title": {
|
||||
"defaultMessage": "離開頁面?"
|
||||
},
|
||||
"ui.stacked-admonitions.alert-count": {
|
||||
"defaultMessage": "{count} 個警示"
|
||||
},
|
||||
"ui.stacked-admonitions.dismiss-all": {
|
||||
"defaultMessage": "忽略全部"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { defineMessages } from '../composables/i18n'
|
||||
import { defineMessages, type MessageDescriptor } from '../composables/i18n'
|
||||
|
||||
export const commonMessages = defineMessages({
|
||||
acceptButton: {
|
||||
@@ -787,6 +787,8 @@ export function normalizeProjectType(type: string): string {
|
||||
return PROJECT_TYPE_ALIASES[type] ?? type
|
||||
}
|
||||
|
||||
type FormatMessage = (descriptor: MessageDescriptor, values?: Record<string, unknown>) => string
|
||||
|
||||
export const commonProjectTypeCategoryMessages = defineMessages({
|
||||
datapack: {
|
||||
id: 'project-type.datapack.category',
|
||||
@@ -892,6 +894,120 @@ export const commonProjectTypeSentenceMessages = defineMessages({
|
||||
},
|
||||
})
|
||||
|
||||
type ProjectTypeMessageKey = keyof typeof commonProjectTypeSentenceMessages
|
||||
|
||||
function getProjectTypeMessageKey(type: string | undefined): ProjectTypeMessageKey {
|
||||
const normalized = normalizeProjectType(type ?? 'project')
|
||||
return normalized in commonProjectTypeSentenceMessages
|
||||
? (normalized as ProjectTypeMessageKey)
|
||||
: 'project'
|
||||
}
|
||||
|
||||
export function getProjectTypeCategoryMessage(type: string | undefined): MessageDescriptor {
|
||||
return commonProjectTypeCategoryMessages[getProjectTypeMessageKey(type)]
|
||||
}
|
||||
|
||||
export function getProjectTypeTitleMessage(type: string | undefined): MessageDescriptor {
|
||||
return commonProjectTypeTitleMessages[getProjectTypeMessageKey(type)]
|
||||
}
|
||||
|
||||
export function getProjectTypeSentenceMessage(type: string | undefined): MessageDescriptor {
|
||||
return commonProjectTypeSentenceMessages[getProjectTypeMessageKey(type)]
|
||||
}
|
||||
|
||||
export function formatProjectTypeSentence(
|
||||
formatMessage: FormatMessage,
|
||||
type: string | undefined,
|
||||
count = 1,
|
||||
): string {
|
||||
return formatMessage(getProjectTypeSentenceMessage(type), { count })
|
||||
}
|
||||
|
||||
export const contentItemTypeMessages = defineMessages({
|
||||
item: {
|
||||
id: 'content-type.item.lowercase',
|
||||
defaultMessage: '{count, plural, one {item} other {items}}',
|
||||
},
|
||||
content: {
|
||||
id: 'content-type.content.lowercase',
|
||||
defaultMessage: 'content',
|
||||
},
|
||||
})
|
||||
|
||||
export function formatContentTypeSentence(
|
||||
formatMessage: FormatMessage,
|
||||
type: string | undefined,
|
||||
count = 1,
|
||||
fallback: keyof typeof contentItemTypeMessages = 'item',
|
||||
): string {
|
||||
if (type) {
|
||||
return formatProjectTypeSentence(formatMessage, type, count)
|
||||
}
|
||||
|
||||
return formatMessage(contentItemTypeMessages[fallback], { count })
|
||||
}
|
||||
|
||||
export const reportItemTypeMessages = defineMessages({
|
||||
project: {
|
||||
id: 'report.item-type.project',
|
||||
defaultMessage: 'project',
|
||||
},
|
||||
version: {
|
||||
id: 'report.item-type.version',
|
||||
defaultMessage: 'version',
|
||||
},
|
||||
user: {
|
||||
id: 'report.item-type.user',
|
||||
defaultMessage: 'user',
|
||||
},
|
||||
content: {
|
||||
id: 'report.item-type.content',
|
||||
defaultMessage: 'content',
|
||||
},
|
||||
})
|
||||
|
||||
export function formatReportItemType(
|
||||
formatMessage: FormatMessage,
|
||||
type: string | undefined,
|
||||
): string {
|
||||
const key =
|
||||
type && type in reportItemTypeMessages
|
||||
? (type as keyof typeof reportItemTypeMessages)
|
||||
: 'content'
|
||||
return formatMessage(reportItemTypeMessages[key])
|
||||
}
|
||||
|
||||
export const fileItemTypeMessages = defineMessages({
|
||||
file: {
|
||||
id: 'files.item-type.file',
|
||||
defaultMessage: 'file',
|
||||
},
|
||||
files: {
|
||||
id: 'files.item-type.files',
|
||||
defaultMessage: 'files',
|
||||
},
|
||||
folder: {
|
||||
id: 'files.item-type.folder',
|
||||
defaultMessage: 'folder',
|
||||
},
|
||||
folders: {
|
||||
id: 'files.item-type.folders',
|
||||
defaultMessage: 'folders',
|
||||
},
|
||||
})
|
||||
|
||||
export function formatFileItemType(
|
||||
formatMessage: FormatMessage,
|
||||
type: string | undefined,
|
||||
plural = false,
|
||||
): string {
|
||||
if (type === 'directory') {
|
||||
return formatMessage(plural ? fileItemTypeMessages.folders : fileItemTypeMessages.folder)
|
||||
}
|
||||
|
||||
return formatMessage(plural ? fileItemTypeMessages.files : fileItemTypeMessages.file)
|
||||
}
|
||||
|
||||
export const commonSettingsMessages = defineMessages({
|
||||
account: {
|
||||
id: 'settings.account.title',
|
||||
@@ -1083,7 +1199,7 @@ export const paymentMethodMessages = defineMessages({
|
||||
},
|
||||
mastercard: {
|
||||
id: 'payment-method.mastercard',
|
||||
defaultMessage: 'MasterCard',
|
||||
defaultMessage: 'Mastercard',
|
||||
},
|
||||
paypal: {
|
||||
id: 'payment-method.paypal',
|
||||
|
||||
Reference in New Issue
Block a user