forked from AkkomaGang/akkoma-fe
resolve merge conflicts
This commit is contained in:
commit
ba808076ca
31 changed files with 952 additions and 340 deletions
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -3,12 +3,25 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
### Fixed
|
||||||
|
- Button to remove uploaded media in post status form is now properly placed and sized.
|
||||||
|
- Fixed shoutbox not working in mobile layout
|
||||||
|
|
||||||
|
|
||||||
|
## [2.2.3] - 2021-01-18
|
||||||
|
### Added
|
||||||
|
- Added Report button to status ellipsis menu for easier reporting
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Follows/Followers tabs on user profiles now display the content properly.
|
- Follows/Followers tabs on user profiles now display the content properly.
|
||||||
- Handle punycode in screen names
|
- Handle punycode in screen names
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Don't filter own posts when they hit your wordfilter
|
||||||
|
- Language picker now uses native language names
|
||||||
|
|
||||||
|
|
||||||
## [2.2.2] - 2020-12-22
|
## [2.2.2] - 2020-12-22
|
||||||
### Added
|
### Added
|
||||||
- Mouseover titles for emojis in reaction picker
|
- Mouseover titles for emojis in reaction picker
|
||||||
|
|
|
@ -178,6 +178,13 @@ a {
|
||||||
&.-fullwidth {
|
&.-fullwidth {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.-hover-highlight {
|
||||||
|
&:hover svg {
|
||||||
|
color: $fallback--lightText;
|
||||||
|
color: var(--lightText, $fallback--lightText);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
input, textarea, .select, .input {
|
input, textarea, .select, .input {
|
||||||
|
|
|
@ -35,7 +35,7 @@ const AccountActions = {
|
||||||
this.$store.dispatch('unblockUser', this.user.id)
|
this.$store.dispatch('unblockUser', this.user.id)
|
||||||
},
|
},
|
||||||
reportUser () {
|
reportUser () {
|
||||||
this.$store.dispatch('openUserReportingModal', this.user.id)
|
this.$store.dispatch('openUserReportingModal', { userId: this.user.id })
|
||||||
},
|
},
|
||||||
openChat () {
|
openChat () {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
|
|
|
@ -5,6 +5,8 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import localeService from 'src/services/locale/locale.service.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Timeago',
|
name: 'Timeago',
|
||||||
props: ['date'],
|
props: ['date'],
|
||||||
|
@ -16,7 +18,7 @@ export default {
|
||||||
if (this.date.getTime() === today.getTime()) {
|
if (this.date.getTime() === today.getTime()) {
|
||||||
return this.$t('display_date.today')
|
return this.$t('display_date.today')
|
||||||
} else {
|
} else {
|
||||||
return this.date.toLocaleDateString('en', { day: 'numeric', month: 'long' })
|
return this.date.toLocaleDateString(localeService.internalToBrowserLocale(this.$i18n.locale), { day: 'numeric', month: 'long' })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,8 @@ import {
|
||||||
faExternalLinkAlt
|
faExternalLinkAlt
|
||||||
} from '@fortawesome/free-solid-svg-icons'
|
} from '@fortawesome/free-solid-svg-icons'
|
||||||
import {
|
import {
|
||||||
faBookmark as faBookmarkReg
|
faBookmark as faBookmarkReg,
|
||||||
|
faFlag
|
||||||
} from '@fortawesome/free-regular-svg-icons'
|
} from '@fortawesome/free-regular-svg-icons'
|
||||||
|
|
||||||
library.add(
|
library.add(
|
||||||
|
@ -19,7 +20,8 @@ library.add(
|
||||||
faEyeSlash,
|
faEyeSlash,
|
||||||
faThumbtack,
|
faThumbtack,
|
||||||
faShareAlt,
|
faShareAlt,
|
||||||
faExternalLinkAlt
|
faExternalLinkAlt,
|
||||||
|
faFlag
|
||||||
)
|
)
|
||||||
|
|
||||||
const ExtraButtons = {
|
const ExtraButtons = {
|
||||||
|
@ -66,6 +68,9 @@ const ExtraButtons = {
|
||||||
this.$store.dispatch('unbookmark', { id: this.status.id })
|
this.$store.dispatch('unbookmark', { id: this.status.id })
|
||||||
.then(() => this.$emit('onSuccess'))
|
.then(() => this.$emit('onSuccess'))
|
||||||
.catch(err => this.$emit('onError', err.error.error))
|
.catch(err => this.$emit('onError', err.error.error))
|
||||||
|
},
|
||||||
|
reportStatus () {
|
||||||
|
this.$store.dispatch('openUserReportingModal', { userId: this.status.user.id, statusIds: [this.status.id] })
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
|
|
@ -109,6 +109,16 @@
|
||||||
icon="external-link-alt"
|
icon="external-link-alt"
|
||||||
/><span>{{ $t("status.external_source") }}</span>
|
/><span>{{ $t("status.external_source") }}</span>
|
||||||
</a>
|
</a>
|
||||||
|
<button
|
||||||
|
class="button-default dropdown-item dropdown-item-icon"
|
||||||
|
@click.prevent="reportStatus"
|
||||||
|
@click="close"
|
||||||
|
>
|
||||||
|
<FAIcon
|
||||||
|
fixed-width
|
||||||
|
:icon="['far', 'flag']"
|
||||||
|
/><span>{{ $t("user_card.report") }}</span>
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<span
|
<span
|
||||||
|
|
|
@ -12,11 +12,11 @@
|
||||||
v-model="language"
|
v-model="language"
|
||||||
>
|
>
|
||||||
<option
|
<option
|
||||||
v-for="(langCode, i) in languageCodes"
|
v-for="lang in languages"
|
||||||
:key="langCode"
|
:key="lang.code"
|
||||||
:value="langCode"
|
:value="lang.code"
|
||||||
>
|
>
|
||||||
{{ languageNames[i] }}
|
{{ lang.name }}
|
||||||
</option>
|
</option>
|
||||||
</select>
|
</select>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
|
@ -29,6 +29,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import languagesObject from '../../i18n/messages'
|
import languagesObject from '../../i18n/messages'
|
||||||
|
import localeService from '../../services/locale/locale.service.js'
|
||||||
import ISO6391 from 'iso-639-1'
|
import ISO6391 from 'iso-639-1'
|
||||||
import _ from 'lodash'
|
import _ from 'lodash'
|
||||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
||||||
|
@ -42,12 +43,8 @@ library.add(
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
computed: {
|
computed: {
|
||||||
languageCodes () {
|
languages () {
|
||||||
return languagesObject.languages
|
return _.map(languagesObject.languages, (code) => ({ code: code, name: this.getLanguageName(code) })).sort((a, b) => a.name.localeCompare(b.name))
|
||||||
},
|
|
||||||
|
|
||||||
languageNames () {
|
|
||||||
return _.map(this.languageCodes, this.getLanguageName)
|
|
||||||
},
|
},
|
||||||
|
|
||||||
language: {
|
language: {
|
||||||
|
@ -61,13 +58,14 @@ export default {
|
||||||
methods: {
|
methods: {
|
||||||
getLanguageName (code) {
|
getLanguageName (code) {
|
||||||
const specialLanguageNames = {
|
const specialLanguageNames = {
|
||||||
'ja': 'Japanese (日本語)',
|
|
||||||
'ja_easy': 'Japanese (やさしいにほんご)',
|
|
||||||
'en_nyan': 'English (Nyan)',
|
'en_nyan': 'English (Nyan)',
|
||||||
'zh': 'Simplified Chinese (简体中文)',
|
'ja_easy': 'やさしいにほんご',
|
||||||
'zh_Hant': 'Traditional Chinese (繁體中文)'
|
'zh': '简体中文',
|
||||||
|
'zh_Hant': '繁體中文'
|
||||||
}
|
}
|
||||||
return specialLanguageNames[code] || ISO6391.getName(code)
|
const languageName = specialLanguageNames[code] || ISO6391.getNativeName(code)
|
||||||
|
const browserLocale = localeService.internalToBrowserLocale(code)
|
||||||
|
return languageName.charAt(0).toLocaleUpperCase(browserLocale) + languageName.slice(1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,20 +21,17 @@
|
||||||
@keydown.enter.stop.prevent="nextOption(index)"
|
@keydown.enter.stop.prevent="nextOption(index)"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<button
|
||||||
v-if="options.length > 2"
|
v-if="options.length > 2"
|
||||||
class="icon-container"
|
class="delete-option button-unstyled -hover-highlight"
|
||||||
>
|
|
||||||
<FAIcon
|
|
||||||
icon="times"
|
|
||||||
class="delete"
|
|
||||||
@click="deleteOption(index)"
|
@click="deleteOption(index)"
|
||||||
/>
|
>
|
||||||
|
<FAIcon icon="times" />
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<button
|
||||||
<a
|
|
||||||
v-if="options.length < maxOptions"
|
v-if="options.length < maxOptions"
|
||||||
class="add-option faint"
|
class="add-option faint button-unstyled -hover-highlight"
|
||||||
@click="addOption"
|
@click="addOption"
|
||||||
>
|
>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
|
@ -43,7 +40,7 @@
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{{ $t("polls.add_option") }}
|
{{ $t("polls.add_option") }}
|
||||||
</a>
|
</button>
|
||||||
<div class="poll-type-expiry">
|
<div class="poll-type-expiry">
|
||||||
<div
|
<div
|
||||||
class="poll-type"
|
class="poll-type"
|
||||||
|
@ -116,7 +113,6 @@
|
||||||
align-self: flex-start;
|
align-self: flex-start;
|
||||||
padding-top: 0.25em;
|
padding-top: 0.25em;
|
||||||
padding-left: 0.1em;
|
padding-left: 0.1em;
|
||||||
cursor: pointer;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.poll-option {
|
.poll-option {
|
||||||
|
@ -135,19 +131,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-container {
|
.delete-option {
|
||||||
// Hack: Move the icon over the input box
|
// Hack: Move the icon over the input box
|
||||||
width: 1.5em;
|
width: 1.5em;
|
||||||
margin-left: -1.5em;
|
margin-left: -1.5em;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
|
|
||||||
.delete {
|
|
||||||
cursor: pointer;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: inherit;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.poll-type-expiry {
|
.poll-type-expiry {
|
||||||
|
|
|
@ -302,11 +302,12 @@
|
||||||
:key="file.url"
|
:key="file.url"
|
||||||
class="media-upload-wrapper"
|
class="media-upload-wrapper"
|
||||||
>
|
>
|
||||||
<FAIcon
|
<button
|
||||||
class="fa-scale-110 fa-old-padding"
|
class="button-unstyled hider"
|
||||||
icon="times"
|
|
||||||
@click="removeMediaFile(file)"
|
@click="removeMediaFile(file)"
|
||||||
/>
|
>
|
||||||
|
<FAIcon icon="times" />
|
||||||
|
</button>
|
||||||
<attachment
|
<attachment
|
||||||
:attachment="file"
|
:attachment="file"
|
||||||
:set-media="() => $store.dispatch('setMedia', newStatus.files)"
|
:set-media="() => $store.dispatch('setMedia', newStatus.files)"
|
||||||
|
@ -516,26 +517,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.attachments .media-upload-wrapper {
|
.attachments .media-upload-wrapper {
|
||||||
padding: 0 0.5em;
|
position: relative;
|
||||||
|
|
||||||
.attachment {
|
.attachment {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fa-scale-110 fa-old-padding {
|
|
||||||
position: absolute;
|
|
||||||
margin: 10px;
|
|
||||||
margin: .75em;
|
|
||||||
padding: .5em;
|
|
||||||
background: rgba(230,230,230,0.6);
|
|
||||||
z-index: 2;
|
|
||||||
color: black;
|
|
||||||
border-radius: $fallback--attachmentRadius;
|
|
||||||
border-radius: var(--attachmentRadius, $fallback--attachmentRadius);
|
|
||||||
font-weight: bold;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -111,16 +111,17 @@
|
||||||
.profile-fields {
|
.profile-fields {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
||||||
&>.emoji-input {
|
& > .emoji-input {
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
margin: 0 .2em .5em;
|
margin: 0 0.2em 0.5em;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&>.icon-container {
|
.delete-field {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
align-self: center;
|
align-self: center;
|
||||||
margin: 0 .2em .5em;
|
margin: 0 0.2em 0.5em;
|
||||||
|
padding: 0 0.5em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -124,24 +124,24 @@
|
||||||
:placeholder="$t('settings.profile_fields.value')"
|
:placeholder="$t('settings.profile_fields.value')"
|
||||||
>
|
>
|
||||||
</EmojiInput>
|
</EmojiInput>
|
||||||
<div
|
<button
|
||||||
class="icon-container"
|
class="delete-field button-unstyled -hover-highlight"
|
||||||
|
@click="deleteField(i)"
|
||||||
>
|
>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
v-show="newFields.length > 1"
|
v-show="newFields.length > 1"
|
||||||
icon="times"
|
icon="times"
|
||||||
@click="deleteField(i)"
|
|
||||||
/>
|
/>
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
<button
|
||||||
<a
|
|
||||||
v-if="newFields.length < maxFields"
|
v-if="newFields.length < maxFields"
|
||||||
class="add-field faint"
|
class="add-field faint button-unstyled -hover-highlight"
|
||||||
@click="addField"
|
@click="addField"
|
||||||
>
|
>
|
||||||
<FAIcon icon="plus" />
|
<FAIcon icon="plus" />
|
||||||
{{ $t("settings.profile_fields.add_field") }}
|
{{ $t("settings.profile_fields.add_field") }}
|
||||||
</a>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<p>
|
<p>
|
||||||
<Checkbox v-model="bot">
|
<Checkbox v-model="bot">
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import ProgressButton from 'src/components/progress_button/progress_button.vue'
|
import ProgressButton from 'src/components/progress_button/progress_button.vue'
|
||||||
import Checkbox from 'src/components/checkbox/checkbox.vue'
|
import Checkbox from 'src/components/checkbox/checkbox.vue'
|
||||||
import Mfa from './mfa.vue'
|
import Mfa from './mfa.vue'
|
||||||
|
import localeService from 'src/services/locale/locale.service.js'
|
||||||
|
|
||||||
const SecurityTab = {
|
const SecurityTab = {
|
||||||
data () {
|
data () {
|
||||||
|
@ -37,7 +38,7 @@ const SecurityTab = {
|
||||||
return {
|
return {
|
||||||
id: oauthToken.id,
|
id: oauthToken.id,
|
||||||
appName: oauthToken.app_name,
|
appName: oauthToken.app_name,
|
||||||
validUntil: new Date(oauthToken.valid_until).toLocaleDateString()
|
validUntil: new Date(oauthToken.valid_until).toLocaleDateString(localeService.internalToBrowserLocale(this.$i18n.locale))
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -109,7 +109,7 @@
|
||||||
v-if="chat"
|
v-if="chat"
|
||||||
@click="toggleDrawer"
|
@click="toggleDrawer"
|
||||||
>
|
>
|
||||||
<router-link :to="{ name: 'chat' }">
|
<router-link :to="{ name: 'chat-panel' }">
|
||||||
<FAIcon
|
<FAIcon
|
||||||
fixed-width
|
fixed-width
|
||||||
class="fa-scale-110 fa-old-padding"
|
class="fa-scale-110 fa-old-padding"
|
||||||
|
|
|
@ -157,6 +157,7 @@ const Status = {
|
||||||
return muteWordHits(this.status, this.muteWords)
|
return muteWordHits(this.status, this.muteWords)
|
||||||
},
|
},
|
||||||
muted () {
|
muted () {
|
||||||
|
if (this.statusoid.user.id === this.currentUser.id) return false
|
||||||
const { status } = this
|
const { status } = this
|
||||||
const { reblog } = status
|
const { reblog } = status
|
||||||
const relationship = this.$store.getters.relationship(status.user.id)
|
const relationship = this.$store.getters.relationship(status.user.id)
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import * as DateUtils from 'src/services/date_utils/date_utils.js'
|
import * as DateUtils from 'src/services/date_utils/date_utils.js'
|
||||||
|
import localeService from 'src/services/locale/locale.service.js'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Timeago',
|
name: 'Timeago',
|
||||||
|
@ -21,9 +22,10 @@ export default {
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
localeDateString () {
|
localeDateString () {
|
||||||
|
const browserLocale = localeService.internalToBrowserLocale(this.$i18n.locale)
|
||||||
return typeof this.time === 'string'
|
return typeof this.time === 'string'
|
||||||
? new Date(Date.parse(this.time)).toLocaleString()
|
? new Date(Date.parse(this.time)).toLocaleString(browserLocale)
|
||||||
: this.time.toLocaleString()
|
: this.time.toLocaleString(browserLocale)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
|
|
|
@ -83,7 +83,7 @@
|
||||||
v-if="!!visibleRole"
|
v-if="!!visibleRole"
|
||||||
class="alert user-role"
|
class="alert user-role"
|
||||||
>
|
>
|
||||||
{{ visibleRole }}
|
{{ $t(`user_card.roles.${visibleRole}`) }}
|
||||||
</span>
|
</span>
|
||||||
<span
|
<span
|
||||||
v-if="user.bot"
|
v-if="user.bot"
|
||||||
|
@ -507,7 +507,6 @@
|
||||||
|
|
||||||
.user-role {
|
.user-role {
|
||||||
flex: none;
|
flex: none;
|
||||||
text-transform: capitalize;
|
|
||||||
color: $fallback--text;
|
color: $fallback--text;
|
||||||
color: var(--alertNeutralText, $fallback--text);
|
color: var(--alertNeutralText, $fallback--text);
|
||||||
background-color: $fallback--fg;
|
background-color: $fallback--fg;
|
||||||
|
|
|
@ -38,17 +38,23 @@ const UserReportingModal = {
|
||||||
},
|
},
|
||||||
statuses () {
|
statuses () {
|
||||||
return this.$store.state.reports.statuses
|
return this.$store.state.reports.statuses
|
||||||
|
},
|
||||||
|
preTickedIds () {
|
||||||
|
return this.$store.state.reports.preTickedIds
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
userId: 'resetState'
|
userId: 'resetState',
|
||||||
|
preTickedIds (newValue) {
|
||||||
|
this.statusIdsToReport = newValue
|
||||||
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
resetState () {
|
resetState () {
|
||||||
// Reset state
|
// Reset state
|
||||||
this.comment = ''
|
this.comment = ''
|
||||||
this.forward = false
|
this.forward = false
|
||||||
this.statusIdsToReport = []
|
this.statusIdsToReport = this.preTickedIds
|
||||||
this.processing = false
|
this.processing = false
|
||||||
this.error = false
|
this.error = false
|
||||||
},
|
},
|
||||||
|
|
|
@ -730,6 +730,10 @@
|
||||||
"quarantine": "Disallow user posts from federating",
|
"quarantine": "Disallow user posts from federating",
|
||||||
"delete_user": "Delete user",
|
"delete_user": "Delete user",
|
||||||
"delete_user_confirmation": "Are you absolutely sure? This action cannot be undone."
|
"delete_user_confirmation": "Are you absolutely sure? This action cannot be undone."
|
||||||
|
},
|
||||||
|
"roles": {
|
||||||
|
"admin": "Admin",
|
||||||
|
"moderator": "Moderator"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"user_profile": {
|
"user_profile": {
|
||||||
|
|
|
@ -10,7 +10,8 @@
|
||||||
"text_limit": "Limo de teksto",
|
"text_limit": "Limo de teksto",
|
||||||
"title": "Funkcioj",
|
"title": "Funkcioj",
|
||||||
"who_to_follow": "Kiun aboni",
|
"who_to_follow": "Kiun aboni",
|
||||||
"pleroma_chat_messages": "Babilejo de Pleroma"
|
"pleroma_chat_messages": "Babilejo de Pleroma",
|
||||||
|
"upload_limit": "Limo de alŝutoj"
|
||||||
},
|
},
|
||||||
"finder": {
|
"finder": {
|
||||||
"error_fetching_user": "Eraris alporto de uzanto",
|
"error_fetching_user": "Eraris alporto de uzanto",
|
||||||
|
@ -95,7 +96,8 @@
|
||||||
"no_more_notifications": "Neniuj pliaj sciigoj",
|
"no_more_notifications": "Neniuj pliaj sciigoj",
|
||||||
"reacted_with": "reagis per {0}",
|
"reacted_with": "reagis per {0}",
|
||||||
"migrated_to": "migris al",
|
"migrated_to": "migris al",
|
||||||
"follow_request": "volas vin aboni"
|
"follow_request": "volas vin aboni",
|
||||||
|
"error": "Eraris akirado de sciigoj: {0}"
|
||||||
},
|
},
|
||||||
"post_status": {
|
"post_status": {
|
||||||
"new_status": "Afiŝi novan staton",
|
"new_status": "Afiŝi novan staton",
|
||||||
|
@ -235,7 +237,7 @@
|
||||||
"hide_followers_description": "Ne montri kiu min sekvas",
|
"hide_followers_description": "Ne montri kiu min sekvas",
|
||||||
"show_admin_badge": "Montri la insignon de administranto en mia profilo",
|
"show_admin_badge": "Montri la insignon de administranto en mia profilo",
|
||||||
"show_moderator_badge": "Montri la insignon de reguligisto en mia profilo",
|
"show_moderator_badge": "Montri la insignon de reguligisto en mia profilo",
|
||||||
"nsfw_clickthrough": "Ŝalti traklakan kaŝadon de konsternaj kunsendaĵoj",
|
"nsfw_clickthrough": "Ŝalti traklakan kaŝadon de kunsendaĵoj kaj antaŭmontroj de ligiloj por konsternaj statoj",
|
||||||
"oauth_tokens": "Ĵetonoj de OAuth",
|
"oauth_tokens": "Ĵetonoj de OAuth",
|
||||||
"token": "Ĵetono",
|
"token": "Ĵetono",
|
||||||
"refresh_token": "Ĵetono de aktualigo",
|
"refresh_token": "Ĵetono de aktualigo",
|
||||||
|
@ -527,7 +529,8 @@
|
||||||
"up_to_date": "Ĝisdata",
|
"up_to_date": "Ĝisdata",
|
||||||
"no_more_statuses": "Neniuj pliaj statoj",
|
"no_more_statuses": "Neniuj pliaj statoj",
|
||||||
"no_statuses": "Neniuj statoj",
|
"no_statuses": "Neniuj statoj",
|
||||||
"reload": "Enlegi ree"
|
"reload": "Enlegi ree",
|
||||||
|
"error": "Eraris akirado de historio: {0}"
|
||||||
},
|
},
|
||||||
"user_card": {
|
"user_card": {
|
||||||
"approve": "Aprobi",
|
"approve": "Aprobi",
|
||||||
|
@ -728,7 +731,8 @@
|
||||||
"delete": "Forigi staton",
|
"delete": "Forigi staton",
|
||||||
"repeats": "Ripetoj",
|
"repeats": "Ripetoj",
|
||||||
"favorites": "Ŝatoj",
|
"favorites": "Ŝatoj",
|
||||||
"status_deleted": "Ĉi tiu afiŝo foriĝis"
|
"status_deleted": "Ĉi tiu afiŝo foriĝis",
|
||||||
|
"nsfw": "Konsterna"
|
||||||
},
|
},
|
||||||
"time": {
|
"time": {
|
||||||
"years_short": "{0}j",
|
"years_short": "{0}j",
|
||||||
|
|
|
@ -14,7 +14,8 @@
|
||||||
"text_limit": "Límite de caracteres",
|
"text_limit": "Límite de caracteres",
|
||||||
"title": "Características",
|
"title": "Características",
|
||||||
"who_to_follow": "A quién seguir",
|
"who_to_follow": "A quién seguir",
|
||||||
"pleroma_chat_messages": "Chat de Pleroma"
|
"pleroma_chat_messages": "Chat de Pleroma",
|
||||||
|
"upload_limit": "Límite de subida"
|
||||||
},
|
},
|
||||||
"finder": {
|
"finder": {
|
||||||
"error_fetching_user": "Error al buscar usuario",
|
"error_fetching_user": "Error al buscar usuario",
|
||||||
|
@ -448,7 +449,8 @@
|
||||||
"underlay": "Subrayado",
|
"underlay": "Subrayado",
|
||||||
"popover": "Sugerencias, menús, superposiciones",
|
"popover": "Sugerencias, menús, superposiciones",
|
||||||
"post": "Publicaciones/Biografías de Usuarios",
|
"post": "Publicaciones/Biografías de Usuarios",
|
||||||
"alert_warning": "Precaución"
|
"alert_warning": "Precaución",
|
||||||
|
"wallpaper": "Fondo de pantalla"
|
||||||
},
|
},
|
||||||
"radii": {
|
"radii": {
|
||||||
"_tab_label": "Redondez"
|
"_tab_label": "Redondez"
|
||||||
|
@ -559,7 +561,8 @@
|
||||||
"mute_import_error": "Error al importar los silenciados",
|
"mute_import_error": "Error al importar los silenciados",
|
||||||
"mute_import": "Importar silenciados",
|
"mute_import": "Importar silenciados",
|
||||||
"mute_export_button": "Exportar los silenciados a un archivo csv",
|
"mute_export_button": "Exportar los silenciados a un archivo csv",
|
||||||
"mute_export": "Exportar silenciados"
|
"mute_export": "Exportar silenciados",
|
||||||
|
"hide_wallpaper": "Ocultar el fondo de pantalla de la instancia"
|
||||||
},
|
},
|
||||||
"time": {
|
"time": {
|
||||||
"day": "{0} día",
|
"day": "{0} día",
|
||||||
|
@ -632,7 +635,9 @@
|
||||||
"bookmark": "Marcar",
|
"bookmark": "Marcar",
|
||||||
"unbookmark": "Desmarcar",
|
"unbookmark": "Desmarcar",
|
||||||
"status_deleted": "Esta entrada ha sido eliminada",
|
"status_deleted": "Esta entrada ha sido eliminada",
|
||||||
"nsfw": "NSFW (No apropiado para el trabajo)"
|
"nsfw": "NSFW (No apropiado para el trabajo)",
|
||||||
|
"expand": "Expandir",
|
||||||
|
"external_source": "Fuente externa"
|
||||||
},
|
},
|
||||||
"user_card": {
|
"user_card": {
|
||||||
"approve": "Aprobar",
|
"approve": "Aprobar",
|
||||||
|
@ -723,7 +728,8 @@
|
||||||
"error": {
|
"error": {
|
||||||
"base": "Subida fallida.",
|
"base": "Subida fallida.",
|
||||||
"file_too_big": "Archivo demasiado grande [{filesize}{filesizeunit} / {allowedsize}{allowedsizeunit}]",
|
"file_too_big": "Archivo demasiado grande [{filesize}{filesizeunit} / {allowedsize}{allowedsizeunit}]",
|
||||||
"default": "Inténtalo más tarde"
|
"default": "Inténtalo más tarde",
|
||||||
|
"message": "Error de subida: {0}"
|
||||||
},
|
},
|
||||||
"file_size_units": {
|
"file_size_units": {
|
||||||
"B": "B",
|
"B": "B",
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
"administration": "Amministrazione",
|
"administration": "Amministrazione",
|
||||||
"back": "Indietro",
|
"back": "Indietro",
|
||||||
"interactions": "Interazioni",
|
"interactions": "Interazioni",
|
||||||
"dms": "Messaggi diretti",
|
"dms": "Messaggi privati",
|
||||||
"user_search": "Ricerca utenti",
|
"user_search": "Ricerca utenti",
|
||||||
"search": "Ricerca",
|
"search": "Ricerca",
|
||||||
"who_to_follow": "Chi seguire",
|
"who_to_follow": "Chi seguire",
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
"notifications": "Notifiche",
|
"notifications": "Notifiche",
|
||||||
"read": "Letto!",
|
"read": "Letto!",
|
||||||
"broken_favorite": "Stato sconosciuto, lo sto cercando…",
|
"broken_favorite": "Stato sconosciuto, lo sto cercando…",
|
||||||
"favorited_you": "ha gradito il tuo messaggio",
|
"favorited_you": "gradisce il tuo messaggio",
|
||||||
"load_older": "Carica notifiche precedenti",
|
"load_older": "Carica notifiche precedenti",
|
||||||
"repeated_you": "ha condiviso il tuo messaggio",
|
"repeated_you": "ha condiviso il tuo messaggio",
|
||||||
"follow_request": "vuole seguirti",
|
"follow_request": "vuole seguirti",
|
||||||
|
@ -263,7 +263,8 @@
|
||||||
"border": "Bordo",
|
"border": "Bordo",
|
||||||
"outgoing": "Inviati",
|
"outgoing": "Inviati",
|
||||||
"incoming": "Ricevuti"
|
"incoming": "Ricevuti"
|
||||||
}
|
},
|
||||||
|
"wallpaper": "Sfondo"
|
||||||
},
|
},
|
||||||
"common_colors": {
|
"common_colors": {
|
||||||
"rgbo": "Icone, accenti, medaglie",
|
"rgbo": "Icone, accenti, medaglie",
|
||||||
|
@ -382,7 +383,7 @@
|
||||||
"preload_images": "Precarica immagini",
|
"preload_images": "Precarica immagini",
|
||||||
"hide_isp": "Nascondi pannello della stanza",
|
"hide_isp": "Nascondi pannello della stanza",
|
||||||
"max_thumbnails": "Numero massimo di anteprime per messaggio",
|
"max_thumbnails": "Numero massimo di anteprime per messaggio",
|
||||||
"hide_muted_posts": "Nascondi messaggi degli utenti zittiti",
|
"hide_muted_posts": "Nascondi messaggi degli utenti zilenziati",
|
||||||
"accent": "Accento",
|
"accent": "Accento",
|
||||||
"emoji_reactions_on_timeline": "Mostra emoji di reazione sulle sequenze",
|
"emoji_reactions_on_timeline": "Mostra emoji di reazione sulle sequenze",
|
||||||
"pad_emoji": "Affianca spazi agli emoji inseriti tramite selettore",
|
"pad_emoji": "Affianca spazi agli emoji inseriti tramite selettore",
|
||||||
|
@ -415,7 +416,8 @@
|
||||||
"mute_import_error": "Errore nell'importazione",
|
"mute_import_error": "Errore nell'importazione",
|
||||||
"mute_import": "Importa silenziati",
|
"mute_import": "Importa silenziati",
|
||||||
"mute_export_button": "Esporta la tua lista di silenziati in un file CSV",
|
"mute_export_button": "Esporta la tua lista di silenziati in un file CSV",
|
||||||
"mute_export": "Esporta silenziati"
|
"mute_export": "Esporta silenziati",
|
||||||
|
"hide_wallpaper": "Nascondi sfondo della stanza"
|
||||||
},
|
},
|
||||||
"timeline": {
|
"timeline": {
|
||||||
"error_fetching": "Errore nell'aggiornamento",
|
"error_fetching": "Errore nell'aggiornamento",
|
||||||
|
@ -485,7 +487,11 @@
|
||||||
"follow_progress": "Richiedo…",
|
"follow_progress": "Richiedo…",
|
||||||
"follow_sent": "Richiesta inviata!",
|
"follow_sent": "Richiesta inviata!",
|
||||||
"favorites": "Preferiti",
|
"favorites": "Preferiti",
|
||||||
"message": "Contatta"
|
"message": "Contatta",
|
||||||
|
"roles": {
|
||||||
|
"moderator": "Moderatore",
|
||||||
|
"admin": "Amministratore"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"chat": {
|
"chat": {
|
||||||
"title": "Chat"
|
"title": "Chat"
|
||||||
|
@ -493,16 +499,17 @@
|
||||||
"features_panel": {
|
"features_panel": {
|
||||||
"chat": "Chat",
|
"chat": "Chat",
|
||||||
"gopher": "Gopher",
|
"gopher": "Gopher",
|
||||||
"media_proxy": "Proxy multimedia",
|
"media_proxy": "Proxy allegati",
|
||||||
"scope_options": "Opzioni visibilità",
|
"scope_options": "Opzioni visibilità",
|
||||||
"text_limit": "Lunghezza massima",
|
"text_limit": "Lunghezza massima",
|
||||||
"title": "Caratteristiche",
|
"title": "Caratteristiche",
|
||||||
"who_to_follow": "Chi seguire",
|
"who_to_follow": "Chi seguire",
|
||||||
"pleroma_chat_messages": "Chiacchiere"
|
"pleroma_chat_messages": "Chiacchiere",
|
||||||
|
"upload_limit": "Limite allegati"
|
||||||
},
|
},
|
||||||
"finder": {
|
"finder": {
|
||||||
"error_fetching_user": "Errore nel recupero dell'utente",
|
"error_fetching_user": "Errore nel recupero dell'utente",
|
||||||
"find_user": "Trova utente"
|
"find_user": "Cerca utente"
|
||||||
},
|
},
|
||||||
"login": {
|
"login": {
|
||||||
"login": "Accedi",
|
"login": "Accedi",
|
||||||
|
@ -512,18 +519,18 @@
|
||||||
"register": "Registrati",
|
"register": "Registrati",
|
||||||
"username": "Nome utente",
|
"username": "Nome utente",
|
||||||
"description": "Accedi con OAuth",
|
"description": "Accedi con OAuth",
|
||||||
"hint": "Accedi per partecipare alla discussione",
|
"hint": "Accedi per conversare",
|
||||||
"authentication_code": "Codice di autenticazione",
|
"authentication_code": "Codice di autenticazione",
|
||||||
"enter_recovery_code": "Inserisci un codice di recupero",
|
"enter_recovery_code": "Inserisci un codice di recupero",
|
||||||
"enter_two_factor_code": "Inserisci un codice two-factor",
|
"enter_two_factor_code": "Inserisci un codice 2FA",
|
||||||
"recovery_code": "Codice di recupero",
|
"recovery_code": "Codice di recupero",
|
||||||
"heading": {
|
"heading": {
|
||||||
"totp": "Autenticazione two-factor",
|
"totp": "Autenticazione 2FA",
|
||||||
"recovery": "Recupero two-factor"
|
"recovery": "Recupero 2FA"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"post_status": {
|
"post_status": {
|
||||||
"account_not_locked_warning": "Il tuo profilo non è {0}. Chiunque può seguirti e vedere i tuoi messaggi riservati ai tuoi seguaci.",
|
"account_not_locked_warning": "Il tuo profilo non è {0}. Chiunque può seguirti e vedere i tuoi messaggi per seguaci.",
|
||||||
"account_not_locked_warning_link": "protetto",
|
"account_not_locked_warning_link": "protetto",
|
||||||
"attachments_sensitive": "Nascondi gli allegati",
|
"attachments_sensitive": "Nascondi gli allegati",
|
||||||
"content_type": {
|
"content_type": {
|
||||||
|
@ -533,7 +540,7 @@
|
||||||
"text/html": "HTML"
|
"text/html": "HTML"
|
||||||
},
|
},
|
||||||
"content_warning": "Oggetto (facoltativo)",
|
"content_warning": "Oggetto (facoltativo)",
|
||||||
"default": "Sono appena atterrato a Fiumicino.",
|
"default": "Sono appena atterrato a Città Laggiù.",
|
||||||
"direct_warning": "Questo post sarà visibile solo dagli utenti menzionati.",
|
"direct_warning": "Questo post sarà visibile solo dagli utenti menzionati.",
|
||||||
"posting": "Sto pubblicando",
|
"posting": "Sto pubblicando",
|
||||||
"scope": {
|
"scope": {
|
||||||
|
@ -608,13 +615,13 @@
|
||||||
"ftl_removal_desc": "Questa stanza rimuove le seguenti dalla sequenza globale:",
|
"ftl_removal_desc": "Questa stanza rimuove le seguenti dalla sequenza globale:",
|
||||||
"media_removal": "Rimozione multimedia",
|
"media_removal": "Rimozione multimedia",
|
||||||
"media_removal_desc": "Questa istanza rimuove gli allegati dalle seguenti stanze:",
|
"media_removal_desc": "Questa istanza rimuove gli allegati dalle seguenti stanze:",
|
||||||
"media_nsfw": "Allegati oscurati forzatamente",
|
"media_nsfw": "Allegati oscurati d'ufficio",
|
||||||
"media_nsfw_desc": "Questa stanza oscura gli allegati dei messaggi provenienti da queste stanze:"
|
"media_nsfw_desc": "Questa stanza oscura gli allegati dei messaggi provenienti da queste stanze:"
|
||||||
},
|
},
|
||||||
"mrf_policies": "Regole RM abilitate",
|
"mrf_policies": "Regole RM abilitate",
|
||||||
"mrf_policies_desc": "Le regole RM cambiano il comportamento federativo della stanza. Vigono le seguenti regole:"
|
"mrf_policies_desc": "Le regole RM cambiano il comportamento federativo della stanza. Vigono le seguenti regole:"
|
||||||
},
|
},
|
||||||
"staff": "Equipaggio"
|
"staff": "Responsabili"
|
||||||
},
|
},
|
||||||
"domain_mute_card": {
|
"domain_mute_card": {
|
||||||
"mute": "Zittisci",
|
"mute": "Zittisci",
|
||||||
|
@ -643,20 +650,20 @@
|
||||||
},
|
},
|
||||||
"polls": {
|
"polls": {
|
||||||
"add_poll": "Sondaggio",
|
"add_poll": "Sondaggio",
|
||||||
"add_option": "Alternativa",
|
"add_option": "Aggiungi opzione",
|
||||||
"option": "Opzione",
|
"option": "Opzione",
|
||||||
"votes": "voti",
|
"votes": "voti",
|
||||||
"vote": "Vota",
|
"vote": "Vota",
|
||||||
"type": "Tipo di sondaggio",
|
"type": "Tipo di sondaggio",
|
||||||
"single_choice": "Scelta singola",
|
"single_choice": "Scelta singola",
|
||||||
"multiple_choices": "Scelta multipla",
|
"multiple_choices": "Scelta multipla",
|
||||||
"expiry": "Scadenza",
|
"expiry": "Età",
|
||||||
"expires_in": "Scade fra {0}",
|
"expires_in": "Chiude fra {0}",
|
||||||
"expired": "Scaduto {0} fa",
|
"expired": "Chiuso {0} fa",
|
||||||
"not_enough_options": "Aggiungi altre risposte"
|
"not_enough_options": "Aggiungi altre risposte"
|
||||||
},
|
},
|
||||||
"interactions": {
|
"interactions": {
|
||||||
"favs_repeats": "Condivisi e preferiti",
|
"favs_repeats": "Condivisi e Graditi",
|
||||||
"load_older": "Carica vecchie interazioni",
|
"load_older": "Carica vecchie interazioni",
|
||||||
"moves": "Utenti migrati",
|
"moves": "Utenti migrati",
|
||||||
"follows": "Nuovi seguìti"
|
"follows": "Nuovi seguìti"
|
||||||
|
@ -665,8 +672,8 @@
|
||||||
"load_all": "Carico tutti i {emojiAmount} emoji",
|
"load_all": "Carico tutti i {emojiAmount} emoji",
|
||||||
"load_all_hint": "Primi {saneAmount} emoji caricati, caricarli tutti potrebbe causare rallentamenti.",
|
"load_all_hint": "Primi {saneAmount} emoji caricati, caricarli tutti potrebbe causare rallentamenti.",
|
||||||
"unicode": "Emoji Unicode",
|
"unicode": "Emoji Unicode",
|
||||||
"custom": "Emoji personale",
|
"custom": "Emoji della stanza",
|
||||||
"add_emoji": "Inserisci Emoji",
|
"add_emoji": "Inserisci emoji",
|
||||||
"search_emoji": "Cerca un emoji",
|
"search_emoji": "Cerca un emoji",
|
||||||
"keep_open": "Tieni aperto il menù",
|
"keep_open": "Tieni aperto il menù",
|
||||||
"emoji": "Emoji",
|
"emoji": "Emoji",
|
||||||
|
@ -681,7 +688,7 @@
|
||||||
"remote_user_resolver": "Cerca utenti remoti"
|
"remote_user_resolver": "Cerca utenti remoti"
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
"storage_unavailable": "Pleroma non ha potuto accedere ai dati del tuo browser. Le tue credenziali o le tue impostazioni locali non potranno essere salvate e potresti incontrare strani errori. Prova ad abilitare i cookie."
|
"storage_unavailable": "Pleroma non può accedere ai dati del tuo browser. Il tuo accesso o le tue impostazioni non saranno salvate e potresti incontrare strani errori. Prova ad abilitare i cookie."
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"pinned": "Intestato",
|
"pinned": "Intestato",
|
||||||
|
@ -695,18 +702,20 @@
|
||||||
"hide_full_subject": "Nascondi intero oggetto",
|
"hide_full_subject": "Nascondi intero oggetto",
|
||||||
"show_full_subject": "Mostra intero oggetto",
|
"show_full_subject": "Mostra intero oggetto",
|
||||||
"thread_muted_and_words": ", contiene:",
|
"thread_muted_and_words": ", contiene:",
|
||||||
"thread_muted": "Discussione zittita",
|
"thread_muted": "Discussione silenziata",
|
||||||
"copy_link": "Copia collegamento",
|
"copy_link": "Copia collegamento",
|
||||||
"status_unavailable": "Messaggio non disponibile",
|
"status_unavailable": "Messaggio non disponibile",
|
||||||
"unmute_conversation": "Riabilita conversazione",
|
"unmute_conversation": "Riabilita conversazione",
|
||||||
"mute_conversation": "Zittisci conversazione",
|
"mute_conversation": "Silenzia conversazione",
|
||||||
"replies_list": "Risposte:",
|
"replies_list": "Risposte:",
|
||||||
"reply_to": "Rispondi a",
|
"reply_to": "Rispondi a",
|
||||||
"delete_confirm": "Vuoi veramente eliminare questo messaggio?",
|
"delete_confirm": "Vuoi veramente eliminare questo messaggio?",
|
||||||
"unbookmark": "Rimuovi segnalibro",
|
"unbookmark": "Rimuovi segnalibro",
|
||||||
"bookmark": "Aggiungi segnalibro",
|
"bookmark": "Aggiungi segnalibro",
|
||||||
"status_deleted": "Questo messagio è stato cancellato",
|
"status_deleted": "Questo messagio è stato cancellato",
|
||||||
"nsfw": "Pruriginoso"
|
"nsfw": "Pruriginoso",
|
||||||
|
"external_source": "Vai al sito",
|
||||||
|
"expand": "Espandi"
|
||||||
},
|
},
|
||||||
"time": {
|
"time": {
|
||||||
"years_short": "{0}a",
|
"years_short": "{0}a",
|
||||||
|
@ -781,7 +790,8 @@
|
||||||
"error": {
|
"error": {
|
||||||
"default": "Riprova in seguito",
|
"default": "Riprova in seguito",
|
||||||
"file_too_big": "File troppo pesante [{filesize}{filesizeunit} / {allowedsize}{allowedsizeunit}]",
|
"file_too_big": "File troppo pesante [{filesize}{filesizeunit} / {allowedsize}{allowedsizeunit}]",
|
||||||
"base": "Caricamento fallito."
|
"base": "Caricamento fallito.",
|
||||||
|
"message": "Caricamento fallito: {0}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"tool_tip": {
|
"tool_tip": {
|
||||||
|
|
|
@ -50,7 +50,8 @@
|
||||||
"text_limit": "Limit tekstu",
|
"text_limit": "Limit tekstu",
|
||||||
"title": "Funkcje",
|
"title": "Funkcje",
|
||||||
"who_to_follow": "Propozycje obserwacji",
|
"who_to_follow": "Propozycje obserwacji",
|
||||||
"pleroma_chat_messages": "Czat Pleromy"
|
"pleroma_chat_messages": "Czat Pleromy",
|
||||||
|
"upload_limit": "Limit wysyłania"
|
||||||
},
|
},
|
||||||
"finder": {
|
"finder": {
|
||||||
"error_fetching_user": "Błąd przy pobieraniu profilu",
|
"error_fetching_user": "Błąd przy pobieraniu profilu",
|
||||||
|
@ -140,7 +141,8 @@
|
||||||
"no_more_notifications": "Nie masz więcej powiadomień",
|
"no_more_notifications": "Nie masz więcej powiadomień",
|
||||||
"migrated_to": "wyemigrował do",
|
"migrated_to": "wyemigrował do",
|
||||||
"reacted_with": "zareagował z {0}",
|
"reacted_with": "zareagował z {0}",
|
||||||
"follow_request": "chce ciebie obserwować"
|
"follow_request": "chce ciebie obserwować",
|
||||||
|
"error": "Błąd pobierania powiadomień: {0}"
|
||||||
},
|
},
|
||||||
"polls": {
|
"polls": {
|
||||||
"add_poll": "Dodaj ankietę",
|
"add_poll": "Dodaj ankietę",
|
||||||
|
@ -501,7 +503,8 @@
|
||||||
"outgoing": "Wiadomości wychodzące",
|
"outgoing": "Wiadomości wychodzące",
|
||||||
"incoming": "Wiadomości przychodzące",
|
"incoming": "Wiadomości przychodzące",
|
||||||
"border": "Granica"
|
"border": "Granica"
|
||||||
}
|
},
|
||||||
|
"wallpaper": "Tło"
|
||||||
},
|
},
|
||||||
"radii": {
|
"radii": {
|
||||||
"_tab_label": "Zaokrąglenie"
|
"_tab_label": "Zaokrąglenie"
|
||||||
|
@ -596,7 +599,8 @@
|
||||||
"mute_import_error": "Wystąpił błąd podczas importowania wyciszeń",
|
"mute_import_error": "Wystąpił błąd podczas importowania wyciszeń",
|
||||||
"mute_import": "Import wyciszeń",
|
"mute_import": "Import wyciszeń",
|
||||||
"mute_export_button": "Wyeksportuj swoje wyciszenia do pliku .csv",
|
"mute_export_button": "Wyeksportuj swoje wyciszenia do pliku .csv",
|
||||||
"mute_export": "Eksport wyciszeń"
|
"mute_export": "Eksport wyciszeń",
|
||||||
|
"hide_wallpaper": "Ukryj tło instancji"
|
||||||
},
|
},
|
||||||
"time": {
|
"time": {
|
||||||
"day": "{0} dzień",
|
"day": "{0} dzień",
|
||||||
|
@ -643,7 +647,8 @@
|
||||||
"up_to_date": "Na bieżąco",
|
"up_to_date": "Na bieżąco",
|
||||||
"no_more_statuses": "Brak kolejnych statusów",
|
"no_more_statuses": "Brak kolejnych statusów",
|
||||||
"no_statuses": "Brak statusów",
|
"no_statuses": "Brak statusów",
|
||||||
"reload": "Odśwież"
|
"reload": "Odśwież",
|
||||||
|
"error": "Błąd pobierania osi czasu: {0}"
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"favorites": "Ulubione",
|
"favorites": "Ulubione",
|
||||||
|
@ -667,7 +672,10 @@
|
||||||
"show_full_subject": "Pokaż cały temat",
|
"show_full_subject": "Pokaż cały temat",
|
||||||
"thread_muted_and_words": ", ma słowa:",
|
"thread_muted_and_words": ", ma słowa:",
|
||||||
"thread_muted": "Wątek wyciszony",
|
"thread_muted": "Wątek wyciszony",
|
||||||
"status_deleted": "Ten wpis został usunięty"
|
"status_deleted": "Ten wpis został usunięty",
|
||||||
|
"expand": "Rozwiń",
|
||||||
|
"nsfw": "NSFW",
|
||||||
|
"external_source": "Zewnętrzne źródło"
|
||||||
},
|
},
|
||||||
"user_card": {
|
"user_card": {
|
||||||
"approve": "Przyjmij",
|
"approve": "Przyjmij",
|
||||||
|
@ -758,7 +766,8 @@
|
||||||
"error": {
|
"error": {
|
||||||
"base": "Wysyłanie nie powiodło się.",
|
"base": "Wysyłanie nie powiodło się.",
|
||||||
"file_too_big": "Zbyt duży plik [{filesize}{filesizeunit} / {allowedsize}{allowedsizeunit}]",
|
"file_too_big": "Zbyt duży plik [{filesize}{filesizeunit} / {allowedsize}{allowedsizeunit}]",
|
||||||
"default": "Spróbuj ponownie później"
|
"default": "Spróbuj ponownie później",
|
||||||
|
"message": "Błąd wysyłania: {0}"
|
||||||
},
|
},
|
||||||
"file_size_units": {
|
"file_size_units": {
|
||||||
"B": "B",
|
"B": "B",
|
||||||
|
|
590
src/i18n/pt.json
590
src/i18n/pt.json
|
@ -5,37 +5,61 @@
|
||||||
"features_panel": {
|
"features_panel": {
|
||||||
"chat": "Chat",
|
"chat": "Chat",
|
||||||
"gopher": "Gopher",
|
"gopher": "Gopher",
|
||||||
"media_proxy": "Proxy de mídia",
|
"media_proxy": "Proxy de multimédia",
|
||||||
"scope_options": "Opções de privacidade",
|
"scope_options": "Opções de privacidade",
|
||||||
"text_limit": "Limite de caracteres",
|
"text_limit": "Limite de caracteres",
|
||||||
"title": "Funções",
|
"title": "Características",
|
||||||
"who_to_follow": "Quem seguir"
|
"who_to_follow": "Quem seguir",
|
||||||
|
"upload_limit": "Limite de carregamento",
|
||||||
|
"pleroma_chat_messages": "Chat do Pleroma"
|
||||||
},
|
},
|
||||||
"finder": {
|
"finder": {
|
||||||
"error_fetching_user": "Erro ao procurar usuário",
|
"error_fetching_user": "Erro ao pesquisar utilizador",
|
||||||
"find_user": "Buscar usuário"
|
"find_user": "Pesquisar utilizador"
|
||||||
},
|
},
|
||||||
"general": {
|
"general": {
|
||||||
"apply": "Aplicar",
|
"apply": "Aplicar",
|
||||||
"submit": "Enviar",
|
"submit": "Enviar",
|
||||||
"more": "Mais",
|
"more": "Mais",
|
||||||
"generic_error": "Houve um erro",
|
"generic_error": "Ocorreu um erro",
|
||||||
"optional": "opcional"
|
"optional": "opcional",
|
||||||
|
"peek": "Espreitar",
|
||||||
|
"close": "Fechar",
|
||||||
|
"verify": "Verificar",
|
||||||
|
"confirm": "Confirmar",
|
||||||
|
"enable": "Ativar",
|
||||||
|
"disable": "Desativar",
|
||||||
|
"cancel": "Cancelar",
|
||||||
|
"show_less": "Mostrar menos",
|
||||||
|
"show_more": "Mostrar mais",
|
||||||
|
"retry": "Tenta novamente",
|
||||||
|
"error_retry": "Por favor, tenta novamente",
|
||||||
|
"loading": "A carregar…",
|
||||||
|
"dismiss": "Ignorar"
|
||||||
},
|
},
|
||||||
"image_cropper": {
|
"image_cropper": {
|
||||||
"crop_picture": "Cortar imagem",
|
"crop_picture": "Cortar imagem",
|
||||||
"save": "Salvar",
|
"save": "Guardar",
|
||||||
"cancel": "Cancelar"
|
"cancel": "Cancelar",
|
||||||
|
"save_without_cropping": "Guardar sem recortar"
|
||||||
},
|
},
|
||||||
"login": {
|
"login": {
|
||||||
"login": "Entrar",
|
"login": "Iniciar Sessão",
|
||||||
"description": "Entrar com OAuth",
|
"description": "Iniciar sessão com OAuth",
|
||||||
"logout": "Sair",
|
"logout": "Terminar sessão",
|
||||||
"password": "Senha",
|
"password": "Palavra-passe",
|
||||||
"placeholder": "p.e. lain",
|
"placeholder": "ex. lain",
|
||||||
"register": "Registrar",
|
"register": "Registar",
|
||||||
"username": "Usuário",
|
"username": "Nome de Utilizador",
|
||||||
"hint": "Entre para participar da discussão"
|
"hint": "Entra para participar na discussão",
|
||||||
|
"heading": {
|
||||||
|
"totp": "Autenticação de dois fatores",
|
||||||
|
"recovery": "Recuperação de dois fatores"
|
||||||
|
},
|
||||||
|
"recovery_code": "Código de recuperação",
|
||||||
|
"authentication_code": "Código de autenticação",
|
||||||
|
"enter_two_factor_code": "Introduza o código de dois fatores",
|
||||||
|
"enter_recovery_code": "Introduza um código de recuperação"
|
||||||
},
|
},
|
||||||
"media_modal": {
|
"media_modal": {
|
||||||
"previous": "Anterior",
|
"previous": "Anterior",
|
||||||
|
@ -45,100 +69,125 @@
|
||||||
"about": "Sobre",
|
"about": "Sobre",
|
||||||
"back": "Voltar",
|
"back": "Voltar",
|
||||||
"chat": "Chat local",
|
"chat": "Chat local",
|
||||||
"friend_requests": "Solicitações de seguidores",
|
"friend_requests": "Pedidos de seguidores",
|
||||||
"mentions": "Menções",
|
"mentions": "Menções",
|
||||||
"dms": "Mensagens diretas",
|
"dms": "Mensagens Diretas",
|
||||||
"public_tl": "Linha do tempo pública",
|
"public_tl": "Cronologia Pública",
|
||||||
"timeline": "Linha do tempo",
|
"timeline": "Cronologia",
|
||||||
"twkn": "Toda a rede conhecida",
|
"twkn": "Rede conhecida",
|
||||||
"user_search": "Buscar usuários",
|
"user_search": "Pesquisa por Utilizadores",
|
||||||
"who_to_follow": "Quem seguir",
|
"who_to_follow": "Quem seguir",
|
||||||
"preferences": "Preferências"
|
"preferences": "Preferências",
|
||||||
|
"search": "Pesquisar",
|
||||||
|
"interactions": "Interações",
|
||||||
|
"administration": "Administração",
|
||||||
|
"chats": "Salas de Chat",
|
||||||
|
"timelines": "Cronologias",
|
||||||
|
"bookmarks": "Itens Guardados"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"broken_favorite": "Status desconhecido, buscando...",
|
"broken_favorite": "Publicação desconhecida, a procurar…",
|
||||||
"favorited_you": "favoritou sua postagem",
|
"favorited_you": "gostou do teu post",
|
||||||
"followed_you": "seguiu você",
|
"followed_you": "seguiu-te",
|
||||||
"load_older": "Carregar notificações antigas",
|
"load_older": "Carregar notificações antigas",
|
||||||
"notifications": "Notificações",
|
"notifications": "Notificações",
|
||||||
"read": "Lido!",
|
"read": "Lido!",
|
||||||
"repeated_you": "repetiu sua postagem",
|
"repeated_you": "partilhou o teu post",
|
||||||
"no_more_notifications": "Mais nenhuma notificação"
|
"no_more_notifications": "Sem mais notificações",
|
||||||
|
"reacted_with": "reagiu com {0}",
|
||||||
|
"migrated_to": "migrou para",
|
||||||
|
"follow_request": "quer seguir-te",
|
||||||
|
"error": "Erro ao obter notificações: {0}"
|
||||||
},
|
},
|
||||||
"post_status": {
|
"post_status": {
|
||||||
"new_status": "Postar novo status",
|
"new_status": "Publicar nova publicação",
|
||||||
"account_not_locked_warning": "Sua conta não é {0}. Qualquer pessoa pode te seguir e ver seus posts privados (só para seguidores).",
|
"account_not_locked_warning": "A sua conta não é {0}. Qualquer pessoa pode seguir-te e ver os seus posts privados (só para seguidores).",
|
||||||
"account_not_locked_warning_link": "restrita",
|
"account_not_locked_warning_link": "restrito",
|
||||||
"attachments_sensitive": "Marcar anexos como sensíveis",
|
"attachments_sensitive": "Marcar anexos como sensíveis",
|
||||||
"content_type": {
|
"content_type": {
|
||||||
"text/plain": "Texto puro"
|
"text/plain": "Texto puro",
|
||||||
|
"text/bbcode": "BBCode",
|
||||||
|
"text/html": "HTML",
|
||||||
|
"text/markdown": "Remarcação"
|
||||||
},
|
},
|
||||||
"content_warning": "Assunto (opcional)",
|
"content_warning": "Assunto (opcional)",
|
||||||
"default": "Acabei de chegar no Rio!",
|
"default": "Acabei de chegar a Lisboa.",
|
||||||
"direct_warning": "Este post será visível apenas para os usuários mencionados.",
|
"direct_warning": "Este post será visível apenas para os usuários mencionados.",
|
||||||
"posting": "Publicando",
|
"posting": "A publicar",
|
||||||
"scope": {
|
"scope": {
|
||||||
"direct": "Direto - Enviar somente aos usuários mencionados",
|
"direct": "Direto - Enviar somente aos usuários mencionados",
|
||||||
"private": "Apenas para seguidores - Enviar apenas para seguidores",
|
"private": "Apenas para seguidores - Enviar apenas para seguidores",
|
||||||
"public": "Público - Enviar a linhas do tempo públicas",
|
"public": "Público - Publicar em cronologias públicas",
|
||||||
"unlisted": "Não listado - Não enviar a linhas do tempo públicas"
|
"unlisted": "Não listado - Não exibir em cronologias públicas"
|
||||||
}
|
},
|
||||||
|
"scope_notice": {
|
||||||
|
"unlisted": "Esta publicação não será visível na Cronologia pública e na Rede conhecida por todos",
|
||||||
|
"private": "Esta publicação será apenas visível para os teus seguidores",
|
||||||
|
"public": "Esta publicação será visível para todos"
|
||||||
|
},
|
||||||
|
"empty_status_error": "Não consegues publicar um post vazio e sem ficheiros",
|
||||||
|
"preview_empty": "Vazio",
|
||||||
|
"preview": "Pré-visualização",
|
||||||
|
"media_description": "Descrição da multimédia",
|
||||||
|
"media_description_error": "Falha ao atualizar ficheiro, tente novamente",
|
||||||
|
"direct_warning_to_first_only": "Esta publicação só será visível para os utilizadores mencionados no início da mensagem.",
|
||||||
|
"direct_warning_to_all": "Esta publicação será visível para todos os utilizadores mencionados."
|
||||||
},
|
},
|
||||||
"registration": {
|
"registration": {
|
||||||
"bio": "Biografia",
|
"bio": "Biografia",
|
||||||
"email": "Correio eletrônico",
|
"email": "Endereço de e-mail",
|
||||||
"fullname": "Nome para exibição",
|
"fullname": "Nome para exibição",
|
||||||
"password_confirm": "Confirmação de senha",
|
"password_confirm": "Confirmação de palavra-passe",
|
||||||
"registration": "Registro",
|
"registration": "Registo",
|
||||||
"token": "Código do convite",
|
"token": "Código do convite",
|
||||||
"captcha": "CAPTCHA",
|
"captcha": "CAPTCHA",
|
||||||
"new_captcha": "Clique na imagem para carregar um novo captcha",
|
"new_captcha": "Clique na imagem para carregar um novo captcha",
|
||||||
"username_placeholder": "p. ex. lain",
|
"username_placeholder": "ex. lain",
|
||||||
"fullname_placeholder": "p. ex. Lain Iwakura",
|
"fullname_placeholder": "ex. Lain Iwakura",
|
||||||
"bio_placeholder": "e.g.\nOi, sou Lain\nSou uma garota que vive no subúrbio do Japão. Você deve me conhecer da Rede.",
|
"bio_placeholder": "ex.\nOlá, sou a Lain\nSou uma menina de anime que vive no Japão suburbano. Devem conhecer-me do \"the Wired\".",
|
||||||
"validations": {
|
"validations": {
|
||||||
"username_required": "não pode ser deixado em branco",
|
"username_required": "não pode ser deixado em branco",
|
||||||
"fullname_required": "não pode ser deixado em branco",
|
"fullname_required": "não pode ser deixado em branco",
|
||||||
"email_required": "não pode ser deixado em branco",
|
"email_required": "não pode ser deixado em branco",
|
||||||
"password_required": "não pode ser deixado em branco",
|
"password_required": "não pode ser deixado em branco",
|
||||||
"password_confirmation_required": "não pode ser deixado em branco",
|
"password_confirmation_required": "não pode ser deixado em branco",
|
||||||
"password_confirmation_match": "deve ser idêntica à senha"
|
"password_confirmation_match": "deve corresponder à palavra-passe"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
"app_name": "Nome do aplicativo",
|
"app_name": "Nome da aplicação",
|
||||||
"attachmentRadius": "Anexos",
|
"attachmentRadius": "Anexos",
|
||||||
"attachments": "Anexos",
|
"attachments": "Anexos",
|
||||||
"avatar": "Avatar",
|
"avatar": "Avatar",
|
||||||
"avatarAltRadius": "Avatares (Notificações)",
|
"avatarAltRadius": "Avatares (Notificações)",
|
||||||
"avatarRadius": "Avatares",
|
"avatarRadius": "Avatares",
|
||||||
"background": "Pano de Fundo",
|
"background": "Imagem de Fundo",
|
||||||
"bio": "Biografia",
|
"bio": "Biografia",
|
||||||
"blocks_tab": "Bloqueios",
|
"blocks_tab": "Bloqueios",
|
||||||
"btnRadius": "Botões",
|
"btnRadius": "Botões",
|
||||||
"cBlue": "Azul (Responder, seguir)",
|
"cBlue": "Azul (Responder, seguir)",
|
||||||
"cGreen": "Verde (Repetir)",
|
"cGreen": "Verde (Partilhar)",
|
||||||
"cOrange": "Laranja (Favoritar)",
|
"cOrange": "Laranja (Favoritar)",
|
||||||
"cRed": "Vermelho (Cancelar)",
|
"cRed": "Vermelho (Cancelar)",
|
||||||
"change_password": "Mudar senha",
|
"change_password": "Mudar palavra-passe",
|
||||||
"change_password_error": "Houve um erro ao modificar sua senha.",
|
"change_password_error": "Ocorreu um erro ao modificar a sua palavra-passe.",
|
||||||
"changed_password": "Senha modificada com sucesso!",
|
"changed_password": "Palavra-passe modificada com sucesso!",
|
||||||
"collapse_subject": "Esconder posts com assunto",
|
"collapse_subject": "Esconder posts com assunto",
|
||||||
"composing": "Escrita",
|
"composing": "Escrita",
|
||||||
"confirm_new_password": "Confirmar nova senha",
|
"confirm_new_password": "Confirmar nova palavra-passe",
|
||||||
"current_avatar": "Seu avatar atual",
|
"current_avatar": "Seu avatar atual",
|
||||||
"current_password": "Sua senha atual",
|
"current_password": "Palavra-passe atual",
|
||||||
"current_profile_banner": "Sua capa de perfil atual",
|
"current_profile_banner": "Sua capa de perfil atual",
|
||||||
"data_import_export_tab": "Importação/exportação de dados",
|
"data_import_export_tab": "Importação/exportação de dados",
|
||||||
"default_vis": "Opção de privacidade padrão",
|
"default_vis": "Opção de privacidade padrão",
|
||||||
"delete_account": "Deletar conta",
|
"delete_account": "Eliminar conta",
|
||||||
"delete_account_description": "Deletar sua conta e mensagens permanentemente.",
|
"delete_account_description": "Apagar os seus dados permanentemente e desativar a sua conta.",
|
||||||
"delete_account_error": "Houve um problema ao deletar sua conta. Se ele persistir, por favor entre em contato com o/a administrador/a da instância.",
|
"delete_account_error": "Ocorreu um erro ao remover a sua conta. Se este persistir, por favor entre em contato com o/a administrador/a da instância.",
|
||||||
"delete_account_instructions": "Digite sua senha no campo abaixo para confirmar a exclusão da conta.",
|
"delete_account_instructions": "Escreva a sua palavra-passe no campo abaixo para confirmar a remoção da conta.",
|
||||||
"avatar_size_instruction": "O tamanho mínimo recomendado para imagens de avatar é 150x150 pixels.",
|
"avatar_size_instruction": "O tamanho mínimo recomendado para imagens de avatar é 150x150 pixels.",
|
||||||
"export_theme": "Salvar predefinições",
|
"export_theme": "Guardar predefinições",
|
||||||
"filtering": "Filtragem",
|
"filtering": "Filtragem",
|
||||||
"filtering_explanation": "Todas as postagens contendo estas palavras serão silenciadas; uma palavra por linha.",
|
"filtering_explanation": "Todas as publicações que contenham estas palavras serão silenciadas; uma palavra por linha",
|
||||||
"follow_export": "Exportar quem você segue",
|
"follow_export": "Exportar quem você segue",
|
||||||
"follow_export_button": "Exportar quem você segue para um arquivo CSV",
|
"follow_export_button": "Exportar quem você segue para um arquivo CSV",
|
||||||
"follow_export_processing": "Processando. Em breve você receberá a solicitação de download do arquivo",
|
"follow_export_processing": "Processando. Em breve você receberá a solicitação de download do arquivo",
|
||||||
|
@ -148,7 +197,7 @@
|
||||||
"foreground": "Primeiro Plano",
|
"foreground": "Primeiro Plano",
|
||||||
"general": "Geral",
|
"general": "Geral",
|
||||||
"hide_attachments_in_convo": "Ocultar anexos em conversas",
|
"hide_attachments_in_convo": "Ocultar anexos em conversas",
|
||||||
"hide_attachments_in_tl": "Ocultar anexos na linha do tempo.",
|
"hide_attachments_in_tl": "Ocultar anexos na cronologia",
|
||||||
"max_thumbnails": "Número máximo de miniaturas por post",
|
"max_thumbnails": "Número máximo de miniaturas por post",
|
||||||
"hide_isp": "Esconder painel específico da instância",
|
"hide_isp": "Esconder painel específico da instância",
|
||||||
"preload_images": "Pré-carregar imagens",
|
"preload_images": "Pré-carregar imagens",
|
||||||
|
@ -159,7 +208,7 @@
|
||||||
"import_followers_from_a_csv_file": "Importe seguidores a partir de um arquivo CSV",
|
"import_followers_from_a_csv_file": "Importe seguidores a partir de um arquivo CSV",
|
||||||
"import_theme": "Carregar pré-definição",
|
"import_theme": "Carregar pré-definição",
|
||||||
"inputRadius": "Campos de entrada",
|
"inputRadius": "Campos de entrada",
|
||||||
"checkboxRadius": "Checkboxes",
|
"checkboxRadius": "Caixas de seleção",
|
||||||
"instance_default": "(padrão: {value})",
|
"instance_default": "(padrão: {value})",
|
||||||
"instance_default_simple": "(padrão)",
|
"instance_default_simple": "(padrão)",
|
||||||
"interface": "Interface",
|
"interface": "Interface",
|
||||||
|
@ -171,16 +220,16 @@
|
||||||
"loop_video": "Repetir vídeos",
|
"loop_video": "Repetir vídeos",
|
||||||
"loop_video_silent_only": "Repetir apenas vídeos sem som (como os \"gifs\" do Mastodon)",
|
"loop_video_silent_only": "Repetir apenas vídeos sem som (como os \"gifs\" do Mastodon)",
|
||||||
"mutes_tab": "Silenciados",
|
"mutes_tab": "Silenciados",
|
||||||
"play_videos_in_modal": "Tocar vídeos diretamente no visualizador de mídia",
|
"play_videos_in_modal": "Reproduzir vídeos diretamente no visualizador de multimédia",
|
||||||
"use_contain_fit": "Não cortar o anexo na miniatura",
|
"use_contain_fit": "Não cortar o anexo na miniatura",
|
||||||
"name": "Nome",
|
"name": "Nome",
|
||||||
"name_bio": "Nome & Biografia",
|
"name_bio": "Nome & Biografia",
|
||||||
"new_password": "Nova senha",
|
"new_password": "Nova palavra-passe",
|
||||||
"notification_visibility": "Tipos de notificação para mostrar",
|
"notification_visibility": "Tipos de notificação para mostrar",
|
||||||
"notification_visibility_follows": "Seguidas",
|
"notification_visibility_follows": "Seguidas",
|
||||||
"notification_visibility_likes": "Favoritos",
|
"notification_visibility_likes": "Favoritos",
|
||||||
"notification_visibility_mentions": "Menções",
|
"notification_visibility_mentions": "Menções",
|
||||||
"notification_visibility_repeats": "Repetições",
|
"notification_visibility_repeats": "Partilhas",
|
||||||
"no_rich_text_description": "Remover formatação de todos os posts",
|
"no_rich_text_description": "Remover formatação de todos os posts",
|
||||||
"no_blocks": "Sem bloqueios",
|
"no_blocks": "Sem bloqueios",
|
||||||
"no_mutes": "Sem silenciados",
|
"no_mutes": "Sem silenciados",
|
||||||
|
@ -188,7 +237,7 @@
|
||||||
"hide_followers_description": "Não mostrar quem me segue",
|
"hide_followers_description": "Não mostrar quem me segue",
|
||||||
"show_admin_badge": "Mostrar título de Administrador em meu perfil",
|
"show_admin_badge": "Mostrar título de Administrador em meu perfil",
|
||||||
"show_moderator_badge": "Mostrar título de Moderador em meu perfil",
|
"show_moderator_badge": "Mostrar título de Moderador em meu perfil",
|
||||||
"nsfw_clickthrough": "Habilitar clique para ocultar anexos sensíveis",
|
"nsfw_clickthrough": "Ativar clique em anexos e pré-visualizações de links para ocultar anexos NSFW",
|
||||||
"oauth_tokens": "Token OAuth",
|
"oauth_tokens": "Token OAuth",
|
||||||
"token": "Token",
|
"token": "Token",
|
||||||
"refresh_token": "Atualizar Token",
|
"refresh_token": "Atualizar Token",
|
||||||
|
@ -201,7 +250,7 @@
|
||||||
"profile_banner": "Capa de perfil",
|
"profile_banner": "Capa de perfil",
|
||||||
"profile_tab": "Perfil",
|
"profile_tab": "Perfil",
|
||||||
"radii_help": "Arredondar arestas da interface (em pixel)",
|
"radii_help": "Arredondar arestas da interface (em pixel)",
|
||||||
"replies_in_timeline": "Respostas na linha do tempo",
|
"replies_in_timeline": "Respostas na cronologia",
|
||||||
"reply_visibility_all": "Mostrar todas as respostas",
|
"reply_visibility_all": "Mostrar todas as respostas",
|
||||||
"reply_visibility_following": "Só mostrar respostas direcionadas a mim ou a usuários que sigo",
|
"reply_visibility_following": "Só mostrar respostas direcionadas a mim ou a usuários que sigo",
|
||||||
"reply_visibility_self": "Só mostrar respostas direcionadas a mim",
|
"reply_visibility_self": "Só mostrar respostas direcionadas a mim",
|
||||||
|
@ -215,7 +264,7 @@
|
||||||
"settings": "Configurações",
|
"settings": "Configurações",
|
||||||
"subject_input_always_show": "Sempre mostrar campo de assunto",
|
"subject_input_always_show": "Sempre mostrar campo de assunto",
|
||||||
"subject_line_behavior": "Copiar assunto ao responder",
|
"subject_line_behavior": "Copiar assunto ao responder",
|
||||||
"subject_line_email": "Como em email: \"re: assunto\"",
|
"subject_line_email": "Como num e-mail: \"re: assunto\"",
|
||||||
"subject_line_mastodon": "Como o Mastodon: copiar como está",
|
"subject_line_mastodon": "Como o Mastodon: copiar como está",
|
||||||
"subject_line_noop": "Não copiar",
|
"subject_line_noop": "Não copiar",
|
||||||
"post_status_content_type": "Tipo de conteúdo do status",
|
"post_status_content_type": "Tipo de conteúdo do status",
|
||||||
|
@ -225,7 +274,7 @@
|
||||||
"theme": "Tema",
|
"theme": "Tema",
|
||||||
"theme_help": "Use cores em código hexadecimal (#rrggbb) para personalizar seu esquema de cores.",
|
"theme_help": "Use cores em código hexadecimal (#rrggbb) para personalizar seu esquema de cores.",
|
||||||
"theme_help_v2_1": "Você também pode sobrescrever as cores e opacidade de alguns componentes ao modificar o checkbox, use \"Limpar todos\" para limpar todas as modificações.",
|
"theme_help_v2_1": "Você também pode sobrescrever as cores e opacidade de alguns componentes ao modificar o checkbox, use \"Limpar todos\" para limpar todas as modificações.",
|
||||||
"theme_help_v2_2": "Alguns ícones sob registros são indicadores de fundo/contraste de textos, passe por cima para informações detalhadas. Tenha ciência de que os indicadores de contraste não funcionam muito bem com transparência.",
|
"theme_help_v2_2": "Alguns ícones em registo são indicadores de fundo/contraste de textos, passe por cima para obter informações detalhadas. Tenha em atenção que os indicadores de contraste não funcionam muito bem com transparência.",
|
||||||
"tooltipRadius": "Dicas/alertas",
|
"tooltipRadius": "Dicas/alertas",
|
||||||
"upload_a_photo": "Enviar uma foto",
|
"upload_a_photo": "Enviar uma foto",
|
||||||
"user_settings": "Configurações de Usuário",
|
"user_settings": "Configurações de Usuário",
|
||||||
|
@ -245,7 +294,24 @@
|
||||||
"save_load_hint": "Manter as opções preserva as opções atuais ao selecionar ou carregar temas; também salva as opções ao exportar um tempo. Quanto todos os campos estiverem desmarcados, tudo será salvo ao exportar o tema.",
|
"save_load_hint": "Manter as opções preserva as opções atuais ao selecionar ou carregar temas; também salva as opções ao exportar um tempo. Quanto todos os campos estiverem desmarcados, tudo será salvo ao exportar o tema.",
|
||||||
"reset": "Restaurar o padrão",
|
"reset": "Restaurar o padrão",
|
||||||
"clear_all": "Limpar tudo",
|
"clear_all": "Limpar tudo",
|
||||||
"clear_opacity": "Limpar opacidade"
|
"clear_opacity": "Limpar opacidade",
|
||||||
|
"help": {
|
||||||
|
"upgraded_from_v2": "O PleromaFE foi atualizado, a aparência do tema poderá ser um pouco diferente.",
|
||||||
|
"snapshot_source_mismatch": "Conflito de versões: o mais provável é que o FE tenha revertido e voltado a atualizar, foi alterado o tema numa versão anterior do FE, o mais provável é desejar utilizar a versão anterior; caso contrário, utilize a nova versão.",
|
||||||
|
"migration_napshot_gone": "Por algum motivo, a pré-visualização estava em falta, algumas coisas poderão parecer diferentes do que se lembra.",
|
||||||
|
"migration_snapshot_ok": "Para estar seguro, foi carregada uma versão de pré-visualização do tema. Pode tentar carregar dados do tema.",
|
||||||
|
"fe_downgraded": "Versão do PleromaFE revertida.",
|
||||||
|
"fe_upgraded": "O criador de temas do PleromaFE foi atualizado depois da atualização da versão.",
|
||||||
|
"snapshot_missing": "Não existia nenhuma pré-visualização do tema no ficheiro, então pode parecer diferente do previsto originalmente.",
|
||||||
|
"snapshot_present": "Foi carregada uma pré-visualização do tema, todos os valores são substituídos. Caso contrário, pode carregar o tema completo.",
|
||||||
|
"older_version_imported": "O ficheiro que importaste foi criado numa versão antiga do FE.",
|
||||||
|
"future_version_imported": "O ficheiro que importaste foi criado para uma versão mais recente do FE.",
|
||||||
|
"v2_imported": "O ficheiro que importaste foi feito para uma versão antiga do FE. Tentamos maximizar a compatibilidade, porém, poderão existir incongruências."
|
||||||
|
},
|
||||||
|
"use_source": "Nova versão",
|
||||||
|
"use_snapshot": "Versão antiga",
|
||||||
|
"keep_as_is": "Manter como está",
|
||||||
|
"load_theme": "Carregar tema"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"color": "Cor",
|
"color": "Cor",
|
||||||
|
@ -280,7 +346,27 @@
|
||||||
"borders": "Bordas",
|
"borders": "Bordas",
|
||||||
"buttons": "Botões",
|
"buttons": "Botões",
|
||||||
"inputs": "Caixas de entrada",
|
"inputs": "Caixas de entrada",
|
||||||
"faint_text": "Texto esmaecido"
|
"faint_text": "Texto esmaecido",
|
||||||
|
"chat": {
|
||||||
|
"border": "Borda",
|
||||||
|
"outgoing": "Enviadas",
|
||||||
|
"incoming": "Recebidas"
|
||||||
|
},
|
||||||
|
"tabs": "Abas",
|
||||||
|
"toggled": "Alternado",
|
||||||
|
"disabled": "Desativado",
|
||||||
|
"selectedMenu": "Elemento do menu seleccionado",
|
||||||
|
"selectedPost": "Publicação seleccionada",
|
||||||
|
"pressed": "Pressionado",
|
||||||
|
"highlight": "Elementos destacados",
|
||||||
|
"icons": "Ícones",
|
||||||
|
"poll": "Gráfico da sondagem",
|
||||||
|
"wallpaper": "Fundo de ecrã",
|
||||||
|
"underlay": "Sublinhado",
|
||||||
|
"popover": "Sugestões, menus, etiquetas",
|
||||||
|
"post": "Publicações/Bios",
|
||||||
|
"alert_neutral": "Neutro",
|
||||||
|
"alert_warning": "Precaução"
|
||||||
},
|
},
|
||||||
"radii": {
|
"radii": {
|
||||||
"_tab_label": "Arredondado"
|
"_tab_label": "Arredondado"
|
||||||
|
@ -298,7 +384,7 @@
|
||||||
"always_drop_shadow": "Atenção, esta sombra sempre utiliza {0} quando compatível com o navegador.",
|
"always_drop_shadow": "Atenção, esta sombra sempre utiliza {0} quando compatível com o navegador.",
|
||||||
"drop_shadow_syntax": "{0} não é compatível com o parâmetro {1} e a palavra-chave {2}.",
|
"drop_shadow_syntax": "{0} não é compatível com o parâmetro {1} e a palavra-chave {2}.",
|
||||||
"avatar_inset": "Tenha em mente que combinar as sombras de inserção e a não-inserção em avatares pode causar resultados inesperados em avatares transparentes.",
|
"avatar_inset": "Tenha em mente que combinar as sombras de inserção e a não-inserção em avatares pode causar resultados inesperados em avatares transparentes.",
|
||||||
"spread_zero": "Sombras com uma difusão > 0 aparecerão como se fossem definidas como 0.",
|
"spread_zero": "Sombras com difusão > 0 aparecerão como se fossem definidas como zero",
|
||||||
"inset_classic": "Sombras de inserção utilizarão {0}"
|
"inset_classic": "Sombras de inserção utilizarão {0}"
|
||||||
},
|
},
|
||||||
"components": {
|
"components": {
|
||||||
|
@ -313,7 +399,8 @@
|
||||||
"buttonPressed": "Botão (pressionado)",
|
"buttonPressed": "Botão (pressionado)",
|
||||||
"buttonPressedHover": "Botão (pressionado+em cima)",
|
"buttonPressedHover": "Botão (pressionado+em cima)",
|
||||||
"input": "Campo de entrada"
|
"input": "Campo de entrada"
|
||||||
}
|
},
|
||||||
|
"hintV3": "Para as sombras, também pode usar a notação {0} para usar outro espaço de cor."
|
||||||
},
|
},
|
||||||
"fonts": {
|
"fonts": {
|
||||||
"_tab_label": "Fontes",
|
"_tab_label": "Fontes",
|
||||||
|
@ -336,30 +423,143 @@
|
||||||
"button": "Botão",
|
"button": "Botão",
|
||||||
"text": "Vários {0} e {1}",
|
"text": "Vários {0} e {1}",
|
||||||
"mono": "conteúdo",
|
"mono": "conteúdo",
|
||||||
"input": "Acabei de chegar no Rio!",
|
"input": "Acabei de chegar a Lisboa.",
|
||||||
"faint_link": "manual útil",
|
"faint_link": "manual útil",
|
||||||
"fine_print": "Leia nosso {0} para não aprender nada!",
|
"fine_print": "Leia nosso {0} para não aprender nada!",
|
||||||
"header_faint": "Está ok!",
|
"header_faint": "Isto está bem",
|
||||||
"checkbox": "Li os termos e condições",
|
"checkbox": "Li os termos e condições",
|
||||||
"link": "um belo link"
|
"link": "um belo link"
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"mfa": {
|
||||||
|
"scan": {
|
||||||
|
"secret_code": "Chave",
|
||||||
|
"title": "Scan",
|
||||||
|
"desc": "Utilizando a sua aplicação de dois fatores, faça scan deste código QR ou insira a chave de texto:"
|
||||||
|
},
|
||||||
|
"authentication_methods": "Métodos de autenticação",
|
||||||
|
"recovery_codes": "Códigos de recuperação.",
|
||||||
|
"generate_new_recovery_codes": "Gerar novos códigos de recuperação",
|
||||||
|
"confirm_and_enable": "Confirmar e ativar a palavra-passe de utilização única",
|
||||||
|
"otp": "Palavra-passe de utilização única",
|
||||||
|
"verify": {
|
||||||
|
"desc": "Para ativar a autenticação de dois fatores, introduza o código da sua aplicação de dois fatores:"
|
||||||
|
},
|
||||||
|
"recovery_codes_warning": "Anote os códigos ou armazene-os num lugar seguro - caso contrário, não os voltará a ver. Se perder acesso à sua aplicação de dois fatores e aos códigos de recuperação, a sua conta ficará bloqueada.",
|
||||||
|
"waiting_a_recovery_codes": "A receber códigos de recuperação…",
|
||||||
|
"warning_of_generate_new_codes": "Quando gera novos códigos de recuperação, os antigos deixam de funcionar.",
|
||||||
|
"title": "Autenticação de Dois Fatores",
|
||||||
|
"wait_pre_setup_otp": "pré-configuração de palavra-passe de utilização única",
|
||||||
|
"setup_otp": "Configurar palavra-passe de utilização única"
|
||||||
|
},
|
||||||
|
"security": "Segurança",
|
||||||
|
"mute_import_error": "Erro ao importar os silenciados",
|
||||||
|
"mute_import": "Importar silenciados",
|
||||||
|
"mute_export_button": "Exporta os silenciados para um ficheiro csv",
|
||||||
|
"mute_export": "Exportar silenciados",
|
||||||
|
"blocks_imported": "Lista de utilizadores bloqueados importada! O processo pode demorar alguns instantes.",
|
||||||
|
"block_import_error": "Erro ao importar a lista de utilizadores bloqueados",
|
||||||
|
"block_import": "Importar utilizadores bloqueados",
|
||||||
|
"block_export_button": "Exporta a tua lista de utilizadores bloqueados para um ficheiro csv",
|
||||||
|
"block_export": "Exportar utilizadores bloqueados",
|
||||||
|
"enter_current_password_to_confirm": "Introduza a sua palavra-passe atual para confirmar a sua identidade",
|
||||||
|
"mutes_and_blocks": "Silenciados e Bloqueados",
|
||||||
|
"chatMessageRadius": "Mensagem de texto",
|
||||||
|
"changed_email": "Endereço de e-mail modificado com sucesso!",
|
||||||
|
"change_email_error": "Ocorreu um erro ao modificar o seu endereço de e-mail.",
|
||||||
|
"change_email": "Mudar Endereço de E-mail",
|
||||||
|
"bot": "Esta uma conta robô",
|
||||||
|
"import_mutes_from_a_csv_file": "Importar silenciados de um ficheiro csv",
|
||||||
|
"mutes_imported": "Silenciados importados! Processá-los pode demorar alguns instantes.",
|
||||||
|
"allow_following_move": "Permitir seguimento automático quando a conta for migrada para outra instância",
|
||||||
|
"domain_mutes": "Domínios",
|
||||||
|
"discoverable": "Permitir a descoberta desta conta em resultados de busca e outros serviços",
|
||||||
|
"emoji_reactions_on_timeline": "Mostrar reações de emoji na timeline",
|
||||||
|
"hide_muted_posts": "Esconder posts de utilizadores silenciados",
|
||||||
|
"hide_follows_count_description": "Não mostrar o número de contas seguidas",
|
||||||
|
"hide_followers_count_description": "Não mostrar o número de seguidores",
|
||||||
|
"notification_visibility_emoji_reactions": "Reações",
|
||||||
|
"new_email": "Novo endereço de e-mail",
|
||||||
|
"profile_fields": {
|
||||||
|
"value": "Conteúdo",
|
||||||
|
"add_field": "Adicionar campo",
|
||||||
|
"label": "Metadados do perfil",
|
||||||
|
"name": "Etiqueta"
|
||||||
|
},
|
||||||
|
"import_blocks_from_a_csv_file": "Importar bloqueados a partir de um arquivo CSV",
|
||||||
|
"hide_wallpaper": "Esconder papel de parede da instância",
|
||||||
|
"notification_setting_privacy": "Privacidade",
|
||||||
|
"notification_setting_filters": "Filtros",
|
||||||
|
"fun": "Divertido",
|
||||||
|
"user_mutes": "Utilizadores",
|
||||||
|
"type_domains_to_mute": "Pesquisar domínios para silenciar",
|
||||||
|
"useStreamingApiWarning": "(não recomendado, experimental, pode omitir publicações)",
|
||||||
|
"useStreamingApi": "Receber publicações e notificações em tempo real",
|
||||||
|
"minimal_scopes_mode": "Minimizar as opções de publicação",
|
||||||
|
"search_user_to_mute": "Pesquisar utilizadores que pretende silenciar",
|
||||||
|
"search_user_to_block": "Pesquisa quais utilizadores desejas bloquear",
|
||||||
|
"notification_setting_hide_notification_contents": "Ocultar o remetente e o conteúdo das notificações push",
|
||||||
|
"version": {
|
||||||
|
"frontend_version": "Versão do Frontend",
|
||||||
|
"backend_version": "Versão do Backend",
|
||||||
|
"title": "Versão"
|
||||||
|
},
|
||||||
|
"notification_blocks": "Bloquear um utilizador previne todas as notificações, bem como as desativa.",
|
||||||
|
"notification_mutes": "Para deixar de receber notificações de um utilizador específico, silencia-o.",
|
||||||
|
"notification_setting_block_from_strangers": "Bloqueia as notificações de utilizadores que não segues",
|
||||||
|
"greentext": "Texto verde (meme arrows)",
|
||||||
|
"virtual_scrolling": "Otimizar a apresentação da cronologia",
|
||||||
|
"reset_background_confirm": "Tens a certeza que desejas redefinir o fundo?",
|
||||||
|
"reset_banner_confirm": "Tens a certeza que desejas redefinir a imagem do cabeçalho?",
|
||||||
|
"reset_avatar_confirm": "Tens a certeza que desejas redefinir o avatar?",
|
||||||
|
"reset_profile_banner": "Redefinir imagem do cabeçalho do perfil",
|
||||||
|
"reset_profile_background": "Redefinir fundo de perfil",
|
||||||
|
"reset_avatar": "Redefinir avatar",
|
||||||
|
"autohide_floating_post_button": "Automaticamente ocultar o botão 'Nova Publicação' (telemóvel)",
|
||||||
|
"notification_visibility_moves": "Utilizador Migrado",
|
||||||
|
"accent": "Destaque",
|
||||||
|
"pad_emoji": "Preencher espaços ao adicionar emojis do seletor"
|
||||||
},
|
},
|
||||||
"timeline": {
|
"timeline": {
|
||||||
"collapse": "Esconder",
|
"collapse": "Esconder",
|
||||||
"conversation": "Conversa",
|
"conversation": "Conversa",
|
||||||
"error_fetching": "Erro ao buscar atualizações",
|
"error_fetching": "Erro ao buscar atualizações",
|
||||||
"load_older": "Carregar postagens antigas",
|
"load_older": "Carregar postagens antigas",
|
||||||
"no_retweet_hint": "Posts apenas para seguidores ou diretos não podem ser repetidos",
|
"no_retweet_hint": "Posts apenas para seguidores ou diretos não podem ser partilhados",
|
||||||
"repeated": "Repetido",
|
"repeated": "partilhado",
|
||||||
"show_new": "Mostrar novas",
|
"show_new": "Mostrar novas",
|
||||||
"up_to_date": "Atualizado",
|
"up_to_date": "Atualizado",
|
||||||
"no_more_statuses": "Sem mais posts",
|
"no_more_statuses": "Sem mais posts",
|
||||||
"no_statuses": "Sem posts"
|
"no_statuses": "Sem posts",
|
||||||
|
"reload": "Recarregar",
|
||||||
|
"error": "Erro a obter a cronologia: {0}"
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"reply_to": "Responder a",
|
"reply_to": "Responder a",
|
||||||
"replies_list": "Respostas:"
|
"replies_list": "Respostas:",
|
||||||
|
"unbookmark": "Remover post dos Items Guardados",
|
||||||
|
"expand": "Expandir",
|
||||||
|
"nsfw": "NSFW (Não apropriado para trabalho)",
|
||||||
|
"status_deleted": "Esta publicação foi apagada",
|
||||||
|
"hide_content": "Ocultar o conteúdo",
|
||||||
|
"show_content": "Mostrar o conteúdo",
|
||||||
|
"hide_full_subject": "Ocultar o assunto completo",
|
||||||
|
"show_full_subject": "Mostrar o assunto completo",
|
||||||
|
"thread_muted_and_words": ", contém:",
|
||||||
|
"thread_muted": "Conversação silenciada",
|
||||||
|
"external_source": "Fonte externa",
|
||||||
|
"copy_link": "Copiar o link do post",
|
||||||
|
"status_unavailable": "Publicação indisponível",
|
||||||
|
"unmute_conversation": "Mostrar a conversação",
|
||||||
|
"mute_conversation": "Silenciar a conversação",
|
||||||
|
"delete_confirm": "Tens a certeza que desejas apagar a publicação?",
|
||||||
|
"bookmark": "Guardar",
|
||||||
|
"pin": "Fixar no perfil",
|
||||||
|
"pinned": "Afixado",
|
||||||
|
"unpin": "Desafixar do perfil",
|
||||||
|
"delete": "Eliminar publicação",
|
||||||
|
"repeats": "Partilhados",
|
||||||
|
"favorites": "Favoritos"
|
||||||
},
|
},
|
||||||
"user_card": {
|
"user_card": {
|
||||||
"approve": "Aprovar",
|
"approve": "Aprovar",
|
||||||
|
@ -377,21 +577,52 @@
|
||||||
"following": "Seguindo!",
|
"following": "Seguindo!",
|
||||||
"follows_you": "Segue você!",
|
"follows_you": "Segue você!",
|
||||||
"its_you": "É você!",
|
"its_you": "É você!",
|
||||||
"media": "Mídia",
|
"media": "Multimédia",
|
||||||
"mute": "Silenciar",
|
"mute": "Silenciar",
|
||||||
"muted": "Silenciado",
|
"muted": "Silenciado",
|
||||||
"per_day": "por dia",
|
"per_day": "por dia",
|
||||||
"remote_follow": "Seguir remotamente",
|
"remote_follow": "Seguir remotamente",
|
||||||
"statuses": "Postagens",
|
"statuses": "Postagens",
|
||||||
"unblock": "Desbloquear",
|
"unblock": "Desbloquear",
|
||||||
"unblock_progress": "Desbloqueando...",
|
"unblock_progress": "A desbloquear…",
|
||||||
"block_progress": "Bloqueando...",
|
"block_progress": "A bloquear…",
|
||||||
"unmute": "Retirar silêncio",
|
"unmute": "Retirar silêncio",
|
||||||
"unmute_progress": "Retirando silêncio...",
|
"unmute_progress": "A retirar silêncio…",
|
||||||
"mute_progress": "Silenciando..."
|
"mute_progress": "A silenciar…",
|
||||||
|
"admin_menu": {
|
||||||
|
"delete_user_confirmation": "Tens a certeza? Esta ação não pode ser revertida.",
|
||||||
|
"delete_user": "Eliminar utilizador",
|
||||||
|
"quarantine": "Não permitir publicações de utilizadores de instâncias remotas",
|
||||||
|
"disable_any_subscription": "Não permitir que nenhum utilizador te siga",
|
||||||
|
"disable_remote_subscription": "Não permitir seguidores de instâncias remotas",
|
||||||
|
"sandbox": "Forçar publicações apenas para seguidores",
|
||||||
|
"force_unlisted": "Forçar publicações como não listadas",
|
||||||
|
"strip_media": "Eliminar ficheiros multimédia das publicações",
|
||||||
|
"force_nsfw": "Marcar todas as publicações como NSFW (não apropriado para o trabalho)",
|
||||||
|
"delete_account": "Eliminar Conta",
|
||||||
|
"deactivate_account": "Desativar conta",
|
||||||
|
"activate_account": "Ativar conta",
|
||||||
|
"revoke_moderator": "Revogar permissões de Moderador",
|
||||||
|
"grant_moderator": "Conceder permissões de Moderador",
|
||||||
|
"revoke_admin": "Revogar permissões de Admin",
|
||||||
|
"grant_admin": "Conceder permissões de Admin",
|
||||||
|
"moderation": "Moderação"
|
||||||
|
},
|
||||||
|
"show_repeats": "Mostrar partilhas",
|
||||||
|
"hide_repeats": "Ocultar partilhas",
|
||||||
|
"unsubscribe": "Retirar subscrição",
|
||||||
|
"subscribe": "Subscrever",
|
||||||
|
"report": "Denunciar",
|
||||||
|
"message": "Mensagem",
|
||||||
|
"mention": "Mencionar",
|
||||||
|
"hidden": "Ocultar",
|
||||||
|
"roles": {
|
||||||
|
"moderator": "Moderador",
|
||||||
|
"admin": "Admin"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"user_profile": {
|
"user_profile": {
|
||||||
"timeline_title": "Linha do tempo do usuário",
|
"timeline_title": "Cronologia do Utilizador",
|
||||||
"profile_does_not_exist": "Desculpe, este perfil não existe.",
|
"profile_does_not_exist": "Desculpe, este perfil não existe.",
|
||||||
"profile_loading_error": "Desculpe, houve um erro ao carregar este perfil."
|
"profile_loading_error": "Desculpe, houve um erro ao carregar este perfil."
|
||||||
},
|
},
|
||||||
|
@ -400,17 +631,22 @@
|
||||||
"who_to_follow": "Quem seguir"
|
"who_to_follow": "Quem seguir"
|
||||||
},
|
},
|
||||||
"tool_tip": {
|
"tool_tip": {
|
||||||
"media_upload": "Envio de mídia",
|
"media_upload": "Envio de multimédia",
|
||||||
"repeat": "Repetir",
|
"repeat": "Partilhar",
|
||||||
"reply": "Responder",
|
"reply": "Responder",
|
||||||
"favorite": "Favoritar",
|
"favorite": "Favoritar",
|
||||||
"user_settings": "Configurações do usuário"
|
"user_settings": "Configurações do usuário",
|
||||||
|
"bookmark": "Guardar",
|
||||||
|
"reject_follow_request": "Rejeitar o pedido de seguimento",
|
||||||
|
"accept_follow_request": "Aceitar o pedido de seguimento",
|
||||||
|
"add_reaction": "Adicionar Reação"
|
||||||
},
|
},
|
||||||
"upload":{
|
"upload": {
|
||||||
"error": {
|
"error": {
|
||||||
"base": "Falha no envio.",
|
"base": "Falha no envio.",
|
||||||
"file_too_big": "Arquivo grande demais [{filesize}{filesizeunit} / {allowedsize}{allowedsizeunit}]",
|
"file_too_big": "Arquivo grande demais [{filesize}{filesizeunit} / {allowedsize}{allowedsizeunit}]",
|
||||||
"default": "Tente novamente mais tarde"
|
"default": "Tente novamente mais tarde",
|
||||||
|
"message": "Falha ao enviar: {0}"
|
||||||
},
|
},
|
||||||
"file_size_units": {
|
"file_size_units": {
|
||||||
"B": "B",
|
"B": "B",
|
||||||
|
@ -419,5 +655,179 @@
|
||||||
"GiB": "GiB",
|
"GiB": "GiB",
|
||||||
"TiB": "TiB"
|
"TiB": "TiB"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"about": {
|
||||||
|
"mrf": {
|
||||||
|
"simple": {
|
||||||
|
"quarantine": "Quarentena",
|
||||||
|
"reject": "Rejeitar",
|
||||||
|
"accept": "Aceitar",
|
||||||
|
"media_removal_desc": "Este domínio remove multimédia das publicações dos seguintes domínios:",
|
||||||
|
"media_removal": "Remoção de multimédia",
|
||||||
|
"ftl_removal_desc": "Este domínio remove os seguintes domínios da cronologia \"Rede conhecida por todos\":",
|
||||||
|
"quarantine_desc": "Este domínio apenas irá publicar nos seguintes domínios:",
|
||||||
|
"reject_desc": "Este domínio não aceitará mensagens dos seguintes domínios:",
|
||||||
|
"accept_desc": "Este domínio aceita apenas mensagens dos seguintes domínios:",
|
||||||
|
"simple_policies": "Políticas especificas do domínio",
|
||||||
|
"media_nsfw": "Forçar definição de multimédia como Sensível",
|
||||||
|
"ftl_removal": "Remoção da cronologia da \"Rede conhecida por todos\"",
|
||||||
|
"media_nsfw_desc": "Este domínio força a multimédia a ser marcada como sensível nos seguintes domínios:"
|
||||||
|
},
|
||||||
|
"keyword": {
|
||||||
|
"replace": "Substituir",
|
||||||
|
"reject": "Rejeitar",
|
||||||
|
"is_replaced_by": "→",
|
||||||
|
"keyword_policies": "Política de Palavras-Chave",
|
||||||
|
"ftl_removal": "Remoção da cronologia da \"Rede conhecida por todos\""
|
||||||
|
},
|
||||||
|
"federation": "Federação",
|
||||||
|
"mrf_policies": "Ativar Políticas MRF",
|
||||||
|
"mrf_policies_desc": "Políticas MRF manipulam o comportamento da federação nos domínios. As seguintes políticas estão ativadas:"
|
||||||
|
},
|
||||||
|
"staff": "Staff"
|
||||||
|
},
|
||||||
|
"remote_user_resolver": {
|
||||||
|
"searching_for": "A pesquisar por",
|
||||||
|
"error": "Não encontrado.",
|
||||||
|
"remote_user_resolver": "Resolução de utilizador remoto"
|
||||||
|
},
|
||||||
|
"emoji": {
|
||||||
|
"unicode": "Emoji Unicode",
|
||||||
|
"custom": "Emoji customizado",
|
||||||
|
"add_emoji": "Inserir emoji",
|
||||||
|
"search_emoji": "Pesquisar por um emoji",
|
||||||
|
"emoji": "Emoji",
|
||||||
|
"load_all": "A carregar todos os {emojiAmount} emojis",
|
||||||
|
"load_all_hint": "Carregado o primeiro emoji {saneAmount}, carregar todos os emojis pode causar problemas de desempenho.",
|
||||||
|
"keep_open": "Manter o seletor aberto",
|
||||||
|
"stickers": "Autocolantes"
|
||||||
|
},
|
||||||
|
"polls": {
|
||||||
|
"single_choice": "Escolha única",
|
||||||
|
"vote": "Vota",
|
||||||
|
"votes": "votos",
|
||||||
|
"option": "Opção",
|
||||||
|
"add_option": "Adicionar Opção",
|
||||||
|
"not_enough_options": "Demasiado poucas opções únicas na sondagem",
|
||||||
|
"expired": "A sondagem terminou há {0}",
|
||||||
|
"expires_in": "A sondagem termina em {0}",
|
||||||
|
"expiry": "Tempo para finalizar sondagem",
|
||||||
|
"multiple_choices": "Escolha múltipla",
|
||||||
|
"type": "Tipo de sondagem",
|
||||||
|
"add_poll": "Adicionar Sondagem"
|
||||||
|
},
|
||||||
|
"importer": {
|
||||||
|
"error": "Ocorreu um erro ao importar este ficheiro.",
|
||||||
|
"success": "Importado com sucesso.",
|
||||||
|
"submit": "Enviar"
|
||||||
|
},
|
||||||
|
"exporter": {
|
||||||
|
"processing": "A processar, brevemente ser-te-á pedido que descarregues o ficheiro",
|
||||||
|
"export": "Exportar"
|
||||||
|
},
|
||||||
|
"domain_mute_card": {
|
||||||
|
"mute_progress": "A silenciar…",
|
||||||
|
"mute": "Silenciar",
|
||||||
|
"unmute": "Remover silêncio",
|
||||||
|
"unmute_progress": "A remover o silêncio…"
|
||||||
|
},
|
||||||
|
"selectable_list": {
|
||||||
|
"select_all": "Seleccionar tudo"
|
||||||
|
},
|
||||||
|
"interactions": {
|
||||||
|
"load_older": "Carregar interações mais antigas",
|
||||||
|
"follows": "Novos seguidores",
|
||||||
|
"favs_repeats": "Gostos e Partilhas",
|
||||||
|
"moves": "O utilizador migra"
|
||||||
|
},
|
||||||
|
"errors": {
|
||||||
|
"storage_unavailable": "O Pleroma não conseguiu aceder ao armazenamento do navegador. A sua sessão ou definições locais não serão armazenadas e poderá encontrar problemas inesperados. Tente ativar as cookies."
|
||||||
|
},
|
||||||
|
"shoutbox": {
|
||||||
|
"title": "Chat Geral"
|
||||||
|
},
|
||||||
|
"chats": {
|
||||||
|
"chats": "Chats",
|
||||||
|
"empty_chat_list_placeholder": "Não tens conversações ainda. Inicia uma nova conversa!",
|
||||||
|
"error_sending_message": "Ocorreu algo de errado ao enviar a mensagem.",
|
||||||
|
"error_loading_chat": "Ocorreu algo de errado ao carregar o chat.",
|
||||||
|
"delete_confirm": "Desejas realmente apagar esta mensagem?",
|
||||||
|
"more": "Mais",
|
||||||
|
"empty_message_error": "Não podes publicar uma mensagem vazia",
|
||||||
|
"new": "Nova conversação",
|
||||||
|
"delete": "Apagar",
|
||||||
|
"message_user": "Mensagem de {nickname}",
|
||||||
|
"you": "Tu:"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"hashtags": "Hashtags",
|
||||||
|
"no_results": "Sem resultados",
|
||||||
|
"person_talking": "{count} pessoa a falar",
|
||||||
|
"people_talking": "{0} pessoas a falar",
|
||||||
|
"people": "Pessoas"
|
||||||
|
},
|
||||||
|
"display_date": {
|
||||||
|
"today": "Hoje"
|
||||||
|
},
|
||||||
|
"file_type": {
|
||||||
|
"file": "Ficheiro",
|
||||||
|
"image": "Imagem",
|
||||||
|
"video": "Vídeo",
|
||||||
|
"audio": "Áudio"
|
||||||
|
},
|
||||||
|
"password_reset": {
|
||||||
|
"password_reset_required_but_mailer_is_disabled": "Deves repor a tua palavra-passe, porém, a reposição de palavra-passe está desativada. Contacta o administrador da tua instância.",
|
||||||
|
"password_reset_required": "Deves repor a tua palavra-passe para iniciar sessão.",
|
||||||
|
"password_reset_disabled": "A reposição da palavra-passe foi desativada. Contacta o administrador da tua instância.",
|
||||||
|
"too_many_requests": "Alcançaste o limite de tentativas, tenta novamente mais tarde.",
|
||||||
|
"return_home": "Voltar à página principal",
|
||||||
|
"check_email": "Verifica o teu endereço de e-mail para obter um link para repor a tua palavra-passe.",
|
||||||
|
"placeholder": "O teu endereço de e-mail ou nome de utilizador",
|
||||||
|
"instruction": "Introduz o teu endereço de e-mail ou nome de utilizador. Enviaremos um link para repores a tua palavra-passe.",
|
||||||
|
"password_reset": "Repor palavra-passe",
|
||||||
|
"forgot_password": "Esqueceu-se da palavra-passe?"
|
||||||
|
},
|
||||||
|
"user_reporting": {
|
||||||
|
"generic_error": "Ocorreu um erro ao processar o teu pedido.",
|
||||||
|
"submit": "Enviar",
|
||||||
|
"forward_to": "Encaminhar para {0}",
|
||||||
|
"forward_description": "A conta é de outro servidor. Enviar também uma cópia da denúncia à outra instância?",
|
||||||
|
"additional_comments": "Comentários adicionais",
|
||||||
|
"add_comment_description": "Esta denúncia será enviada aos moderadores desta instância. Podes fornecer uma explicação pela qual te encontras a denunciar esta conta abaixo:",
|
||||||
|
"title": "Denunciar {0}"
|
||||||
|
},
|
||||||
|
"time": {
|
||||||
|
"years_short": "{0}a",
|
||||||
|
"year_short": "{0}a",
|
||||||
|
"years": "{0} anos",
|
||||||
|
"year": "{0} ano",
|
||||||
|
"weeks_short": "{0}sem",
|
||||||
|
"week_short": "{0}sem",
|
||||||
|
"weeks": "{0} semanas",
|
||||||
|
"week": "{0} semana",
|
||||||
|
"seconds_short": "{0}s",
|
||||||
|
"second_short": "{0}s",
|
||||||
|
"seconds": "{0} segundos",
|
||||||
|
"second": "{0} segundo",
|
||||||
|
"now": "agora mesmo",
|
||||||
|
"now_short": "agora",
|
||||||
|
"months_short": "{0}m",
|
||||||
|
"month_short": "{0}m",
|
||||||
|
"months": "{0} meses",
|
||||||
|
"month": "{0} mês",
|
||||||
|
"minutes_short": "{0}min",
|
||||||
|
"minute_short": "{0}min",
|
||||||
|
"minutes": "{0} minutos",
|
||||||
|
"minute": "{0} minuto",
|
||||||
|
"in_past": "há {0}",
|
||||||
|
"in_future": "em {0}",
|
||||||
|
"hours_short": "{0}h",
|
||||||
|
"hour_short": "{0}h",
|
||||||
|
"hours": "{0} horas",
|
||||||
|
"hour": "{0} hora",
|
||||||
|
"days_short": "{0}d",
|
||||||
|
"day_short": "{0}d",
|
||||||
|
"days": "{0} dias",
|
||||||
|
"day": "{0} dia"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,7 +40,8 @@
|
||||||
"heading": {
|
"heading": {
|
||||||
"TotpForm": "Двухфакторная аутентификация",
|
"TotpForm": "Двухфакторная аутентификация",
|
||||||
"RecoveryForm": "Two-factor recovery",
|
"RecoveryForm": "Two-factor recovery",
|
||||||
"totp": "Двухфакторная аутентификация"
|
"totp": "Двухфакторная аутентификация",
|
||||||
|
"recovery": "Двухфакторное возвращение аккаунта"
|
||||||
},
|
},
|
||||||
"hint": "Войдите чтобы присоединиться к дискуссии",
|
"hint": "Войдите чтобы присоединиться к дискуссии",
|
||||||
"description": "Войти с помощью OAuth"
|
"description": "Войти с помощью OAuth"
|
||||||
|
@ -62,10 +63,11 @@
|
||||||
"who_to_follow": "Кого читать",
|
"who_to_follow": "Кого читать",
|
||||||
"dms": "Личные Сообщения",
|
"dms": "Личные Сообщения",
|
||||||
"administration": "Панель администратора",
|
"administration": "Панель администратора",
|
||||||
"about": "О сервере"
|
"about": "О сервере",
|
||||||
|
"user_search": "Поиск пользователей"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"broken_favorite": "Неизвестный статус, ищем...",
|
"broken_favorite": "Неизвестный статус, ищем…",
|
||||||
"favorited_you": "нравится ваш статус",
|
"favorited_you": "нравится ваш статус",
|
||||||
"followed_you": "начал(а) читать вас",
|
"followed_you": "начал(а) читать вас",
|
||||||
"load_older": "Загрузить старые уведомления",
|
"load_older": "Загрузить старые уведомления",
|
||||||
|
@ -150,7 +152,7 @@
|
||||||
"generate_new_recovery_codes": "Получить новые коды востановления",
|
"generate_new_recovery_codes": "Получить новые коды востановления",
|
||||||
"warning_of_generate_new_codes": "После получения новых кодов восстановления, старые больше не будут работать.",
|
"warning_of_generate_new_codes": "После получения новых кодов восстановления, старые больше не будут работать.",
|
||||||
"recovery_codes": "Коды восстановления.",
|
"recovery_codes": "Коды восстановления.",
|
||||||
"waiting_a_recovery_codes": "Получение кодов восстановления ...",
|
"waiting_a_recovery_codes": "Получение кодов восстановления…",
|
||||||
"recovery_codes_warning": "Запишите эти коды и держите в безопасном месте - иначе вы их больше не увидите. Если вы потеряете доступ к OTP приложению - без резервных кодов вы больше не сможете залогиниться.",
|
"recovery_codes_warning": "Запишите эти коды и держите в безопасном месте - иначе вы их больше не увидите. Если вы потеряете доступ к OTP приложению - без резервных кодов вы больше не сможете залогиниться.",
|
||||||
"authentication_methods": "Методы аутентификации",
|
"authentication_methods": "Методы аутентификации",
|
||||||
"scan": {
|
"scan": {
|
||||||
|
@ -181,14 +183,14 @@
|
||||||
"change_password": "Сменить пароль",
|
"change_password": "Сменить пароль",
|
||||||
"change_password_error": "Произошла ошибка при попытке изменить пароль.",
|
"change_password_error": "Произошла ошибка при попытке изменить пароль.",
|
||||||
"changed_password": "Пароль изменён успешно!",
|
"changed_password": "Пароль изменён успешно!",
|
||||||
"collapse_subject": "Сворачивать посты с темой",
|
"collapse_subject": "Сворачивать статусы с темой",
|
||||||
"confirm_new_password": "Подтверждение нового пароля",
|
"confirm_new_password": "Подтверждение нового пароля",
|
||||||
"current_avatar": "Текущий аватар",
|
"current_avatar": "Текущий аватар",
|
||||||
"current_password": "Текущий пароль",
|
"current_password": "Текущий пароль",
|
||||||
"current_profile_banner": "Текущий баннер профиля",
|
"current_profile_banner": "Текущий баннер профиля",
|
||||||
"data_import_export_tab": "Импорт / Экспорт данных",
|
"data_import_export_tab": "Импорт / Экспорт данных",
|
||||||
"delete_account": "Удалить аккаунт",
|
"delete_account": "Удалить аккаунт",
|
||||||
"delete_account_description": "Удалить ваш аккаунт и все ваши сообщения.",
|
"delete_account_description": "Удалить вашу учётную запись и все ваши сообщения.",
|
||||||
"delete_account_error": "Возникла ошибка в процессе удаления вашего аккаунта. Если это повторяется, свяжитесь с администратором вашего сервера.",
|
"delete_account_error": "Возникла ошибка в процессе удаления вашего аккаунта. Если это повторяется, свяжитесь с администратором вашего сервера.",
|
||||||
"delete_account_instructions": "Введите ваш пароль в поле ниже для подтверждения удаления.",
|
"delete_account_instructions": "Введите ваш пароль в поле ниже для подтверждения удаления.",
|
||||||
"export_theme": "Сохранить Тему",
|
"export_theme": "Сохранить Тему",
|
||||||
|
@ -236,7 +238,7 @@
|
||||||
"hide_followers_count_description": "Не показывать число моих подписчиков",
|
"hide_followers_count_description": "Не показывать число моих подписчиков",
|
||||||
"show_admin_badge": "Показывать значок администратора в моем профиле",
|
"show_admin_badge": "Показывать значок администратора в моем профиле",
|
||||||
"show_moderator_badge": "Показывать значок модератора в моем профиле",
|
"show_moderator_badge": "Показывать значок модератора в моем профиле",
|
||||||
"nsfw_clickthrough": "Включить скрытие NSFW вложений и не показывать изображения в предпросмотре ссылок для NSFW статусов",
|
"nsfw_clickthrough": "Включить скрытие вложений и предпросмотра ссылок для NSFW статусов",
|
||||||
"oauth_tokens": "OAuth токены",
|
"oauth_tokens": "OAuth токены",
|
||||||
"token": "Токен",
|
"token": "Токен",
|
||||||
"refresh_token": "Рефреш токен",
|
"refresh_token": "Рефреш токен",
|
||||||
|
@ -289,7 +291,18 @@
|
||||||
"save_load_hint": "Опции \"оставить...\" позволяют сохранить текущие настройки при выборе другой темы или импорта её из файла. Так же они влияют на то какие компоненты будут сохранены при экспорте темы. Когда все галочки сняты все компоненты будут экспортированы.",
|
"save_load_hint": "Опции \"оставить...\" позволяют сохранить текущие настройки при выборе другой темы или импорта её из файла. Так же они влияют на то какие компоненты будут сохранены при экспорте темы. Когда все галочки сняты все компоненты будут экспортированы.",
|
||||||
"reset": "Сбросить",
|
"reset": "Сбросить",
|
||||||
"clear_all": "Очистить всё",
|
"clear_all": "Очистить всё",
|
||||||
"clear_opacity": "Очистить прозрачность"
|
"clear_opacity": "Очистить прозрачность",
|
||||||
|
"use_source": "Новая версия",
|
||||||
|
"use_snapshot": "Старая версия",
|
||||||
|
"keep_as_is": "Оставить, как есть",
|
||||||
|
"load_theme": "Загрузить тему",
|
||||||
|
"help": {
|
||||||
|
"fe_upgraded": "Движок тем для фронт-энда Pleroma был изменен после обновления.",
|
||||||
|
"older_version_imported": "Файл, который вы импортировали, был сделан в старой версии фронт-энда.",
|
||||||
|
"future_version_imported": "Файл, который вы импортировали, был сделан в новой версии фронт-энда.",
|
||||||
|
"v2_imported": "Файл, который вы импортировали, был сделан под старый фронт-энд. Мы стараемся улучшить совместимость, но все еще возможны несостыковки.",
|
||||||
|
"upgraded_from_v2": "Фронт-энд Pleroma был изменен. Выбранная тема может выглядеть слегка по-другому."
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"color": "Цвет",
|
"color": "Цвет",
|
||||||
|
@ -324,7 +337,9 @@
|
||||||
"borders": "Границы",
|
"borders": "Границы",
|
||||||
"buttons": "Кнопки",
|
"buttons": "Кнопки",
|
||||||
"inputs": "Поля ввода",
|
"inputs": "Поля ввода",
|
||||||
"faint_text": "Маловажный текст"
|
"faint_text": "Маловажный текст",
|
||||||
|
"post": "Сообщения и описание пользователя",
|
||||||
|
"alert_neutral": "Нейтральный"
|
||||||
},
|
},
|
||||||
"radii": {
|
"radii": {
|
||||||
"_tab_label": "Скругление"
|
"_tab_label": "Скругление"
|
||||||
|
@ -442,7 +457,22 @@
|
||||||
"notification_setting_block_from_strangers": "Не показывать уведомления от пользователей которых вы не читаете",
|
"notification_setting_block_from_strangers": "Не показывать уведомления от пользователей которых вы не читаете",
|
||||||
"notification_setting_filters": "Фильтрация",
|
"notification_setting_filters": "Фильтрация",
|
||||||
"notifications": "Уведомления",
|
"notifications": "Уведомления",
|
||||||
"virtual_scrolling": "Оптимизировать рендеринг ленты"
|
"virtual_scrolling": "Оптимизировать рендеринг ленты",
|
||||||
|
"hide_wallpaper": "Скрыть обои узла",
|
||||||
|
"accent": "Акцент",
|
||||||
|
"upload_a_photo": "Загрузить фото",
|
||||||
|
"notification_mutes": "Чтобы не получать уведомления от определённого пользователя, заглушите его.",
|
||||||
|
"reset_avatar_confirm": "Вы действительно хотите сбросить личный образ?",
|
||||||
|
"reset_profile_banner": "Сбросить личный баннер",
|
||||||
|
"reset_profile_background": "Сбросить личные обои",
|
||||||
|
"reset_avatar": "Сбросить личный образ",
|
||||||
|
"search_user_to_mute": "Искать, кого вы хотите заглушить",
|
||||||
|
"search_user_to_block": "Искать, кого вы хотите заблокировать",
|
||||||
|
"pad_emoji": "Выделять эмодзи пробелами при добавлении из панели",
|
||||||
|
"avatar_size_instruction": "Желательный наименьший размер личного образа 150 на 150 пикселей.",
|
||||||
|
"enable_web_push_notifications": "Включить web push-уведомления",
|
||||||
|
"notification_blocks": "Блокировка пользователя выключает все уведомления от него, а также отписывает вас от него.",
|
||||||
|
"notification_setting_hide_notification_contents": "Скрыть отправителя и содержимое push-уведомлений"
|
||||||
},
|
},
|
||||||
"timeline": {
|
"timeline": {
|
||||||
"collapse": "Свернуть",
|
"collapse": "Свернуть",
|
||||||
|
@ -452,15 +482,23 @@
|
||||||
"no_retweet_hint": "Пост помечен как \"только для подписчиков\" или \"личное\" и поэтому не может быть повторён",
|
"no_retweet_hint": "Пост помечен как \"только для подписчиков\" или \"личное\" и поэтому не может быть повторён",
|
||||||
"repeated": "повторил(а)",
|
"repeated": "повторил(а)",
|
||||||
"show_new": "Показать новые",
|
"show_new": "Показать новые",
|
||||||
"up_to_date": "Обновлено"
|
"up_to_date": "Обновлено",
|
||||||
|
"error": "Ошибка при обновлении ленты: {0}"
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"bookmark": "В закладки",
|
"bookmark": "Добавить в закладки",
|
||||||
"unbookmark": "Удалить из закладок",
|
"unbookmark": "Удалить из закладок",
|
||||||
"status_deleted": "Пост удален",
|
"status_deleted": "Пост удален",
|
||||||
"reply_to": "Ответ",
|
"reply_to": "Ответ",
|
||||||
"repeats": "Повторы",
|
"repeats": "Повторы",
|
||||||
"favorites": "Понравилось"
|
"favorites": "Понравилось",
|
||||||
|
"unmute_conversation": "Прекратить игнорировать разговор",
|
||||||
|
"mute_conversation": "Игнорировать разговор",
|
||||||
|
"thread_muted": "Разговор игнорируется",
|
||||||
|
"external_source": "Перейти к источнику",
|
||||||
|
"delete_confirm": "Вы действительно хотите удалить данный статус?",
|
||||||
|
"delete": "Удалить",
|
||||||
|
"copy_link": "Скопировать ссылку"
|
||||||
},
|
},
|
||||||
"user_card": {
|
"user_card": {
|
||||||
"block": "Заблокировать",
|
"block": "Заблокировать",
|
||||||
|
@ -473,7 +511,7 @@
|
||||||
"follow_unfollow": "Перестать читать",
|
"follow_unfollow": "Перестать читать",
|
||||||
"followees": "Читаемые",
|
"followees": "Читаемые",
|
||||||
"followers": "Читатели",
|
"followers": "Читатели",
|
||||||
"following": "Читаю!",
|
"following": "Читаете!",
|
||||||
"follows_you": "Читает вас!",
|
"follows_you": "Читает вас!",
|
||||||
"mute": "Игнорировать",
|
"mute": "Игнорировать",
|
||||||
"muted": "Игнорирую",
|
"muted": "Игнорирую",
|
||||||
|
@ -502,7 +540,12 @@
|
||||||
"media": "С вложениями",
|
"media": "С вложениями",
|
||||||
"mention": "Упомянуть",
|
"mention": "Упомянуть",
|
||||||
"show_repeats": "Показывать повторы",
|
"show_repeats": "Показывать повторы",
|
||||||
"hide_repeats": "Скрыть повторы"
|
"hide_repeats": "Скрыть повторы",
|
||||||
|
"report": "Пожаловаться",
|
||||||
|
"roles": {
|
||||||
|
"moderator": "Модератор",
|
||||||
|
"admin": "Администратор"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"user_profile": {
|
"user_profile": {
|
||||||
"timeline_title": "Лента пользователя"
|
"timeline_title": "Лента пользователя"
|
||||||
|
@ -571,7 +614,8 @@
|
||||||
"title": "Особенности",
|
"title": "Особенности",
|
||||||
"gopher": "Gopher",
|
"gopher": "Gopher",
|
||||||
"who_to_follow": "Предложения кого читать",
|
"who_to_follow": "Предложения кого читать",
|
||||||
"pleroma_chat_messages": "Pleroma Чат"
|
"pleroma_chat_messages": "Pleroma Чат",
|
||||||
|
"upload_limit": "Наибольший размер загружаемого файла"
|
||||||
},
|
},
|
||||||
"tool_tip": {
|
"tool_tip": {
|
||||||
"accept_follow_request": "Принять запрос на чтение",
|
"accept_follow_request": "Принять запрос на чтение",
|
||||||
|
@ -648,5 +692,19 @@
|
||||||
"hour": "{0} час",
|
"hour": "{0} час",
|
||||||
"day_short": "{0}д",
|
"day_short": "{0}д",
|
||||||
"days": "{0} дней"
|
"days": "{0} дней"
|
||||||
|
},
|
||||||
|
"chats": {
|
||||||
|
"empty_chat_list_placeholder": "У вас пока нет бесед. Начните одну!",
|
||||||
|
"delete_confirm": "Вы точно хотите удалить сообщение?",
|
||||||
|
"empty_message_error": "Нельзя отправить пустое сообщение",
|
||||||
|
"new": "Новая беседа",
|
||||||
|
"chats": "Беседы",
|
||||||
|
"delete": "Удалить",
|
||||||
|
"message_user": "Напишите {nickname}",
|
||||||
|
"you": "Вы:"
|
||||||
|
},
|
||||||
|
"remote_user_resolver": {
|
||||||
|
"error": "Не найдено.",
|
||||||
|
"searching_for": "Ищем"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
126
src/i18n/uk.json
126
src/i18n/uk.json
|
@ -25,22 +25,23 @@
|
||||||
},
|
},
|
||||||
"features_panel": {
|
"features_panel": {
|
||||||
"gopher": "Gopher",
|
"gopher": "Gopher",
|
||||||
"pleroma_chat_messages": "Чат Pleroma",
|
"pleroma_chat_messages": "Чати",
|
||||||
"chat": "Чат",
|
"chat": "Міні-чат",
|
||||||
"who_to_follow": "Кого відстежувати",
|
"who_to_follow": "Кого відстежувати",
|
||||||
"title": "Особливості",
|
"title": "Особливості",
|
||||||
"scope_options": "Параметри осягу",
|
"scope_options": "Параметри обсягу",
|
||||||
"media_proxy": "Посередник медіа-даних",
|
"media_proxy": "Посередник медіа-даних",
|
||||||
"text_limit": "Ліміт символів"
|
"text_limit": "Ліміт символів",
|
||||||
|
"upload_limit": "Обмеження завантажень"
|
||||||
},
|
},
|
||||||
"exporter": {
|
"exporter": {
|
||||||
"processing": "Опрацьовую, скоро ви зможете завантажити файл",
|
"processing": "Опрацьовую, скоро ви зможете завантажити файл",
|
||||||
"export": "Експорт"
|
"export": "Експорт"
|
||||||
},
|
},
|
||||||
"domain_mute_card": {
|
"domain_mute_card": {
|
||||||
"unmute_progress": "Вимикаю…",
|
"unmute_progress": "Вмикаю…",
|
||||||
"unmute": "Вимкнути ігнорування",
|
"unmute": "Вимкнути заглушення",
|
||||||
"mute_progress": "Вмикаю…",
|
"mute_progress": "Вимикаю…",
|
||||||
"mute": "Ігнорувати"
|
"mute": "Ігнорувати"
|
||||||
},
|
},
|
||||||
"shoutbox": {
|
"shoutbox": {
|
||||||
|
@ -50,13 +51,13 @@
|
||||||
"staff": "Адміністрація",
|
"staff": "Адміністрація",
|
||||||
"mrf": {
|
"mrf": {
|
||||||
"simple": {
|
"simple": {
|
||||||
"media_nsfw_desc": "Даний інстанс примусово позначає медіа в наступних інстансах як NSFW:",
|
"media_nsfw_desc": "Даний інстанс примусово позначає медіа в наступних інстансах як дратівливий:",
|
||||||
"media_nsfw": "Примусове визначення медіа як дратівливого",
|
"media_nsfw": "Примусове визначення медіа як дратівливого",
|
||||||
"media_removal_desc": "Поточний інстанс видаляє медіа з дописів на перелічених інстансах:",
|
"media_removal_desc": "Поточний інстанс видаляє медіа з дописів на перелічених інстансах:",
|
||||||
"media_removal": "Видалення медіа",
|
"media_removal": "Видалення медіа",
|
||||||
"ftl_removal_desc": "Цей інстанс видаляє перелічені інстанси з \"Усієї відомої мережі\":",
|
"ftl_removal_desc": "Цей інстанс видаляє перелічені інстанси з Федеративної стрічки:",
|
||||||
"ftl_removal": "Видалення з \"Усієї відомої мережі\"",
|
"ftl_removal": "Видалення зі стрічки Федеративної мережі",
|
||||||
"quarantine_desc": "Поточний інстанс буде надсилати тільки публічні дописи наступним інстансам:",
|
"quarantine_desc": "Поточний інстанс надсилатиме тільки публічні дописи наступним інстансам:",
|
||||||
"quarantine": "Карантин",
|
"quarantine": "Карантин",
|
||||||
"reject_desc": "Поточний інстанс не прийматиме повідомлення з перелічених інстансів:",
|
"reject_desc": "Поточний інстанс не прийматиме повідомлення з перелічених інстансів:",
|
||||||
"accept": "Прийняти",
|
"accept": "Прийняти",
|
||||||
|
@ -65,7 +66,7 @@
|
||||||
"simple_policies": "Правила поточного інстансу"
|
"simple_policies": "Правила поточного інстансу"
|
||||||
},
|
},
|
||||||
"mrf_policies_desc": "Правила MRF розповсюджуються на даний інстанс. Наступні правила активні:",
|
"mrf_policies_desc": "Правила MRF розповсюджуються на даний інстанс. Наступні правила активні:",
|
||||||
"mrf_policies": "Активні правила MRF (модуль переписування повідомлень)",
|
"mrf_policies": "Активувати правила MRF (модуль переписування повідомлень)",
|
||||||
"keyword": {
|
"keyword": {
|
||||||
"is_replaced_by": "→",
|
"is_replaced_by": "→",
|
||||||
"replace": "Замінити",
|
"replace": "Замінити",
|
||||||
|
@ -134,7 +135,7 @@
|
||||||
"error": "Помилка при оновленні сповіщень: {0}"
|
"error": "Помилка при оновленні сповіщень: {0}"
|
||||||
},
|
},
|
||||||
"nav": {
|
"nav": {
|
||||||
"chats": "Локальні балачки",
|
"chats": "Чати",
|
||||||
"timelines": "Стрічки",
|
"timelines": "Стрічки",
|
||||||
"twkn": "Уся відома мережа",
|
"twkn": "Уся відома мережа",
|
||||||
"about": "Інформація",
|
"about": "Інформація",
|
||||||
|
@ -193,7 +194,7 @@
|
||||||
"interactions": {
|
"interactions": {
|
||||||
"load_older": "Завантажити давніші взаємодії",
|
"load_older": "Завантажити давніші взаємодії",
|
||||||
"follows": "Нові підписки",
|
"follows": "Нові підписки",
|
||||||
"favs_repeats": "Повтори та вподобайки",
|
"favs_repeats": "Поширення та вподобайки",
|
||||||
"moves": "Міграції користувачів"
|
"moves": "Міграції користувачів"
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
|
@ -215,11 +216,11 @@
|
||||||
"text/bbcode": "BBCode",
|
"text/bbcode": "BBCode",
|
||||||
"text/markdown": "Markdown",
|
"text/markdown": "Markdown",
|
||||||
"text/html": "HTML",
|
"text/html": "HTML",
|
||||||
"text/plain": "Простий текст"
|
"text/plain": "Текстові дані"
|
||||||
},
|
},
|
||||||
"attachments_sensitive": "Позначити вкладення як чутливі",
|
"attachments_sensitive": "Позначити вкладення як чутливі",
|
||||||
"account_not_locked_warning_link": "замкнена",
|
"account_not_locked_warning_link": "замкнена",
|
||||||
"account_not_locked_warning": "Ваша обліковка не {0}. Будь-хто може відстежувати вас для перегляду дописів тільки для відстежувачів.",
|
"account_not_locked_warning": "Ваша обліковка не {0}. Будь-хто може відстежувати вас для перегляду дописів тільки для підписників.",
|
||||||
"new_status": "Створити допис",
|
"new_status": "Створити допис",
|
||||||
"direct_warning_to_first_only": "Цей допис побачать лише користувачі, що були згадані на початку повідомлення.",
|
"direct_warning_to_first_only": "Цей допис побачать лише користувачі, що були згадані на початку повідомлення.",
|
||||||
"direct_warning_to_all": "Цей допис побачать всі згадані користувачі.",
|
"direct_warning_to_all": "Цей допис побачать всі згадані користувачі.",
|
||||||
|
@ -230,7 +231,7 @@
|
||||||
"empty_status_error": "Не можу опублікувати пустий статус без вкладень",
|
"empty_status_error": "Не можу опублікувати пустий статус без вкладень",
|
||||||
"scope": {
|
"scope": {
|
||||||
"unlisted": "Непублічний - цей допис буде відсутній у публічних стрічках",
|
"unlisted": "Непублічний - цей допис буде відсутній у публічних стрічках",
|
||||||
"public": "Піблічний - цей допис побачать усі",
|
"public": "Публічний - цей допис побачать усі",
|
||||||
"private": "Для читачів - цей допис побачать лише ваші читачі",
|
"private": "Для читачів - цей допис побачать лише ваші читачі",
|
||||||
"direct": "Приватний - цей допис побачать лише згадані користувачі"
|
"direct": "Приватний - цей допис побачать лише згадані користувачі"
|
||||||
},
|
},
|
||||||
|
@ -338,7 +339,7 @@
|
||||||
"security": "Безпека",
|
"security": "Безпека",
|
||||||
"domain_mutes": "Домени",
|
"domain_mutes": "Домени",
|
||||||
"discoverable": "Дозволити виявлення цього облікового запису в результатах пошуку та інших службах",
|
"discoverable": "Дозволити виявлення цього облікового запису в результатах пошуку та інших службах",
|
||||||
"mutes_and_blocks": "Заглушені та блоковані",
|
"mutes_and_blocks": "Заглушення та блокування",
|
||||||
"changed_email": "Email успішно змінено!",
|
"changed_email": "Email успішно змінено!",
|
||||||
"change_email_error": "Сталася помилка під час зміни email.",
|
"change_email_error": "Сталася помилка під час зміни email.",
|
||||||
"change_email": "Змінити email",
|
"change_email": "Змінити email",
|
||||||
|
@ -384,7 +385,7 @@
|
||||||
"user_mutes": "Користувачі",
|
"user_mutes": "Користувачі",
|
||||||
"no_mutes": "Заглушені відсутні",
|
"no_mutes": "Заглушені відсутні",
|
||||||
"emoji_reactions_on_timeline": "Показувати реакції емоджі на стрічці",
|
"emoji_reactions_on_timeline": "Показувати реакції емоджі на стрічці",
|
||||||
"pad_emoji": "Додавати простір з обидвох сторін емоджі, при додаванні з панелі",
|
"pad_emoji": "Автоматично додавати простір з обидвох сторін емоджі",
|
||||||
"allow_following_move": "Дозволити автостеження при переміщенні на інший інстанс",
|
"allow_following_move": "Дозволити автостеження при переміщенні на інший інстанс",
|
||||||
"set_new_profile_background": "Встановити нову обкладинку профілю",
|
"set_new_profile_background": "Встановити нову обкладинку профілю",
|
||||||
"radii_help": "Радіус заокруглення кутів інтерфейсу (в пікселях)",
|
"radii_help": "Радіус заокруглення кутів інтерфейсу (в пікселях)",
|
||||||
|
@ -439,7 +440,7 @@
|
||||||
},
|
},
|
||||||
"keep_as_is": "Залишити як є",
|
"keep_as_is": "Залишити як є",
|
||||||
"clear_opacity": "Очистити прозорість",
|
"clear_opacity": "Очистити прозорість",
|
||||||
"save_load_hint": "Параметри \"Зберегти\" зберігають встановлені на даний момент параметри під час вибору або завантаження тем, вони також зберігають зазначені параметри під час експорту теми. Коли всі прапорці знято, експортування теми збереже все."
|
"save_load_hint": "Параметри \"Зберегти\" зберігають поточні параметри під час вибору або завантаження тем, вони також зберігають зазначені параметри під час експорту теми. Коли всі прапорці знято, експортування теми збереже все."
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"color": "Колір",
|
"color": "Колір",
|
||||||
|
@ -479,10 +480,11 @@
|
||||||
"panelHeader": "Заголовок панелі",
|
"panelHeader": "Заголовок панелі",
|
||||||
"avatarStatus": "Аватар користувача (в стрічці)",
|
"avatarStatus": "Аватар користувача (в стрічці)",
|
||||||
"avatar": "Аватар користувача (профіль)",
|
"avatar": "Аватар користувача (профіль)",
|
||||||
"buttonPressedHover": "Кнопка (натиснута + наведенний курсор)",
|
"buttonPressedHover": "Кнопка (натиснута + наведений курсор)",
|
||||||
"buttonPressed": "Кнопка (натиснута)",
|
"buttonPressed": "Кнопка (натиснута)",
|
||||||
"buttonHover": "Кнопка (при наведенні)",
|
"buttonHover": "Кнопка (при наведенні)",
|
||||||
"popup": "Спливаючі вікна та підказки"
|
"popup": "Спливаючі вікна та підказки",
|
||||||
|
"topBar": "Верхня панель"
|
||||||
},
|
},
|
||||||
"component": "Компонент",
|
"component": "Компонент",
|
||||||
"filter_hint": {
|
"filter_hint": {
|
||||||
|
@ -497,7 +499,8 @@
|
||||||
"shadow_id": "Тінь №{value}",
|
"shadow_id": "Тінь №{value}",
|
||||||
"override": "Перевизначити",
|
"override": "Перевизначити",
|
||||||
"_tab_label": "Тінь і підсвічування",
|
"_tab_label": "Тінь і підсвічування",
|
||||||
"hintV3": "Для тіней ви також можете використовувати позначення {0} для використання іншого кольорового слота."
|
"hintV3": "Для тіней ви також можете використовувати позначення {0} для використання іншого кольорового слота.",
|
||||||
|
"spread": "Розмах"
|
||||||
},
|
},
|
||||||
"fonts": {
|
"fonts": {
|
||||||
"components": {
|
"components": {
|
||||||
|
@ -543,7 +546,8 @@
|
||||||
"disabled": "Вимкнено",
|
"disabled": "Вимкнено",
|
||||||
"selectedMenu": "Вибраний пункт меню",
|
"selectedMenu": "Вибраний пункт меню",
|
||||||
"tabs": "Вкладки",
|
"tabs": "Вкладки",
|
||||||
"pressed": "Натиснуто"
|
"pressed": "Натиснуто",
|
||||||
|
"wallpaper": "Шпалери"
|
||||||
},
|
},
|
||||||
"common_colors": {
|
"common_colors": {
|
||||||
"rgbo": "Піктограми, акценти, значки",
|
"rgbo": "Піктограми, акценти, значки",
|
||||||
|
@ -552,7 +556,7 @@
|
||||||
"_tab_label": "Загальні"
|
"_tab_label": "Загальні"
|
||||||
},
|
},
|
||||||
"radii": {
|
"radii": {
|
||||||
"_tab_label": "Округлість"
|
"_tab_label": "Скруглення"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"enable_web_push_notifications": "Увімкнути web push-сповіщення",
|
"enable_web_push_notifications": "Увімкнути web push-сповіщення",
|
||||||
|
@ -564,7 +568,7 @@
|
||||||
"reset_profile_background": "Скинути обкладинку профілю",
|
"reset_profile_background": "Скинути обкладинку профілю",
|
||||||
"reset_avatar_confirm": "Ви дійсно хочете скинути аватар?",
|
"reset_avatar_confirm": "Ви дійсно хочете скинути аватар?",
|
||||||
"reset_profile_banner": "Скинули банер профілю",
|
"reset_profile_banner": "Скинули банер профілю",
|
||||||
"hide_follows_count_description": "Не показувати на кого я підписаний",
|
"hide_follows_count_description": "Не показувати кількість підписників",
|
||||||
"reset_banner_confirm": "Ви дійсно хочете скинути банер?",
|
"reset_banner_confirm": "Ви дійсно хочете скинути банер?",
|
||||||
"reset_background_confirm": "Ви дійсно хочете скинути обкладинку?",
|
"reset_background_confirm": "Ви дійсно хочете скинути обкладинку?",
|
||||||
"subject_line_behavior": "Вигляд теми при відповіді",
|
"subject_line_behavior": "Вигляд теми при відповіді",
|
||||||
|
@ -575,14 +579,14 @@
|
||||||
"search_user_to_block": "Шукайте кого ви хочете заблокувати",
|
"search_user_to_block": "Шукайте кого ви хочете заблокувати",
|
||||||
"autohide_floating_post_button": "Автоматично ховати кнопку \"Новий допис\" (в мобільній версії)",
|
"autohide_floating_post_button": "Автоматично ховати кнопку \"Новий допис\" (в мобільній версії)",
|
||||||
"pause_on_unfocused": "Призупинити трансляцію, коли вкладка неактивна",
|
"pause_on_unfocused": "Призупинити трансляцію, коли вкладка неактивна",
|
||||||
"hide_followers_count_description": "Не показувати кількість читачів",
|
"hide_followers_count_description": "Не показувати кількість моїх підписників",
|
||||||
"notification_blocks": "Блокування користувача зупиняє всі сповіщення від нього, а також скасовує його відстеження.",
|
"notification_blocks": "Блокування користувача зупиняє всі сповіщення від нього, а також скасовує його відстеження.",
|
||||||
"notification_setting_hide_notification_contents": "Ховати відправника та вміст push-сповіщень",
|
"notification_setting_hide_notification_contents": "Ховати відправника та вміст push-сповіщень",
|
||||||
"notification_setting_block_from_strangers": "Блокувати сповіщення від користувачів за якими ви не слідкуєте",
|
"notification_setting_block_from_strangers": "Блокувати сповіщення від користувачів за якими ви не слідкуєте",
|
||||||
"type_domains_to_mute": "Пошук доменів для заглушення",
|
"type_domains_to_mute": "Пошук доменів для заглушення",
|
||||||
"nsfw_clickthrough": "Увімкнути приховування NSFW медіа",
|
"nsfw_clickthrough": "Увімкнути приховування NSFW медіа",
|
||||||
"greentext": "Мемний текст",
|
"greentext": "Мемний текст",
|
||||||
"virtual_scrolling": "Оптимізувати оновлення стрчки",
|
"virtual_scrolling": "Оптимізувати оновлення стрічки",
|
||||||
"theme_help_v2_2": "Піктограми під деякими записами є показниками контрасту між фоном та текстом. Коли ви наведете на них курсор, ви отримаєте детальну інформацію. Пам'ятайте, якщо ви використовуєте прозорість, індикатори показують найгірший варіант.",
|
"theme_help_v2_2": "Піктограми під деякими записами є показниками контрасту між фоном та текстом. Коли ви наведете на них курсор, ви отримаєте детальну інформацію. Пам'ятайте, якщо ви використовуєте прозорість, індикатори показують найгірший варіант.",
|
||||||
"theme_help_v2_1": "Ви також можете замінити кольори та видимість окремих компонентів, перемикаючи прапорці, використовуйте \"Очистити все\", щоб видалити всі заміни.",
|
"theme_help_v2_1": "Ви також можете замінити кольори та видимість окремих компонентів, перемикаючи прапорці, використовуйте \"Очистити все\", щоб видалити всі заміни.",
|
||||||
"theme_help": "Використовувати шістнадцяткові коди кольору (#rrggbb) щоб редагувати тему.",
|
"theme_help": "Використовувати шістнадцяткові коди кольору (#rrggbb) щоб редагувати тему.",
|
||||||
|
@ -599,7 +603,8 @@
|
||||||
"frontend_version": "Версія фронтенду",
|
"frontend_version": "Версія фронтенду",
|
||||||
"backend_version": "Версія бекенду",
|
"backend_version": "Версія бекенду",
|
||||||
"title": "Версія"
|
"title": "Версія"
|
||||||
}
|
},
|
||||||
|
"hide_wallpaper": "Сховати шпалери екземпляру"
|
||||||
},
|
},
|
||||||
"selectable_list": {
|
"selectable_list": {
|
||||||
"select_all": "Вибрати все"
|
"select_all": "Вибрати все"
|
||||||
|
@ -611,7 +616,7 @@
|
||||||
},
|
},
|
||||||
"registration": {
|
"registration": {
|
||||||
"validations": {
|
"validations": {
|
||||||
"password_confirmation_match": "пароль та підтвердження паролю мають співпадати",
|
"password_confirmation_match": "пароль та підтвердження паролю мають бути однаковими",
|
||||||
"password_confirmation_required": "не може бути порожнім",
|
"password_confirmation_required": "не може бути порожнім",
|
||||||
"password_required": "не може бути порожнім",
|
"password_required": "не може бути порожнім",
|
||||||
"email_required": "не може бути порожнім",
|
"email_required": "не може бути порожнім",
|
||||||
|
@ -642,13 +647,15 @@
|
||||||
"favorite": "Подобається",
|
"favorite": "Подобається",
|
||||||
"reject_follow_request": "Відхилити запит на підписку",
|
"reject_follow_request": "Відхилити запит на підписку",
|
||||||
"accept_follow_request": "Прийняти запит на підписку",
|
"accept_follow_request": "Прийняти запит на підписку",
|
||||||
"media_upload": "Завантажити медіа"
|
"media_upload": "Завантажити медіа",
|
||||||
|
"bookmark": "Додати до закладок"
|
||||||
},
|
},
|
||||||
"upload": {
|
"upload": {
|
||||||
"error": {
|
"error": {
|
||||||
"base": "Збій при завантаженні.",
|
"base": "Збій при завантаженні.",
|
||||||
"file_too_big": "Файл завеликий [{filesize}{filesizeunit} / {allowedsize}{allowedsizeunit}]",
|
"file_too_big": "Файл завеликий [{filesize}{filesizeunit} / {allowedsize}{allowedsizeunit}]",
|
||||||
"default": "Спробуйте ще раз пізніше"
|
"default": "Спробуйте ще раз пізніше",
|
||||||
|
"message": "Помилка завантаження: {0}"
|
||||||
},
|
},
|
||||||
"file_size_units": {
|
"file_size_units": {
|
||||||
"TiB": "ТіБ",
|
"TiB": "ТіБ",
|
||||||
|
@ -665,7 +672,7 @@
|
||||||
"year_short": "{0}р",
|
"year_short": "{0}р",
|
||||||
"years": "{0} роки",
|
"years": "{0} роки",
|
||||||
"year": "{0} рік",
|
"year": "{0} рік",
|
||||||
"weeks": "{0} тижднів",
|
"weeks": "{0} тижнів",
|
||||||
"week": "{0} тиждень",
|
"week": "{0} тиждень",
|
||||||
"second_short": "{0}с",
|
"second_short": "{0}с",
|
||||||
"second": "{0} секунда",
|
"second": "{0} секунда",
|
||||||
|
@ -695,7 +702,9 @@
|
||||||
"search": {
|
"search": {
|
||||||
"no_results": "Немає результатів",
|
"no_results": "Немає результатів",
|
||||||
"hashtags": "Хештеги",
|
"hashtags": "Хештеги",
|
||||||
"people": "Люди"
|
"people": "Люди",
|
||||||
|
"people_talking": "{count} людей говорять про це",
|
||||||
|
"person_talking": "{count} особа говорить про це"
|
||||||
},
|
},
|
||||||
"user_card": {
|
"user_card": {
|
||||||
"statuses": "Дописи",
|
"statuses": "Дописи",
|
||||||
|
@ -708,12 +717,21 @@
|
||||||
"admin_menu": {
|
"admin_menu": {
|
||||||
"activate_account": "Активувати обліковий запис",
|
"activate_account": "Активувати обліковий запис",
|
||||||
"deactivate_account": "Деактивувати обліковий запис",
|
"deactivate_account": "Деактивувати обліковий запис",
|
||||||
"delete_account": "Видалити аккаунт",
|
"delete_account": "Видалити обліковий запис",
|
||||||
"moderation": "Модерація",
|
"moderation": "Модерація",
|
||||||
"delete_user_confirmation": "Ви абсолютно впевнені? Цю дію неможливо буде скасовувати.",
|
"delete_user_confirmation": "Ви абсолютно впевнені? Цю дію неможливо буде скасовувати.",
|
||||||
"delete_user": "Видалити обліковий запис",
|
"delete_user": "Видалити обліковий запис",
|
||||||
"strip_media": "Вилучити медіа з дописів користувача",
|
"strip_media": "Вилучити медіа з дописів користувача",
|
||||||
"force_nsfw": "Позначити всі дописи як NSFW"
|
"force_nsfw": "Позначити всі дописи як NSFW",
|
||||||
|
"disable_any_subscription": "Взагалі заборонити підписку на користувача",
|
||||||
|
"disable_remote_subscription": "Заборонити підписуватись на користувачів з віддалених інстансів",
|
||||||
|
"sandbox": "Показувати дописи лише підписникам",
|
||||||
|
"force_unlisted": "Не показувати дописи в стрічці",
|
||||||
|
"revoke_moderator": "Позбавити прав модератора",
|
||||||
|
"grant_moderator": "Надати права модератора",
|
||||||
|
"revoke_admin": "Позбавити прав адміністратора",
|
||||||
|
"grant_admin": "Надати права адміністратора",
|
||||||
|
"quarantine": "Не розповсюджувати дописи на інших інстансах"
|
||||||
},
|
},
|
||||||
"deny": "Відмовити",
|
"deny": "Відмовити",
|
||||||
"block": "Заблокувати",
|
"block": "Заблокувати",
|
||||||
|
@ -724,7 +742,29 @@
|
||||||
"report": "Поскаржитись",
|
"report": "Поскаржитись",
|
||||||
"per_day": "на день",
|
"per_day": "на день",
|
||||||
"favorites": "Вподобання",
|
"favorites": "Вподобання",
|
||||||
"media": "Медіа"
|
"media": "Медіа",
|
||||||
|
"show_repeats": "Показати поширення",
|
||||||
|
"hide_repeats": "Приховати поширення",
|
||||||
|
"its_you": "Це ти!",
|
||||||
|
"follows_you": "Підписаний на вас!",
|
||||||
|
"followers": "Підписники",
|
||||||
|
"followees": "Підписаний(-а)",
|
||||||
|
"follow_progress": "Запитую…",
|
||||||
|
"mute_progress": "Глушимо…",
|
||||||
|
"unmute_progress": "Знімаємо глушення…",
|
||||||
|
"unmute": "Зняти глушення",
|
||||||
|
"hidden": "Приховано",
|
||||||
|
"following": "Підписаний!",
|
||||||
|
"block_progress": "Блокуємо…",
|
||||||
|
"unblock_progress": "Розблоковуємо…",
|
||||||
|
"unblock": "Розблокувати",
|
||||||
|
"remote_follow": "Підписатись",
|
||||||
|
"muted": "Заглушений",
|
||||||
|
"mute": "Заглушити",
|
||||||
|
"roles": {
|
||||||
|
"moderator": "Модератор",
|
||||||
|
"admin": "Адміністратор"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"copy_link": "Скопіювати посилання на допис",
|
"copy_link": "Скопіювати посилання на допис",
|
||||||
|
@ -746,7 +786,12 @@
|
||||||
"bookmark": "Додати до закладок",
|
"bookmark": "Додати до закладок",
|
||||||
"pinned": "Закріплено",
|
"pinned": "Закріплено",
|
||||||
"unpin": "Відкріпити від профілю",
|
"unpin": "Відкріпити від профілю",
|
||||||
"repeats": "Повтори"
|
"repeats": "Поширення",
|
||||||
|
"nsfw": "Дратівливий вміст",
|
||||||
|
"thread_muted": "Нитка заглушена",
|
||||||
|
"unmute_conversation": "Припинити глушити розмову",
|
||||||
|
"external_source": "Зовнішнє джерело",
|
||||||
|
"expand": "Розгорнути"
|
||||||
},
|
},
|
||||||
"timeline": {
|
"timeline": {
|
||||||
"no_more_statuses": "Більше немає дописів",
|
"no_more_statuses": "Більше немає дописів",
|
||||||
|
@ -759,7 +804,7 @@
|
||||||
"conversation": "Розмова",
|
"conversation": "Розмова",
|
||||||
"no_statuses": "Ніяких статусів",
|
"no_statuses": "Ніяких статусів",
|
||||||
"repeated": "поширив(-ла)",
|
"repeated": "поширив(-ла)",
|
||||||
"no_retweet_hint": "Запис, позначено як \"тільки для відстежувачів\" або \"особисте\" і тому не може бути повторений"
|
"no_retweet_hint": "Запис, позначено як \"тільки для підписників\" або \"особисте\" і тому не може бути поширений"
|
||||||
},
|
},
|
||||||
"user_reporting": {
|
"user_reporting": {
|
||||||
"submit": "Відправити",
|
"submit": "Відправити",
|
||||||
|
@ -772,6 +817,7 @@
|
||||||
},
|
},
|
||||||
"user_profile": {
|
"user_profile": {
|
||||||
"profile_loading_error": "Вибачте, під час завантаження цього профілю виникла помилка.",
|
"profile_loading_error": "Вибачте, під час завантаження цього профілю виникла помилка.",
|
||||||
"profile_does_not_exist": "Вибачте, цей профіль більше не існує."
|
"profile_does_not_exist": "Вибачте, цей профіль більше не існує.",
|
||||||
|
"timeline_title": "Стрічка користувача"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
120
src/i18n/zh.json
120
src/i18n/zh.json
|
@ -14,7 +14,8 @@
|
||||||
"text_limit": "文字数量限制",
|
"text_limit": "文字数量限制",
|
||||||
"title": "功能",
|
"title": "功能",
|
||||||
"who_to_follow": "推荐关注",
|
"who_to_follow": "推荐关注",
|
||||||
"pleroma_chat_messages": "Pleroma 聊天"
|
"pleroma_chat_messages": "Pleroma 聊天",
|
||||||
|
"upload_limit": "上传限制"
|
||||||
},
|
},
|
||||||
"finder": {
|
"finder": {
|
||||||
"error_fetching_user": "获取用户时发生错误",
|
"error_fetching_user": "获取用户时发生错误",
|
||||||
|
@ -22,7 +23,7 @@
|
||||||
},
|
},
|
||||||
"general": {
|
"general": {
|
||||||
"apply": "应用",
|
"apply": "应用",
|
||||||
"submit": "发送",
|
"submit": "提交",
|
||||||
"more": "更多",
|
"more": "更多",
|
||||||
"generic_error": "发生了一个错误",
|
"generic_error": "发生了一个错误",
|
||||||
"optional": "可选",
|
"optional": "可选",
|
||||||
|
@ -34,7 +35,7 @@
|
||||||
"confirm": "确认",
|
"confirm": "确认",
|
||||||
"verify": "验证",
|
"verify": "验证",
|
||||||
"dismiss": "忽略",
|
"dismiss": "忽略",
|
||||||
"peek": "窥探",
|
"peek": "预览",
|
||||||
"close": "关闭",
|
"close": "关闭",
|
||||||
"retry": "重试",
|
"retry": "重试",
|
||||||
"error_retry": "请重试",
|
"error_retry": "请重试",
|
||||||
|
@ -104,7 +105,8 @@
|
||||||
"no_more_notifications": "没有更多的通知",
|
"no_more_notifications": "没有更多的通知",
|
||||||
"reacted_with": "作出了 {0} 的反应",
|
"reacted_with": "作出了 {0} 的反应",
|
||||||
"migrated_to": "迁移到了",
|
"migrated_to": "迁移到了",
|
||||||
"follow_request": "想要关注你"
|
"follow_request": "想要关注你",
|
||||||
|
"error": "取得通知时发生错误:{0}"
|
||||||
},
|
},
|
||||||
"polls": {
|
"polls": {
|
||||||
"add_poll": "增加投票",
|
"add_poll": "增加投票",
|
||||||
|
@ -124,7 +126,7 @@
|
||||||
"add_sticker": "添加贴纸"
|
"add_sticker": "添加贴纸"
|
||||||
},
|
},
|
||||||
"interactions": {
|
"interactions": {
|
||||||
"favs_repeats": "转发和收藏",
|
"favs_repeats": "转发和喜欢",
|
||||||
"follows": "新的关注者",
|
"follows": "新的关注者",
|
||||||
"load_older": "加载更早的互动",
|
"load_older": "加载更早的互动",
|
||||||
"moves": "用户迁移"
|
"moves": "用户迁移"
|
||||||
|
@ -141,10 +143,10 @@
|
||||||
"text/bbcode": "BBCode"
|
"text/bbcode": "BBCode"
|
||||||
},
|
},
|
||||||
"content_warning": "主题(可选)",
|
"content_warning": "主题(可选)",
|
||||||
"default": "刚刚抵达洛杉矶",
|
"default": "刚刚抵达上海。",
|
||||||
"direct_warning_to_all": "本条内容只有被提及的用户能够看到。",
|
"direct_warning_to_all": "本条内容只有被提及的用户能够看到。",
|
||||||
"direct_warning_to_first_only": "本条内容只有被在消息开始处提及的用户能够看到。",
|
"direct_warning_to_first_only": "本条内容只有被在消息开始处提及的用户能够看到。",
|
||||||
"posting": "发送",
|
"posting": "发送中",
|
||||||
"scope_notice": {
|
"scope_notice": {
|
||||||
"public": "本条内容可以被所有人看到",
|
"public": "本条内容可以被所有人看到",
|
||||||
"private": "关注你的人才能看到本条内容",
|
"private": "关注你的人才能看到本条内容",
|
||||||
|
@ -227,13 +229,13 @@
|
||||||
"btnRadius": "按钮",
|
"btnRadius": "按钮",
|
||||||
"cBlue": "蓝色(回复,关注)",
|
"cBlue": "蓝色(回复,关注)",
|
||||||
"cGreen": "绿色(转发)",
|
"cGreen": "绿色(转发)",
|
||||||
"cOrange": "橙色(收藏)",
|
"cOrange": "橙色(喜欢)",
|
||||||
"cRed": "红色(取消)",
|
"cRed": "红色(取消)",
|
||||||
"change_password": "修改密码",
|
"change_password": "修改密码",
|
||||||
"change_password_error": "修改密码的时候出了点问题。",
|
"change_password_error": "修改密码的时候出了点问题。",
|
||||||
"changed_password": "成功修改了密码!",
|
"changed_password": "成功修改了密码!",
|
||||||
"collapse_subject": "折叠带主题的内容",
|
"collapse_subject": "折叠带主题的内容",
|
||||||
"composing": "正在书写",
|
"composing": "写作",
|
||||||
"confirm_new_password": "确认新密码",
|
"confirm_new_password": "确认新密码",
|
||||||
"current_avatar": "当前头像",
|
"current_avatar": "当前头像",
|
||||||
"current_password": "当前密码",
|
"current_password": "当前密码",
|
||||||
|
@ -244,7 +246,7 @@
|
||||||
"delete_account_description": "永久删除你的帐号和所有数据。",
|
"delete_account_description": "永久删除你的帐号和所有数据。",
|
||||||
"delete_account_error": "删除账户时发生错误,如果一直删除不了,请联系实例管理员。",
|
"delete_account_error": "删除账户时发生错误,如果一直删除不了,请联系实例管理员。",
|
||||||
"delete_account_instructions": "在下面输入您的密码来确认删除账户。",
|
"delete_account_instructions": "在下面输入您的密码来确认删除账户。",
|
||||||
"avatar_size_instruction": "推荐的头像图片最小的尺寸是 150x150 像素。",
|
"avatar_size_instruction": "推荐的头像图片最小尺寸为 150x150 像素。",
|
||||||
"export_theme": "导出预置主题",
|
"export_theme": "导出预置主题",
|
||||||
"filtering": "过滤器",
|
"filtering": "过滤器",
|
||||||
"filtering_explanation": "所有包含以下词汇的内容都会被隐藏,一行一个",
|
"filtering_explanation": "所有包含以下词汇的内容都会被隐藏,一行一个",
|
||||||
|
@ -258,11 +260,11 @@
|
||||||
"hide_attachments_in_convo": "在对话中隐藏附件",
|
"hide_attachments_in_convo": "在对话中隐藏附件",
|
||||||
"hide_attachments_in_tl": "在时间线上隐藏附件",
|
"hide_attachments_in_tl": "在时间线上隐藏附件",
|
||||||
"hide_muted_posts": "不显示被隐藏的用户的帖子",
|
"hide_muted_posts": "不显示被隐藏的用户的帖子",
|
||||||
"max_thumbnails": "最多再每个帖子所能显示的缩略图数量",
|
"max_thumbnails": "每个帖子最多能显示的缩略图数量",
|
||||||
"hide_isp": "隐藏实例独有的面板",
|
"hide_isp": "隐藏实例独有的面板",
|
||||||
"preload_images": "预载图片",
|
"preload_images": "预载图片",
|
||||||
"use_one_click_nsfw": "点击一次以打开工作场所不适宜的附件",
|
"use_one_click_nsfw": "点击一次以打开工作场所不适宜(NSFW)的附件",
|
||||||
"hide_post_stats": "隐藏推文相关的统计数据(例如:收藏的次数)",
|
"hide_post_stats": "隐藏帖子的统计数据(例如:喜欢的次数)",
|
||||||
"hide_user_stats": "隐藏用户的统计数据(例如:关注者的数量)",
|
"hide_user_stats": "隐藏用户的统计数据(例如:关注者的数量)",
|
||||||
"hide_filtered_statuses": "隐藏过滤的状态",
|
"hide_filtered_statuses": "隐藏过滤的状态",
|
||||||
"import_blocks_from_a_csv_file": "从 csv 文件中导入拉黑名单",
|
"import_blocks_from_a_csv_file": "从 csv 文件中导入拉黑名单",
|
||||||
|
@ -296,9 +298,9 @@
|
||||||
"no_mutes": "没有隐藏",
|
"no_mutes": "没有隐藏",
|
||||||
"hide_follows_description": "不要显示我所关注的人",
|
"hide_follows_description": "不要显示我所关注的人",
|
||||||
"hide_followers_description": "不要显示关注我的人",
|
"hide_followers_description": "不要显示关注我的人",
|
||||||
"show_admin_badge": "显示管理徽章",
|
"show_admin_badge": "在我的个人资料中显示管理员徽章",
|
||||||
"show_moderator_badge": "在我的个人资料中显示监察员标志",
|
"show_moderator_badge": "在我的个人资料中显示监察员徽章",
|
||||||
"nsfw_clickthrough": "将不和谐附件隐藏,点击才能打开",
|
"nsfw_clickthrough": "将不和谐附件和链接预览隐藏,点击才会显示",
|
||||||
"oauth_tokens": "OAuth令牌",
|
"oauth_tokens": "OAuth令牌",
|
||||||
"token": "令牌",
|
"token": "令牌",
|
||||||
"refresh_token": "刷新令牌",
|
"refresh_token": "刷新令牌",
|
||||||
|
@ -307,7 +309,7 @@
|
||||||
"panelRadius": "面板",
|
"panelRadius": "面板",
|
||||||
"pause_on_unfocused": "在离开页面时暂停时间线推送",
|
"pause_on_unfocused": "在离开页面时暂停时间线推送",
|
||||||
"presets": "预置",
|
"presets": "预置",
|
||||||
"profile_background": "个人资料背景图",
|
"profile_background": "个人背景图",
|
||||||
"profile_banner": "横幅图片",
|
"profile_banner": "横幅图片",
|
||||||
"profile_tab": "个人资料",
|
"profile_tab": "个人资料",
|
||||||
"radii_help": "设置界面边缘的圆角 (单位:像素)",
|
"radii_help": "设置界面边缘的圆角 (单位:像素)",
|
||||||
|
@ -321,7 +323,7 @@
|
||||||
"search_user_to_block": "搜索你想屏蔽的用户",
|
"search_user_to_block": "搜索你想屏蔽的用户",
|
||||||
"search_user_to_mute": "搜索你想要隐藏的用户",
|
"search_user_to_mute": "搜索你想要隐藏的用户",
|
||||||
"security_tab": "安全",
|
"security_tab": "安全",
|
||||||
"scope_copy": "回复时的复制范围(私信是总是复制的)",
|
"scope_copy": "回复时复制可见范围(私信中永远会复制)",
|
||||||
"minimal_scopes_mode": "使发文可见范围的选项最少化",
|
"minimal_scopes_mode": "使发文可见范围的选项最少化",
|
||||||
"set_new_avatar": "设置新头像",
|
"set_new_avatar": "设置新头像",
|
||||||
"set_new_profile_background": "设置新的个人资料背景",
|
"set_new_profile_background": "设置新的个人资料背景",
|
||||||
|
@ -329,12 +331,12 @@
|
||||||
"settings": "设置",
|
"settings": "设置",
|
||||||
"subject_input_always_show": "总是显示主题框",
|
"subject_input_always_show": "总是显示主题框",
|
||||||
"subject_line_behavior": "回复时复制主题",
|
"subject_line_behavior": "回复时复制主题",
|
||||||
"subject_line_email": "比如电邮: \"re: 主题\"",
|
"subject_line_email": "类似电子邮件: \"re: 主题\"",
|
||||||
"subject_line_mastodon": "比如 mastodon: copy as is",
|
"subject_line_mastodon": "类似 mastodon: 与原主题相同",
|
||||||
"subject_line_noop": "不要复制",
|
"subject_line_noop": "不要复制",
|
||||||
"post_status_content_type": "发文状态内容类型",
|
"post_status_content_type": "发文状态内容类型",
|
||||||
"stop_gifs": "鼠标悬停时播放GIF",
|
"stop_gifs": "鼠标悬停时播放GIF",
|
||||||
"streaming": "开启滚动到顶部时的自动推送",
|
"streaming": "滚动到顶部时自动推送新内容",
|
||||||
"text": "文本",
|
"text": "文本",
|
||||||
"theme": "主题",
|
"theme": "主题",
|
||||||
"theme_help": "使用十六进制代码(#rrggbb)来设置主题颜色。",
|
"theme_help": "使用十六进制代码(#rrggbb)来设置主题颜色。",
|
||||||
|
@ -400,7 +402,7 @@
|
||||||
"_tab_label": "常规",
|
"_tab_label": "常规",
|
||||||
"main": "常用颜色",
|
"main": "常用颜色",
|
||||||
"foreground_hint": "点击”高级“ 标签进行细致的控制",
|
"foreground_hint": "点击”高级“ 标签进行细致的控制",
|
||||||
"rgbo": "图标,口音,徽章"
|
"rgbo": "图标,强调,徽章"
|
||||||
},
|
},
|
||||||
"advanced_colors": {
|
"advanced_colors": {
|
||||||
"_tab_label": "高级",
|
"_tab_label": "高级",
|
||||||
|
@ -420,7 +422,7 @@
|
||||||
"incoming": "收到的"
|
"incoming": "收到的"
|
||||||
},
|
},
|
||||||
"disabled": "禁用的",
|
"disabled": "禁用的",
|
||||||
"pressed": "按下的",
|
"pressed": "压下的",
|
||||||
"highlight": "强调元素",
|
"highlight": "强调元素",
|
||||||
"selectedMenu": "选中的菜单项",
|
"selectedMenu": "选中的菜单项",
|
||||||
"selectedPost": "选中的发布内容",
|
"selectedPost": "选中的发布内容",
|
||||||
|
@ -432,7 +434,8 @@
|
||||||
"alert_warning": "警告",
|
"alert_warning": "警告",
|
||||||
"tabs": "标签页",
|
"tabs": "标签页",
|
||||||
"underlay": "底衬",
|
"underlay": "底衬",
|
||||||
"toggled": "勾选的"
|
"toggled": "按下的",
|
||||||
|
"wallpaper": "壁纸"
|
||||||
},
|
},
|
||||||
"radii": {
|
"radii": {
|
||||||
"_tab_label": "圆角"
|
"_tab_label": "圆角"
|
||||||
|
@ -444,14 +447,14 @@
|
||||||
"shadow_id": "阴影 #{value}",
|
"shadow_id": "阴影 #{value}",
|
||||||
"blur": "模糊",
|
"blur": "模糊",
|
||||||
"spread": "扩散",
|
"spread": "扩散",
|
||||||
"inset": "插入内部",
|
"inset": "内阴影",
|
||||||
"hint": "对于阴影你还可以使用 --variable 作为颜色值来使用 CSS3 变量。请注意,这种情况下,透明设置将不起作用。",
|
"hint": "对于阴影你还可以使用 --variable 作为颜色值来使用 CSS3 变量。请注意,这种情况下,透明设置将不起作用。",
|
||||||
"filter_hint": {
|
"filter_hint": {
|
||||||
"always_drop_shadow": "警告,此阴影设置会总是使用 {0} ,如果浏览器支持的话。",
|
"always_drop_shadow": "警告,此阴影设置会总是使用 {0} ,如果浏览器支持的话。",
|
||||||
"drop_shadow_syntax": "{0} 不支持参数 {1} 和关键词 {2} 。",
|
"drop_shadow_syntax": "{0} 不支持参数 {1} 和关键词 {2} 。",
|
||||||
"avatar_inset": "请注意组合两个内部和非内部的阴影到头像上,在透明头像上可能会有意料之外的效果。",
|
"avatar_inset": "请注意组合两个内部和非内部的阴影到头像上,在透明头像上可能会有意料之外的效果。",
|
||||||
"spread_zero": "阴影的扩散 > 0 会同设置成零一样",
|
"spread_zero": "阴影的扩散 > 0 会同设置成零一样",
|
||||||
"inset_classic": "插入内部的阴影会使用 {0}"
|
"inset_classic": "内阴影会使用 {0}"
|
||||||
},
|
},
|
||||||
"components": {
|
"components": {
|
||||||
"panel": "面板",
|
"panel": "面板",
|
||||||
|
@ -459,13 +462,14 @@
|
||||||
"topBar": "顶栏",
|
"topBar": "顶栏",
|
||||||
"avatar": "用户头像(在个人资料栏)",
|
"avatar": "用户头像(在个人资料栏)",
|
||||||
"avatarStatus": "用户头像(在帖子显示栏)",
|
"avatarStatus": "用户头像(在帖子显示栏)",
|
||||||
"popup": "弹窗和工具提示",
|
"popup": "弹窗与工具提示",
|
||||||
"button": "按钮",
|
"button": "按钮",
|
||||||
"buttonHover": "按钮(悬停)",
|
"buttonHover": "按钮(悬停)",
|
||||||
"buttonPressed": "按钮(按下)",
|
"buttonPressed": "按钮(压下)",
|
||||||
"buttonPressedHover": "按钮(按下和悬停)",
|
"buttonPressedHover": "按钮(压下和悬停)",
|
||||||
"input": "输入框"
|
"input": "输入框"
|
||||||
}
|
},
|
||||||
|
"hintV3": "对于阴影,您还可以使用 {0} 表示法来使用其它颜色插槽。"
|
||||||
},
|
},
|
||||||
"fonts": {
|
"fonts": {
|
||||||
"_tab_label": "字体",
|
"_tab_label": "字体",
|
||||||
|
@ -478,22 +482,22 @@
|
||||||
},
|
},
|
||||||
"family": "字体名称",
|
"family": "字体名称",
|
||||||
"size": "大小 (in px)",
|
"size": "大小 (in px)",
|
||||||
"weight": "字重 (粗体))",
|
"weight": "字重 (粗体)",
|
||||||
"custom": "自选"
|
"custom": "自选"
|
||||||
},
|
},
|
||||||
"preview": {
|
"preview": {
|
||||||
"header": "预览",
|
"header": "预览",
|
||||||
"content": "内容",
|
"content": "内容",
|
||||||
"error": "例子错误",
|
"error": "错误示例",
|
||||||
"button": "按钮",
|
"button": "按钮",
|
||||||
"text": "有堆 {0} 和 {1}",
|
"text": "有堆 {0} 和 {1}",
|
||||||
"mono": "内容",
|
"mono": "monospace 内容",
|
||||||
"input": "刚刚抵达上海",
|
"input": "刚刚抵达上海。",
|
||||||
"faint_link": "帮助菜单",
|
"faint_link": "帮助手册",
|
||||||
"fine_print": "阅读我们的 {0} ,然而什么也学不到!",
|
"fine_print": "阅读我们的 {0} ,然而什么也学不到!",
|
||||||
"header_faint": "这很正常",
|
"header_faint": "这很正常",
|
||||||
"checkbox": "我已经浏览了 TOC",
|
"checkbox": "我已经浏览了条款及细则",
|
||||||
"link": "一个很棒的摇滚链接"
|
"link": "一个棒棒的小小链接"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"version": {
|
"version": {
|
||||||
|
@ -519,11 +523,11 @@
|
||||||
"type_domains_to_mute": "搜索需要隐藏的域名",
|
"type_domains_to_mute": "搜索需要隐藏的域名",
|
||||||
"useStreamingApi": "实时接收帖子和通知",
|
"useStreamingApi": "实时接收帖子和通知",
|
||||||
"user_mutes": "用户",
|
"user_mutes": "用户",
|
||||||
"reset_background_confirm": "您确定要重置个人资料背景图吗?",
|
"reset_background_confirm": "您确定要重置背景图吗?",
|
||||||
"reset_banner_confirm": "您确定要重置横幅图片吗?",
|
"reset_banner_confirm": "您确定要重置横幅图片吗?",
|
||||||
"reset_avatar_confirm": "您确定要重置头像吗?",
|
"reset_avatar_confirm": "您确定要重置头像吗?",
|
||||||
"reset_profile_banner": "重置横幅图片",
|
"reset_profile_banner": "重置横幅图片",
|
||||||
"reset_profile_background": "重置个人资料背景图",
|
"reset_profile_background": "重置个人背景图",
|
||||||
"reset_avatar": "重置头像",
|
"reset_avatar": "重置头像",
|
||||||
"hide_followers_count_description": "不显示关注者数量",
|
"hide_followers_count_description": "不显示关注者数量",
|
||||||
"profile_fields": {
|
"profile_fields": {
|
||||||
|
@ -547,7 +551,8 @@
|
||||||
"mute_import_error": "导入隐藏名单出错",
|
"mute_import_error": "导入隐藏名单出错",
|
||||||
"mute_import": "隐藏名单导入",
|
"mute_import": "隐藏名单导入",
|
||||||
"mute_export_button": "导出你的隐藏名单到一个 csv 文件",
|
"mute_export_button": "导出你的隐藏名单到一个 csv 文件",
|
||||||
"mute_export": "隐藏名单导出"
|
"mute_export": "隐藏名单导出",
|
||||||
|
"hide_wallpaper": "隐藏实例壁纸"
|
||||||
},
|
},
|
||||||
"time": {
|
"time": {
|
||||||
"day": "{0} 天",
|
"day": "{0} 天",
|
||||||
|
@ -588,16 +593,17 @@
|
||||||
"conversation": "对话",
|
"conversation": "对话",
|
||||||
"error_fetching": "获取更新时发生错误",
|
"error_fetching": "获取更新时发生错误",
|
||||||
"load_older": "加载更早的状态",
|
"load_older": "加载更早的状态",
|
||||||
"no_retweet_hint": "这条内容仅关注者可见,或者是私信,因此不能转发。",
|
"no_retweet_hint": "这条内容仅关注者可见,或者是私信,因此不能转发",
|
||||||
"repeated": "已转发",
|
"repeated": "转发了",
|
||||||
"show_new": "显示新内容",
|
"show_new": "显示新内容",
|
||||||
"up_to_date": "已是最新",
|
"up_to_date": "已是最新",
|
||||||
"no_more_statuses": "没有更多的状态",
|
"no_more_statuses": "没有更多的状态",
|
||||||
"no_statuses": "没有状态更新",
|
"no_statuses": "没有状态更新",
|
||||||
"reload": "重新载入"
|
"reload": "重新载入",
|
||||||
|
"error": "取得时间轴时发生错误:{0}"
|
||||||
},
|
},
|
||||||
"status": {
|
"status": {
|
||||||
"favorites": "收藏",
|
"favorites": "喜欢",
|
||||||
"repeats": "转发",
|
"repeats": "转发",
|
||||||
"delete": "删除状态",
|
"delete": "删除状态",
|
||||||
"pin": "在个人资料置顶",
|
"pin": "在个人资料置顶",
|
||||||
|
@ -618,24 +624,27 @@
|
||||||
"unbookmark": "取消书签",
|
"unbookmark": "取消书签",
|
||||||
"bookmark": "书签",
|
"bookmark": "书签",
|
||||||
"thread_muted_and_words": ",含有过滤词:",
|
"thread_muted_and_words": ",含有过滤词:",
|
||||||
"status_deleted": "该状态已被删除"
|
"status_deleted": "该状态已被删除",
|
||||||
|
"nsfw": "NSFW",
|
||||||
|
"external_source": "外部来源",
|
||||||
|
"expand": "展开"
|
||||||
},
|
},
|
||||||
"user_card": {
|
"user_card": {
|
||||||
"approve": "允许",
|
"approve": "核准",
|
||||||
"block": "屏蔽",
|
"block": "屏蔽",
|
||||||
"blocked": "已屏蔽!",
|
"blocked": "已屏蔽!",
|
||||||
"deny": "拒绝",
|
"deny": "拒绝",
|
||||||
"favorites": "收藏",
|
"favorites": "喜欢",
|
||||||
"follow": "关注",
|
"follow": "关注",
|
||||||
"follow_sent": "请求已发送!",
|
"follow_sent": "请求已发送!",
|
||||||
"follow_progress": "请求中",
|
"follow_progress": "请求中…",
|
||||||
"follow_again": "再次发送请求?",
|
"follow_again": "再次发送请求?",
|
||||||
"follow_unfollow": "取消关注",
|
"follow_unfollow": "取消关注",
|
||||||
"followees": "正在关注",
|
"followees": "正在关注",
|
||||||
"followers": "关注者",
|
"followers": "关注者",
|
||||||
"following": "正在关注!",
|
"following": "正在关注!",
|
||||||
"follows_you": "关注了你!",
|
"follows_you": "关注了你!",
|
||||||
"its_you": "就是你!!",
|
"its_you": "就是你!",
|
||||||
"media": "媒体",
|
"media": "媒体",
|
||||||
"mute": "隐藏",
|
"mute": "隐藏",
|
||||||
"muted": "已隐藏",
|
"muted": "已隐藏",
|
||||||
|
@ -652,7 +661,7 @@
|
||||||
"unmute_progress": "取消隐藏中…",
|
"unmute_progress": "取消隐藏中…",
|
||||||
"mute_progress": "隐藏中…",
|
"mute_progress": "隐藏中…",
|
||||||
"admin_menu": {
|
"admin_menu": {
|
||||||
"moderation": "权限",
|
"moderation": "仲裁",
|
||||||
"grant_admin": "赋予管理权限",
|
"grant_admin": "赋予管理权限",
|
||||||
"revoke_admin": "撤销管理权限",
|
"revoke_admin": "撤销管理权限",
|
||||||
"grant_moderator": "赋予监察员权限",
|
"grant_moderator": "赋予监察员权限",
|
||||||
|
@ -685,7 +694,7 @@
|
||||||
"title": "报告 {0}",
|
"title": "报告 {0}",
|
||||||
"add_comment_description": "此报告会发送给您的实例监察员。您可以在下面提供更多详细信息解释报告的缘由:",
|
"add_comment_description": "此报告会发送给您的实例监察员。您可以在下面提供更多详细信息解释报告的缘由:",
|
||||||
"additional_comments": "其它信息",
|
"additional_comments": "其它信息",
|
||||||
"forward_description": "这个账号是从另外一个服务器。同时发送一个副本到那里?",
|
"forward_description": "这个账号来自另一个服务器。是否同时发送一份报告副本到那里?",
|
||||||
"forward_to": "转发 {0}",
|
"forward_to": "转发 {0}",
|
||||||
"submit": "提交",
|
"submit": "提交",
|
||||||
"generic_error": "当处理您的请求时,发生了一个错误。"
|
"generic_error": "当处理您的请求时,发生了一个错误。"
|
||||||
|
@ -695,10 +704,10 @@
|
||||||
"who_to_follow": "推荐关注"
|
"who_to_follow": "推荐关注"
|
||||||
},
|
},
|
||||||
"tool_tip": {
|
"tool_tip": {
|
||||||
"media_upload": "上传多媒体",
|
"media_upload": "上传媒体",
|
||||||
"repeat": "转发",
|
"repeat": "转发",
|
||||||
"reply": "回复",
|
"reply": "回复",
|
||||||
"favorite": "收藏",
|
"favorite": "喜欢",
|
||||||
"user_settings": "用户设置",
|
"user_settings": "用户设置",
|
||||||
"reject_follow_request": "拒绝关注请求",
|
"reject_follow_request": "拒绝关注请求",
|
||||||
"add_reaction": "添加互动",
|
"add_reaction": "添加互动",
|
||||||
|
@ -709,7 +718,8 @@
|
||||||
"error": {
|
"error": {
|
||||||
"base": "上传不成功。",
|
"base": "上传不成功。",
|
||||||
"file_too_big": "文件太大了 [{filesize}{filesizeunit} / {allowedsize}{allowedsizeunit}]",
|
"file_too_big": "文件太大了 [{filesize}{filesizeunit} / {allowedsize}{allowedsizeunit}]",
|
||||||
"default": "迟些再试"
|
"default": "迟些再试",
|
||||||
|
"message": "上传错误:{0}"
|
||||||
},
|
},
|
||||||
"file_size_units": {
|
"file_size_units": {
|
||||||
"B": "B",
|
"B": "B",
|
||||||
|
@ -772,7 +782,7 @@
|
||||||
"ftl_removal": "从“全部已知网络”时间线上移除"
|
"ftl_removal": "从“全部已知网络”时间线上移除"
|
||||||
},
|
},
|
||||||
"mrf_policies_desc": "MRF 策略会影响本实例的互通行为。以下策略已启用:",
|
"mrf_policies_desc": "MRF 策略会影响本实例的互通行为。以下策略已启用:",
|
||||||
"mrf_policies": "已启动的 MRF 策略",
|
"mrf_policies": "已启用的 MRF 策略",
|
||||||
"keyword": {
|
"keyword": {
|
||||||
"ftl_removal": "从“全部已知网络”时间线上移除",
|
"ftl_removal": "从“全部已知网络”时间线上移除",
|
||||||
"keyword_policies": "关键词策略",
|
"keyword_policies": "关键词策略",
|
||||||
|
|
|
@ -35,7 +35,8 @@
|
||||||
"follow_request": "想要關注你",
|
"follow_request": "想要關注你",
|
||||||
"followed_you": "關注了你",
|
"followed_you": "關注了你",
|
||||||
"favorited_you": "喜歡了你的發文",
|
"favorited_you": "喜歡了你的發文",
|
||||||
"broken_favorite": "未知的狀態,正在搜索中…"
|
"broken_favorite": "未知的狀態,正在搜索中…",
|
||||||
|
"error": "獲取通知錯誤:{0}"
|
||||||
},
|
},
|
||||||
"nav": {
|
"nav": {
|
||||||
"chats": "聊天",
|
"chats": "聊天",
|
||||||
|
@ -121,7 +122,8 @@
|
||||||
"media_proxy": "媒體代理",
|
"media_proxy": "媒體代理",
|
||||||
"pleroma_chat_messages": "Pleroma 聊天",
|
"pleroma_chat_messages": "Pleroma 聊天",
|
||||||
"chat": "聊天",
|
"chat": "聊天",
|
||||||
"gopher": "Gopher"
|
"gopher": "Gopher",
|
||||||
|
"upload_limit": "上傳限制"
|
||||||
},
|
},
|
||||||
"exporter": {
|
"exporter": {
|
||||||
"processing": "正在處理,稍後會提示您下載文件",
|
"processing": "正在處理,稍後會提示您下載文件",
|
||||||
|
@ -351,7 +353,7 @@
|
||||||
"reset_avatar": "重置頭像",
|
"reset_avatar": "重置頭像",
|
||||||
"discoverable": "允許通過搜索檢索等服務找到此賬號",
|
"discoverable": "允許通過搜索檢索等服務找到此賬號",
|
||||||
"delete_account_error": "刪除賬戶時發生錯誤,如果一直刪除不了,請聯繫實例管理員。",
|
"delete_account_error": "刪除賬戶時發生錯誤,如果一直刪除不了,請聯繫實例管理員。",
|
||||||
"composing": "正在書寫",
|
"composing": "寫作設置",
|
||||||
"chatMessageRadius": "聊天訊息",
|
"chatMessageRadius": "聊天訊息",
|
||||||
"mfa": {
|
"mfa": {
|
||||||
"confirm_and_enable": "確認並啟用OTP",
|
"confirm_and_enable": "確認並啟用OTP",
|
||||||
|
@ -524,7 +526,8 @@
|
||||||
"mute_import": "靜音導入",
|
"mute_import": "靜音導入",
|
||||||
"mute_import_error": "導入靜音時出錯",
|
"mute_import_error": "導入靜音時出錯",
|
||||||
"mute_export_button": "將靜音導出到csv文件",
|
"mute_export_button": "將靜音導出到csv文件",
|
||||||
"mute_export": "靜音導出"
|
"mute_export": "靜音導出",
|
||||||
|
"hide_wallpaper": "隱藏實例桌布"
|
||||||
},
|
},
|
||||||
"chats": {
|
"chats": {
|
||||||
"more": "更多",
|
"more": "更多",
|
||||||
|
|
|
@ -4,12 +4,14 @@ const reports = {
|
||||||
state: {
|
state: {
|
||||||
userId: null,
|
userId: null,
|
||||||
statuses: [],
|
statuses: [],
|
||||||
|
preTickedIds: [],
|
||||||
modalActivated: false
|
modalActivated: false
|
||||||
},
|
},
|
||||||
mutations: {
|
mutations: {
|
||||||
openUserReportingModal (state, { userId, statuses }) {
|
openUserReportingModal (state, { userId, statuses, preTickedIds }) {
|
||||||
state.userId = userId
|
state.userId = userId
|
||||||
state.statuses = statuses
|
state.statuses = statuses
|
||||||
|
state.preTickedIds = preTickedIds
|
||||||
state.modalActivated = true
|
state.modalActivated = true
|
||||||
},
|
},
|
||||||
closeUserReportingModal (state) {
|
closeUserReportingModal (state) {
|
||||||
|
@ -17,9 +19,15 @@ const reports = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
actions: {
|
actions: {
|
||||||
openUserReportingModal ({ rootState, commit }, userId) {
|
openUserReportingModal ({ rootState, commit }, { userId, statusIds = [] }) {
|
||||||
const statuses = filter(rootState.statuses.allStatuses, status => status.user.id === userId)
|
const preTickedStatuses = statusIds.map(id => rootState.statuses.allStatusesObject[id])
|
||||||
commit('openUserReportingModal', { userId, statuses })
|
const preTickedIds = statusIds
|
||||||
|
const statuses = preTickedStatuses.concat(
|
||||||
|
filter(rootState.statuses.allStatuses,
|
||||||
|
status => status.user.id === userId && !preTickedIds.includes(status.id)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
commit('openUserReportingModal', { userId, statuses, preTickedIds })
|
||||||
},
|
},
|
||||||
closeUserReportingModal ({ commit }) {
|
closeUserReportingModal ({ commit }) {
|
||||||
commit('closeUserReportingModal')
|
commit('closeUserReportingModal')
|
||||||
|
|
|
@ -188,7 +188,12 @@ export const parseUser = (data) => {
|
||||||
output.follow_request_count = data.pleroma.follow_request_count
|
output.follow_request_count = data.pleroma.follow_request_count
|
||||||
|
|
||||||
output.tags = data.pleroma.tags
|
output.tags = data.pleroma.tags
|
||||||
output.deactivated = data.pleroma.deactivated
|
|
||||||
|
// deactivated was changed to is_active in Pleroma 2.3.0
|
||||||
|
// so check if is_active is present
|
||||||
|
output.deactivated = typeof data.pleroma.is_active !== 'undefined'
|
||||||
|
? !data.pleroma.is_active // new backend
|
||||||
|
: data.pleroma.deactivated // old backend
|
||||||
|
|
||||||
output.notification_settings = data.pleroma.notification_settings
|
output.notification_settings = data.pleroma.notification_settings
|
||||||
output.unread_chat_count = data.pleroma.unread_chat_count
|
output.unread_chat_count = data.pleroma.unread_chat_count
|
||||||
|
@ -201,7 +206,6 @@ export const parseUser = (data) => {
|
||||||
// Convert punycode to unicode
|
// Convert punycode to unicode
|
||||||
if (output.screen_name.includes('@')) {
|
if (output.screen_name.includes('@')) {
|
||||||
const parts = output.screen_name.split('@')
|
const parts = output.screen_name.split('@')
|
||||||
console.log(parts)
|
|
||||||
let unicodeDomain = punycode.toUnicode(parts[1])
|
let unicodeDomain = punycode.toUnicode(parts[1])
|
||||||
if (unicodeDomain !== parts[1]) {
|
if (unicodeDomain !== parts[1]) {
|
||||||
// Add some identifier so users can potentially spot spoofing attempts:
|
// Add some identifier so users can potentially spot spoofing attempts:
|
||||||
|
|
12
src/services/locale/locale.service.js
Normal file
12
src/services/locale/locale.service.js
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
const specialLanguageCodes = {
|
||||||
|
'ja_easy': 'ja',
|
||||||
|
'zh_Hant': 'zh-HANT'
|
||||||
|
}
|
||||||
|
|
||||||
|
const internalToBrowserLocale = code => specialLanguageCodes[code] || code
|
||||||
|
|
||||||
|
const localeService = {
|
||||||
|
internalToBrowserLocale
|
||||||
|
}
|
||||||
|
|
||||||
|
export default localeService
|
|
@ -242,9 +242,18 @@ export const generateShadows = (input, colors) => {
|
||||||
panelHeader: 'panel',
|
panelHeader: 'panel',
|
||||||
input: 'input'
|
input: 'input'
|
||||||
}
|
}
|
||||||
const inputShadows = input.shadows && !input.themeEngineVersion
|
|
||||||
? shadows2to3(input.shadows, input.opacity)
|
const cleanInputShadows = Object.fromEntries(
|
||||||
: input.shadows || {}
|
Object.entries(input.shadows || {})
|
||||||
|
.map(([name, shadowSlot]) => [
|
||||||
|
name,
|
||||||
|
// defaulting color to black to avoid potential problems
|
||||||
|
shadowSlot.map(shadowDef => ({ color: '#000000', ...shadowDef }))
|
||||||
|
])
|
||||||
|
)
|
||||||
|
const inputShadows = cleanInputShadows && !input.themeEngineVersion
|
||||||
|
? shadows2to3(cleanInputShadows, input.opacity)
|
||||||
|
: cleanInputShadows || {}
|
||||||
const shadows = Object.entries({
|
const shadows = Object.entries({
|
||||||
...DEFAULT_SHADOWS,
|
...DEFAULT_SHADOWS,
|
||||||
...inputShadows
|
...inputShadows
|
||||||
|
|
Loading…
Reference in a new issue