I don't understand the difference between `any` and `unknown`, but the
type signatures before this branch had `Record<string, any> | null`,
and this code passes the typecheck… mah
2024.10 or 2024.11 added a `<div>` around `<MkAd>`, but while `MkAd`
checks if ads should be shown, and generates an empty `<div>` if not,
the wrapper `div` was always shown.
This commit takes the same logic from `MkAd` and applies it to the
wrapper as well.
thanks to @puppygirlhornypost for noticing
if `requireSigninToViewContents` in on, no notes are included in the
feed
notes covered by `makeNotesFollowersOnlyBefore` and
`makeNotesHiddenBefore` are skipped
misskey still doesn't have these… I'm putting them here because these
are not Sharkey-specific strings
and yes, this *will* cause conflicts on the next merge
when switching between accounts, with many tabs open (10 seem to be
enough), they all hit the endpoint at the same time, and some get rate
limited.
treating a 429 as a fatal error confuses the frontend, which ends up
logging the user out of all their accounts.
this code makes the frontend retry, after waiting the appropriate
amount of time.
seems to work fine in my testing.
clicking on the username of the collapsed replied-to note, opens the
note instead of navigating to the user's profile
clicking the avatar still goes to the profile
it's sensible to show the pinned notes first *if they exist*
if there's nothing pinned, we're just showing an empty list
let's show the "notes" tab in that case
Previously, when the note was collapsed, it didn't get updates such
as reactions from streaming server. This was a problem, as any change
made to the post before it got uncollapsed would end up being ignored.
I literally tried this before and it didn't work I have witnesses
Before, when I set it to 100%, it became 64 pixels tall
Piuvas witnessed this happen and tried to help me debug it
at some point it just suddenly started working and we have no clue how
Witnessed-by: piuvas <piuvas@proton.me>
Co-authored-by: piuvas <piuvas@proton.me>
Full list of changes:
- Visual clarification for when certain UI elements are disabled
- Fix the play/pause button not being reactive due to isPlaying being a getter (technically a hack but it's probably fine)
- Makes sure to use `comment` instead of `flashFile.comment` as condition for the ALT text icon being visible
These can be replaced later when Ruffle API v1 releases with proper TypeScript definitions and such: https://github.com/ruffle-rs/ruffle/pull/17939
I am planning to do so myself when that happens.
For now, Dinnerbone has graciously provided us with type definitions of the current API.
Co-authored-by: Nathan Adams <dinnerbone@dinnerbone.com>
This commit has a long story behind it.
Removes Ruffle from /scripts/ and instead always loads the installed version from unpkg, Ruffle's preferred CDN.
This requires having unpkg in the CORS rules.
Ruffle is also loaded from the CDN in dev mode. To help with this an externalPackages array has been added to the vite dev config.
Co-authored-by: Julia Johannesen <julia@insertdomain.name>
This prevents an edge case where the server begins processing inbound API / AP requests before any of the chart / management daemons are ready, potentially leading to incorrect chart statistics.
those objects always have the normal prototype, and can't have
`hasOwnProperty` redefined, let me call it normally
(otherwise I'd have to write
`Object.prototype.hasOwnProperty.call(newUser, field)` and that's
ugly)
* editing _just the poll_ is now recognised as an actual change to the
note
* the "poll ended" notification job is now replaced (with potentially
the new expiry time)
* Fix type error in security fixes
(cherry picked from commit fa3cf6c299)
* Fix error in test function calls
(cherry picked from commit 1758f29364)
* Fix style error
(cherry picked from commit 23c4aa2571)
* Fix another style error
(cherry picked from commit 36af07abe2)
* Fix `.punyHost` misuse
(cherry picked from commit 6027b516e1)
* attempt to fix test: make yaml valid
---------
Co-authored-by: Julia Johannesen <julia@insertdomain.name>
* enhance: Add a few validation fixes from Sharkey
See the original MR on the GitLab instance:
https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/484
Co-Authored-By: Dakkar <dakkar@thenautilus.net>
* fix: primitive 2: acceptance of cross-origin alternate
Co-Authored-By: Laura Hausmann <laura@hausmann.dev>
* fix: primitive 3: validation of non-final url
* fix: primitive 4: missing same-origin identifier validation of collection-wrapped activities
* fix: primitives 5 & 8: reject activities with non
string identifiers
Co-Authored-By: Laura Hausmann <laura@hausmann.dev>
* fix: primitive 6: reject anonymous objects that were fetched by their id
* fix: primitives 9, 10 & 11: http signature validation
doesn't enforce required headers or specify auth header name
Co-Authored-By: Laura Hausmann <laura@hausmann.dev>
* fix: primitive 14: improper validation of outbox, followers, following & shared inbox collections
* fix: code style for primitive 14
* fix: primitive 15: improper same-origin validation for
note uri and url
Co-Authored-By: Laura Hausmann <laura@hausmann.dev>
* fix: primitive 16: improper same-origin validation for user uri and url
* fix: primitive 17: note same-origin identifier validation can be bypassed by wrapping the id in an array
* fix: code style for primitive 17
* fix: check attribution against actor in notes
While this isn't strictly required to fix the exploits at hand, this
mirrors the fix in `ApQuestionService` for GHSA-5h8r-gq97-xv69, as a
preemptive countermeasure.
* fix: primitive 18: `ap/get` bypasses access checks
One might argue that we could make this one actually preform access
checks against the returned activity object, but I feel like that's a
lot more work than just restricting it to administrators, since, to me
at least, it seems more like a debugging tool than anything else.
* fix: primitive 19 & 20: respect blocks and hide more
Ideally, the user property should also be hidden (as leaving it in leaks
information slightly), but given the schema of the note endpoint, I
don't think that would be possible without introducing some kind of
"ghost" user, who is attributed for posts by users who have you blocked.
* fix: primitives 21, 22, and 23: reuse resolver
This also increases the default `recursionLimit` for `Resolver`, as it
theoretically will go higher that it previously would and could possibly
fail on non-malicious collection activities.
* fix: primitives 25-33: proper local instance checks
* revert: fix: primitive 19 & 20
This reverts commit 465a9fe6591de90f78bd3d084e3c01e65dc3cf3c.
---------
Co-authored-by: Dakkar <dakkar@thenautilus.net>
Co-authored-by: Laura Hausmann <laura@hausmann.dev>
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
* FEAT: Allow users to view pending follow requests they sent
This commit implements the `following/requests/sent` interface firstly
implemented on Firefish, and provides a UI interface to view the pending
follow requests users sent.
* ux: should not show follow requests tab when have no pending sent follow req
* fix default followreq tab
* fix default followreq tab
* restore missing hasPendingReceivedFollowRequest in navbar
* refactor
* use tabler icons
* tweak design
* Revert "ux: should not show follow requests tab when have no pending sent follow req"
This reverts commit e580b92c37f27c2849c6d27e22ca4c47086081bb.
* Update Changelog
* Update Changelog
* change tab titles
---------
Co-authored-by: Lhc_fl <lhcfl@outlook.com>
Co-authored-by: Hazelnoot <acomputerdog@gmail.com>
* fix: make sure mentions of local users get rendered correctly during AP delivery (resolves#645)
* Update Changelog
* indent
---------
Co-authored-by: Laura Hausmann <laura@hausmann.dev>
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
* Check if time-based achievements are unlocked before initializing them in main-boot
(cherry picked from commit c0702fd92f)
* Update Changelog
---------
Co-authored-by: Evan Paterakis <evan@geopjr.dev>
* fix(frontend): Make post form attachments accessible
Adds a role="button", tabindex, and @keydown to MkPostFormAttaches in
order to make it accessible to keyboard users.
* Fix for linter
* Add spacing in type signature
🔒 Found a security vulnerability? [Please disclose it responsibly.](https://activitypub.software/TransFem-org/Sharkey/-/blob/develop/SECURITY.md)
🤝 By submitting this feature request, you agree to follow our [Contribution Guidelines.](https://activitypub.software/TransFem-org/Sharkey/-/blob/develop/CONTRIBUTING.md) -->
**What happened?** _(Please give us a brief description of what happened.)_
# **What happened?**
<!-- Please give us a brief description of what happened. -->
**What did you expect to happen?** _(Please give us a brief description of what you expected to happen.)_
# **What did you expect to happen?**
<!-- Please give us a brief description of what you expected to happen. -->
**Version** _(What version of Sharkey is your instance running? You can find this by clicking your instance's logo at the top left and then clicking instance information.)_
# **Version**
<!-- What version of Sharkey is your instance running? You can find this by clicking your instance's logo at the top left and then clicking instance information. -->
**Instance** _(What instance of Sharkey are you using?)_
# **Instance**
<!-- What instance of Sharkey are you using? -->
**What type of issue is this?** _(If this happens on your device and has to do with the user interface, it's client-side. If this happens on either with the API or the backend, or you got a server-side error in the client, it's server-side.)_
# **What type of issue is this?**
<!-- If this happens on your device and has to do with the user interface, it's client-side. If this happens on either with the API or the backend, or you got a server-side error in the client, it's server-side. -->
**What browser are you using? (Client-side issues only)**
# **What browser are you using? (Client-side issues only)**
**What operating system are you using? (Client-side issues only)**
# **What operating system are you using? (Client-side issues only)**
**How do you deploy Sharkey on your server? (Server-side issues only)**
# **How do you deploy Sharkey on your server? (Server-side issues only)**
**What operating system are you using? (Server-side issues only)**
# **What operating system are you using? (Server-side issues only)**
**Relevant log output** _(Please copy and paste any relevant log output. You can find your log by inspecting the page, and going to the "console" tab. This will be automatically formatted into code, so no need for backticks.)_
# **Relevant log output**
<!-- Please copy and paste any relevant log output. You can find your log by inspecting the page, and going to the "console" tab. This will be automatically formatted into code, so no need for backticks. -->
**Contribution Guidelines**
# **Contribution Guidelines**
By submitting this issue, you agree to follow our [Contribution Guidelines](https://activitypub.software/TransFem-org/Sharkey/-/blob/develop/CONTRIBUTING.md)
- [ ] I agree to follow this project's Contribution Guidelines
- [ ] I have searched the issue tracker for similar issues, and this is not a duplicate.
🔒 Found a security vulnerability? [Please disclose it responsibly.](https://activitypub.software/TransFem-org/Sharkey/-/blob/develop/SECURITY.md)
🤝 By submitting this feature request, you agree to follow our [Contribution Guidelines.](https://activitypub.software/TransFem-org/Sharkey/-/blob/develop/CONTRIBUTING.md) -->
**What feature would you like implemented?** _(Please give us a brief description of what you'd like.)_
# **What feature would you like implemented?**
<!-- Please give us a brief description of what you'd like. -->
**Why should we add this feature?** _(Please give us a brief description of why your feature is important.)_
# **Why should we add this feature?**
<!-- Please give us a brief description of why your feature is important. -->
**Version** _(What version of Sharkey is your instance running? You can find this by clicking your instance's logo at the top left and then clicking instance information.)_
# **Version**
<!-- What version of Sharkey is your instance running? You can find this by clicking your instance's logo at the top left and then clicking instance information. -->
**Instance** _(What instance of Sharkey are you using?)_
# **Instance**
<!-- What instance of Sharkey are you using? -->
**Contribution Guidelines**
# **Contribution Guidelines**
By submitting this issue, you agree to follow our [Contribution Guidelines](https://activitypub.software/TransFem-org/Sharkey/-/blob/develop/CONTRIBUTING.md)
- [ ] I agree to follow this project's Contribution Guidelines
- [ ] I have searched the issue tracker for similar requests, and this is not a duplicate.
<!-- Thanks for taking the time to make Sharkey better! -->
**What does this PR do?** _(Please give us a brief description of what this PR does.)_
# **What does this MR do?**
<!-- Please give us a brief description of what this PR does. -->
**Contribution Guidelines**
# **Contribution Guidelines**
By submitting this merge request, you agree to follow our [Contribution Guidelines](https://activitypub.software/TransFem-org/Sharkey/-/blob/develop/CONTRIBUTING.md)
- [ ] I agree to follow this project's Contribution Guidelines
- [ ] I have made sure to test this pull request
- [ ] I have made sure to test this merge request
<!-- Uncomment if your merge request has multiple authors -->
@ -62,9 +62,29 @@ Thank you for your PR! Before creating a PR, please check the following:
Thanks for your cooperation 🤗
### Additional things for ActivityPub payload changes
*This section is specific to misskey-dev implementation. Other fork or implementation may take different way. A significant difference is that non-"misskey-dev" extension is not described in the misskey-hub's document.*
If PR includes changes to ActivityPub payload, please reflect it in [misskey-hub's document](https://github.com/misskey-dev/misskey-hub-next/blob/master/content/ns.md) by sending PR.
The name of purporsed extension property (referred as "extended property" in later) to ActivityPub shall be prefixed by `_misskey_`. (i.e. `_misskey_quote`)
The extended property in `packages/backend/src/core/activitypub/type.ts`**must** be declared as optional because ActivityPub payloads that comes from older Misskey or other implementation may not contain it.
The extended property must be included in the context definition. Context is defined in `packages/backend/src/core/activitypub/misc/contexts.ts`.
The key shall be same as the name of extended property, and the value shall be same as "short IRI".
"Short IRI" is defined in misskey-hub's document, but usually takes form of `misskey:<name of extended property>`. (i.e. `misskey:_misskey_quote`)
One should not add property that has defined before by other implementation, or add custom variant value to "well-known" property.
## Reviewers guide
Be willing to comment on the good points and not just the things you want fixed 💯
@ -79,6 +99,29 @@ Be willing to comment on the good points and not just the things you want fixed
- Are there any omissions or gaps?
- Does it check for anomalies?
## Security Advisory
### For reporter
Thank you for your reporting!
If you can also create a patch to fix the vulnerability, please create a PR on the private fork.
> [!note]
> There is a GitHub bug that prevents merging if a PR not following the develop branch of upstream, so please keep follow the develop branch.
### For misskey-dev member
修正PRがdevelopに追従されていないとマージできないので、マージできなかったら
> Could you merge or rebase onto upstream develop branch?
などと伝える。
## Deploy
The `/deploy` command by issue comment can be used to deploy the contents of a PR to the preview environment.
```
/deploy sha=<commithash>
```
An actual domain will be assigned so you can test the federation.
## Merge
## Release
@ -107,7 +150,8 @@ You can improve our translations with your Crowdin account.
Your changes in Crowdin are automatically submitted as a PR (with the title "New Crowdin translations") to the repository.
The owner [@syuilo](https://github.com/syuilo) merges the PR into the develop branch before the next release.
If your language is not listed in Crowdin, please open an issue.
If your language is not listed in Crowdin, please open an issue. We will add it to Crowdin.
For newly added languages, once the translation progress per language exceeds 70%, it will be officially introduced into Misskey and made available to users.
introMisskey:"Benvingut! Misskey és un servei de microblogging descentralitzat de codi obert.\nCrea \"notes\" per compartir els teus pensaments amb tots els que t'envolten. 📡\nAmb \"reaccions\", també pots expressar ràpidament els teus sentiments sobre les notes de tothom. 👍\nExplorem un món nou! 🚀"
poweredByMisskeyDescription:"{name} És un del serveis (anomenats instàncies de Misskey) que utilitzen la plataforma de codi obert <b>Misskey</b>."
poweredByMisskeyDescription:"{name} És un dels serveis (anomenats instàncies de Misskey) que utilitzen la plataforma de codi obert <b>Misskey</b>."
monthAndDay:"{day}/{month}"
search:"Cercar"
notifications:"Notificacions"
username:"Nom d'usuari"
password:"Contrasenya"
initialPasswordForSetup:"Contrasenya inicial per la configuració inicial"
initialPasswordForSetup:"Contrasenya inicial per fer la primera configuració "
initialPasswordIsIncorrect:"La contrasenya no és correcta."
forgotPassword:"Contrasenya oblidada"
fetchingAsApObject:"Cercant en el Fediverse..."
initialPasswordForSetupDescription:"Fes servir la contrasenya que has fet servir al fitxer de configuració, si tu mateix has instal·lat Misskey.\nSi fas servir una empresa d'allotjament de Misskey, fes servir la contrasenya que t'han donat.\nSi no has posat cap contrasenya deixar l'espai en blanc."
forgotPassword:"Restableix la contrasenya "
fetchingAsApObject:"Cercant al Fediverse..."
ok:"OK"
gotIt:"Ho he entès!"
gotIt:"D'acord "
cancel:"Cancel·lar"
noThankYou:"No, gràcies"
enterUsername:"Introdueix el teu nom d'usuari"
renotedBy:"Impulsat per {usuari}"
renotedBy:"Impulsat per {user}"
noNotes:"Cap nota"
noNotifications:"Cap notificació"
instance:"Servidor"
instance:"Instància "
settings:"Preferències"
notificationSettings:"Paràmetres de notificacions"
notificationSettings:"Configurar les notificacions"
basicSettings:"Configuració bàsica"
otherSettings:"Configuració avançada"
openInWindow:"Obrir en una nova finestra"
otherSettings:"Altres configuracions"
openInWindow:"Obrir en una finestra nova"
profile:"Perfil"
timeline:"Línia de temps"
noAccountDescription:"Aquest usuari encara no ha escrit la seva biografia."
login:"Iniciar sessió"
loggingIn:"Identificant-se"
loggingIn:"Iniciar la sessió "
logout:"Tancar la sessió"
signup:"Registrar-se"
uploading:"Pujant..."
save:"Desa"
users:"Usuaris"
addUser:"Afegir un usuari"
favorite:"Afegir a preferits"
favorite:"Afegeix als preferits"
favorites:"Favorits"
unfavorite:"Eliminar dels preferits"
favorited:"Afegit als preferits."
@ -49,26 +50,26 @@ copyContent: "Copiar el contingut"
copyLink:"Copiar l'enllaç"
copyLinkRenote:"Copiar l'enllaç de la renota"
delete:"Elimina"
deleteAndEdit:"Elimina i edita"
deleteAndEdit:"Eliminar i editar"
deleteAndEditConfirm:"Segur que vols eliminar aquesta publicació i editar-la? Perdràs totes les reaccions, impulsos i respostes."
addToList:"Afegir a una llista"
addToAntenna:"Afegir a l'antena"
addToAntenna:"Afegir a una antena"
sendMessage:"Enviar un missatge"
copyRSS:"Copiar RSS"
copyUsername:"Copiar nom d'usuari"
copyUserId:"Copiar ID d'usuari"
copyNoteId:"Copiar ID de nota"
copyFileId:"Copiar ID d'arxiu"
copyFolderId:"Copiar ID de carpeta"
copyProfileUrl:"Copiar URL del perfil"
copyNoteId:"Copiar ID de la nota"
copyFileId:"Copiar ID de l'arxiu"
copyFolderId:"Copiar ID de la carpeta"
copyProfileUrl:"Copiar adreça URL del perfil"
searchUser:"Cercar un usuari"
searchThisUsersNotes:"Cerca les publicacions de l'usuari"
reply:"Respondre"
searchThisUsersNotes:"Cercar les publicacions de l'usuari"
reply:"Respon"
loadMore:"Carregar més"
showMore:"Veure més"
showLess:"Mostra menys"
showLess:"Mostrar menys"
youGotNewFollower:"t'ha seguit"
receiveFollowRequest:"Sol·licitud de seguiment rebuda"
receiveFollowRequest:"Has rebut una sol·licitud de seguiment"
followRequestAccepted:"Sol·licitud de seguiment acceptada"
driveFileDeleteConfirm:"Estàs segur que vols suprimir el fitxer \"{name}\"? Les notes associades a aquest fitxer adjunt també se suprimiran."
unfollowConfirm:"Estàs segur que vols deixar de seguir {name}?"
exportRequested:"Has sol·licitat una exportació. Això pot trigar una estona. S'afegirà a la teva unitat un cop completat."
importRequested:"Has sol·licitat una importació. Això pot trigar una estona."
download:"Descarregar"
driveFileDeleteConfirm:"Estàs segur que vols suprimir el fitxer \"{name}\"? Les notes associades a aquest fitxer també seran esborrades."
unfollowConfirm:"Segur que vols deixar de seguir a {name}?"
exportRequested:"Has sol·licitat una exportació de dades. Això pot trigar una estona. S'afegirà a la teva unitat de disc un cop estigui completada."
importRequested:"Has sol·licitat una importació de dades. Això pot trigar una estona."
lists:"Llistes"
noLists:"No tens cap llista"
note:"Nota"
notes:"Notes"
following:"Seguint"
following:"Segueixes "
followers:"Seguidors"
followsYou:"Et segueix"
createList:"Crear llista"
manageLists:"Gestionar les llistes"
error:"Error"
somethingHappened:"S'ha produït un error"
retry:"Torna-ho a intentar"
retry:"Torna-ho a provar"
pageLoadError:"S'ha produït un error en carregar la pàgina"
pageLoadErrorDescription:"Això normalment es deu a errors de xarxa o a la memòria cau del navegador. Prova d'esborrar la memòria cau i torna-ho a provar després d'esperar una estona."
pageLoadErrorDescription:"Això normalment és a causa d'errors a la xarxa o a la memòria cau del navegador. Prova d'esborrar la memòria cau i torna-ho a provar després d'esperar un temps."
serverIsDead:"Aquest servidor no respon. Espera una estona i torna-ho a provar."
youShouldUpgradeClient:"Per veure aquesta pàgina, actualitzeu-la per actualitzar el vostre client."
enterListName:"Introdueix un nom per a la llista"
@ -103,52 +104,52 @@ privacy: "Privadesa"
makeFollowManuallyApprove:"Les sol·licituds de seguiment requereixen aprovació"
defaultNoteVisibility:"Visibilitat per defecte"
follow:"Seguint"
followRequest:"Enviar la sol·licitud de seguiment"
followRequest:"Enviar sol·licitud de seguiment"
followRequests:"Sol·licituds de seguiment"
unfollow:"Deixar de seguir"
followRequestPending:"Sol·licituds de seguiment pendents"
enterEmoji:"Introduir un emoji"
renote:"Impulsa"
renote:"Impulsar "
unrenote:"Anul·la l'impuls"
renoted:"S'ha impulsat"
renotedToX:"Impulsat per {name}."
cantRenote:"No es pot impulsar aquesta publicació"
cantReRenote:"No es pot impulsar l'impuls."
cantReRenote:"No es pot impulsar un impuls."
quote:"Cita"
inChannelRenote:"Renotar només al Canal"
inChannelQuote:"Citar només al Canal"
renoteToChannel:"Impulsa a un canal"
renoteToOtherChannel:"Impulsa a un altre canal"
inChannelRenote:"Impulsar només a un canal"
inChannelQuote:"Citar només a un canal"
renoteToChannel:"Impulsar a un canal"
renoteToOtherChannel:"Impulsar a un altre canal"
pinnedNote:"Nota fixada"
pinned:"Fixar al perfil"
you:"Tu"
clickToShow:"Fes clic per mostrar"
sensitive:"NSFW"
sensitive:"Sensible"
add:"Afegir"
reaction:"Reaccions"
reaction:"Reacció "
reactions:"Reaccions"
emojiPicker:"Selecció d'emojis"
pinnedEmojisForReactionSettingDescription:"Selecciona l'emoji amb el qual reaccionar"
pinnedEmojisSettingDescription:"Selecciona l'emoji amb el qual reaccionar"
emojiPickerDisplay:"Visualitza el selector d'emojis"
emojiPicker:"Selector d'emojis"
pinnedEmojisForReactionSettingDescription:"Selecciona l'emoji amb qui vols reaccionar"
pinnedEmojisSettingDescription:"Selecciona quins emojis vols deixar fixats i es mostrin en obrir el selector d'emojis"
emojiPickerDisplay:"Mostrar el selector d'emojis"
overwriteFromPinnedEmojisForReaction:"Reemplaça els emojis de la reacció"
overwriteFromPinnedEmojis:"Sobreescriu des dels emojis fixats"
overwriteFromPinnedEmojis:"Sobreescriu els emojis fixats al panel de reaccions"
reactionSettingDescription2:"Arrossega per reordenar, fes clic per suprimir, prem \"+\" per afegir."
rememberNoteVisibility:"Recorda la configuració de visibilitat de les notes"
attachCancel:"Eliminar el fitxer adjunt"
deleteFile:"Esborrar l'arxiu "
markAsSensitive:"Marcar com a NSFW"
markAsSensitive:"Marcar com a sensible"
unmarkAsSensitive:"Deixar de marcar com a sensible"
enterFileName:"Defineix nom del fitxer"
mute:"Silencia"
unmute:"Deixa de silenciar"
renoteMute:"Silenciar Renotes"
renoteUnmute:"Treure el silenci de les renotes"
renoteMute:"Silenciar impulsos"
renoteUnmute:"Treure el silenci dels impulsos"
block:"Bloqueja"
unblock:"Desbloqueja"
suspend:"Suspèn"
unsuspend:"Deixa de suspendre"
blockConfirm:"Vols bloquejar?"
blockConfirm:"Vols bloquejar-lo?"
unblockConfirm:"Vols desbloquejar-lo?"
suspendConfirm:"Estàs segur que vols suspendre aquest compte?"
unsuspendConfirm:"Estàs segur que vols treure la suspensió d'aquest compte?"
@ -174,11 +175,11 @@ youCanCleanRemoteFilesCache: "Pots netejar la memòria cau fent clic al botó de
cacheRemoteSensitiveFiles:"Posar a la memòria cau arxius remots sensibles"
cacheRemoteSensitiveFilesDescription:"Quan aquesta opció és desactiva, els arxius remots sensibles es carregant directament del servidor d'origen sense que es guardin a la memòria cau."
flagAsBot:"Marca aquest compte com a bot"
flagAsBotDescription:"Marca aquest compte com a bot"
flagAsBotDescription:"Activa aquesta opció si el compte el controla un programa. Si s'activa, actuarà com un senyal per altres desenvolupadors per prevenir cadenes d'interacció sense fi i ajustar els paràmetres interns de Misskey pe tractar el compte com un bot."
flagAsCat:"Marca aquest compte com a gat"
flagAsCatDescription:"Activeu aquesta opció per marcar aquest compte com a gat."
flagShowTimelineReplies:"Mostra les respostes a la línia de temps"
flagShowTimelineRepliesDescription:"Mostra les respostes a la línia de temps"
flagShowTimelineRepliesDescription:"Mostra les respostes dels usuaris a les notes d'altres usuaris a la línia de temps."
autoAcceptFollowed:"Aprova automàticament les sol·licituds de seguiment dels usuaris que segueixes"
addAccount:"Afegeix un compte"
reloadAccountsList:"Recarregar la llista de contactes"
@ -267,11 +268,11 @@ instanceFollowers: "Seguidors del servidor"
instanceUsers:"Usuaris del servidor"
changePassword:"Canvia la contrasenya"
security:"Seguretat"
retypedNotMatch:"L'entrada no coincideix"
retypedNotMatch:"Les entrades no coincideix"
currentPassword:"Contrasenya actual"
newPassword:"Contrasenya nova"
newPasswordRetype:"Contrasenya nou (repeteix-la)"
attachFile:"Adjunta fitxers"
newPasswordRetype:"Contrasenya nova (repeteix-la)"
attachFile:"Afegeix un arxiu"
more:"Més"
featured:"Destacat"
usernameOrUserId:"Nom o ID d'usuari"
@ -281,25 +282,25 @@ announcements: "Anuncis"
imageUrl:"URL de la imatge"
remove:"Eliminar"
removed:"Eliminat"
removeAreYouSure:"Segur que voleu retirar «{x}»?"
deleteAreYouSure:"Segur que voleu retirar «{x}»?"
resetAreYouSure:"Segur que voleu restablir-ho?"
areYouSure:"Està segur?"
removeAreYouSure:"Segur que vols esborrar «{x}»?"
deleteAreYouSure:"Segur que vols esborrar «{x}»?"
resetAreYouSure:"Segur que vols restablir-ho?"
areYouSure:"Estàs segur?"
saved:"S'ha desat"
messaging:"Xat"
upload:"Puja"
keepOriginalUploading:"Guarda la imatge original"
keepOriginalUploadingDescription:"Guarda la imatge pujada com hi és. Si està apagat, una versió per a la visualització a la xarxa serà generada quan sigui pujada."
fromDrive:"Des de la unitat"
keepOriginalUploadingDescription:"Guarda la imatge pujada sense modificar. Si està desactivat, es generarà una versió per visualitzar a la web en pujar la imatge."
fromDrive:"Des del Disc"
fromUrl:"Des d'un enllaç"
uploadFromUrl:"Carrega des d'un enllaç"
uploadFromUrlDescription:"Enllaç del fitxer que vols carregar"
uploadFromUrlRequested:"Càrrega sol·licitada"
uploadFromUrlMayTakeTime:"La càrrega des de l'enllaç pot prendre un temps"
uploadFromUrlMayTakeTime:"La càrrega des de l'enllaç pot trigar un temps"
explore:"Explora"
messageRead:"Vist"
noMoreHistory:"No hi resta més per veure"
startMessaging:"Començar a xatejar"
noMoreHistory:"No hi ha res més per veure"
startMessaging:"Comença a xatejar"
nUsersRead:"Vist per {n}"
agreeTo:"Accepto que {0}"
agree:"Hi estic d'acord"
@ -311,7 +312,7 @@ home: "Inici"
remoteUserCaution:"Ja que aquest usuari resideix a una instància remota, la informació mostrada es podria trobar incompleta."
activity:"Activitat"
images:"Imatges"
image:"Imatges"
image:"Imatge"
birthday:"Aniversari"
yearsOld:"{age} anys"
registeredDate:"Data de registre"
@ -326,10 +327,10 @@ darkThemes: "Temes foscos"
syncDeviceDarkMode:"Sincronitza el mode fosc amb la configuració del dispositiu"
drive:"Unitat"
fileName:"Nom del Fitxer"
selectFile:"Selecciona fitxers"
selectFile:"Selecciona un fitxer"
selectFiles:"Selecciona fitxers"
selectFolder:"Selecció de carpeta"
selectFolders:"Selecció de carpeta"
selectFolders:"Selecció de carpetes"
fileNotSelected:"Cap fitxer seleccionat"
renameFile:"Canvia el nom del fitxer"
folderName:"Nom de la carpeta"
@ -358,9 +359,9 @@ reload: "Actualitza"
doNothing:"Ignora"
reloadConfirm:"Vols recarregar?"
watch:"Veure"
unwatch:"Deixar de veure"
unwatch:"Deixa de veure"
accept:"Acceptar"
reject:"Denegar"
reject:"Denega"
normal:"Normal"
instanceName:"Nom del servidor"
instanceDescription:"Descripció del servidor"
@ -381,7 +382,6 @@ enableLocalTimeline: "Activa la línia de temps local"
enableGlobalTimeline:"Activa la línia de temps global"
disablingTimelinesInfo:"Fins i tot si aquestes línies de temps són desactivades, els administradors i els moderadors poden continuar visualitzant per conveniència."
registration:"Registre"
enableRegistration:"Permet els registres d'usuaris"
invite:"Convida"
driveCapacityPerLocalAccount:"Capacitat del disc per usuaris locals"
driveCapacityPerRemoteAccount:"Capacitat del disc per usuaris remots"
useSoundOnlyWhenActive:"Reproduir sons només quan Misskey estigui actiu"
details:"Detalls"
renoteDetails:"Més informació sobre l'impuls "
chooseEmoji:"Tria un emoji"
unableToProcess:"L'operació no pot ser completada "
recentUsed:"Utilitzat recentment"
install:"Instal·lació "
uninstall:"Desinstal·lar "
uninstall:"Desinstal·la"
installedApps:"Aplicacions autoritzades "
nothing:"No hi ha res per veure aquí "
installedDate:"Data d'instal·lació"
@ -607,13 +608,13 @@ output: "Sortida"
script:"Script"
disablePagesScript:"Desactivar AiScript a les pàgines "
updateRemoteUser:"Actualitzar la informació de l'usuari remot"
unsetUserAvatar:"Desactivar l'avatar "
unsetUserAvatar:"Desactiva l'avatar "
unsetUserAvatarConfirm:"Segur que vols desactivar l'avatar?"
unsetUserBanner:"Desactivar el bàner "
unsetUserBanner:"Desactiva el bàner "
unsetUserBannerConfirm:"Segur que vols desactivar el bàner?"
deleteAllFiles:"Esborrar tots els arxius"
deleteAllFiles:"Esborra tots els arxius"
deleteAllFilesConfirm:"Segur que vols esborrar tots els arxius?"
removeAllFollowing:"Deixar de seguir tots els usuaris seguits"
removeAllFollowing:"Deixa de seguir tots els usuaris seguits"
removeAllFollowingDescription:"El fet d'executar això, et farà deixar de seguir a tots els usuaris de {host}. Si us plau, executa això si l'amfitrió, per exemple, ja no existeix."
userSuspended:"Aquest usuari ha sigut suspès"
userSilenced:"Aquest usuari està sent silenciat"
@ -946,6 +947,9 @@ oneHour: "1 hora"
oneDay:"Un dia"
oneWeek:"Una setmana"
oneMonth:"Un mes"
threeMonths:"3 mesos"
oneYear:"1 any"
threeDays:"3 dies"
reflectMayTakeTime:"Això pot trigar una estona a tenir efecte"
failedToFetchAccountInformation:"No es pot obtenir la informació del compte"
rateLimitExceeded:"S'ha arribat al màxim de peticions"
@ -1086,6 +1090,7 @@ retryAllQueuesConfirmTitle: "Tornar a intentar-ho tot?"
retryAllQueuesConfirmText:"Això farà que la càrrega del servidor augmenti temporalment."
youHaveUnreadAnnouncements:"Tens informes per llegir."
useSecurityKey:"Segueix les instruccions del teu navegador O dispositiu per fer servir el teu passkey."
replies:"Respondre"
renotes:"Impulsa"
replies:"Respon"
renotes:"Impulsar "
loadReplies:"Mostrar les respostes"
loadConversation:"Mostrar la conversació "
pinnedList:"Llista fixada"
@ -1287,6 +1292,27 @@ passkeyVerificationSucceededButPasswordlessLoginDisabled: "La verificació de la
messageToFollower:"Missatge als meus seguidors"
target:"Assumpte "
testCaptchaWarning:"És una característica dissenyada per a la prova de CAPTCHA. <strong>No l'utilitzes en l'entorn real.</strong>"
prohibitedWordsForNameOfUser:"Noms prohibits per escollir noms d'usuari "
prohibitedWordsForNameOfUserDescription:"Si qualsevol d'aquestes paraules es troben a un nom d'usuari la creació de l'usuari no es durà a terme. Als moderadors no els afecta aquesta restricció."
yourNameContainsProhibitedWords:"El nom conté paraules prohibides "
yourNameContainsProhibitedWordsDescription:"Si de veritat vols fer servir aquest nom posat en contacte amb l'administrador."
thisContentsAreMarkedAsSigninRequiredByAuthor:"L'autor requereix l'inici de sessió per poder veure"
lockdown:"Bloquejat"
pleaseSelectAccount:"Seleccionar un compte"
availableRoles:"Roles disponibles "
acknowledgeNotesAndEnable:"Activa'l després de comprendre els possibles perills."
_accountSettings:
requireSigninToViewContents:"És obligatori l'inici de sessió per poder veure el contingut"
requireSigninToViewContentsDescription1:"Es requereix l'inici de sessió per poder veure totes les notes i el contingut que has creat. Amb això esperem evitar que els rastrejadors recopilin informació."
requireSigninToViewContentsDescription2:"També es desactivaran les vistes prèvies d'URLS (OGP), la incrustació a pàgines web i la visualització des de servidors que no admetin la citació de notes."
requireSigninToViewContentsDescription3:"Aquestes restriccions pot ser que no s'apliquin als continguts federats en servidors remots."
makeNotesFollowersOnlyBefore:"Permetre que les notes antigues només es mostrin als seguidors."
makeNotesFollowersOnlyBeforeDescription:"Mentre aquesta funció estigui activada, les notes que hagin passat la data i hora fixada o hagi passat els temps establert seran visibles només per als teus seguidors. Quan es desactivi, també es restableix l'estat públic de la nota."
makeNotesHiddenBefore:"Fes que les notes antigues siguin privades"
makeNotesHiddenBeforeDescription:"Mentres aquesta funció estigui activada les notes que hagin superat una data i hora fixada o hagi passat el temps establert només seran visibles per a tu. Si la desactives es restablirà també l'estat públic de les notes."
mayNotEffectForFederatedNotes:"Això pot ser que no afecti les notes federades."
notesHavePassedSpecifiedPeriod:"Notes publicades durant un període de temps especificat."
notesOlderThanSpecifiedDateAndTime:"Notes més antigues de la data i temps especificat "
_abuseUserReport:
forward:"Reenviar "
forwardDescription:"Reenvia l'informe a una altra instància com un compte del sistema anònima."
@ -1431,6 +1457,8 @@ _serverSettings:
reactionsBufferingDescription:"Quan s'activa aquesta opció millora bastant el rendiment en recuperar les línies de temps reduint la càrrega de la base. Com a contrapunt, augmentarà l'ús de memòria de Redís. Desactiva aquesta opció en cas de tenir un servidor amb poca memòria o si tens problemes d'inestabilitat."
inquiryUrl:"URL de consulta "
inquiryUrlDescription:"Escriu adreça URL per al formulari de consulta per al mantenidor del servidor o una pàgina web amb el contacte d'informació."
openRegistration:"Registres oberts"
openRegistrationWarning:"Obrir els registres és arriscat. Es recomana obrir-los només si el servidor és monitorat constantment i per respondre immediatament davant qualsevol problema."
thisSettingWillAutomaticallyOffWhenModeratorsInactive:"Si no es detecta activitat per part del moderador durant un període de temps, aquesta opció es desactiva automàticament per evitar el correu brossa."
_accountMigration:
moveFrom:"Migrar un altre compte a aquest"
@ -2151,8 +2179,11 @@ _auth:
permissionAsk:"Aquesta aplicació demana els següents permisos"
pleaseGoBack:"Si us plau, torna a l'aplicació"
callback:"Tornant a l'aplicació"
accepted:"Accés garantit"
denied:"Accés denegat"
scopeUser:"Opera com si fossis aquest usuari"
pleaseLogin:"Si us plau, identificat per autoritzar l'aplicació."
byClickingYouWillBeRedirectedToThisUrl:"Si es garanteix l'accés, seràs redirigit automàticament a la següent adreça URL"
_antennaSources:
all:"Totes les publicacions"
homeTimeline:"Publicacions dels usuaris seguits"
@ -2402,7 +2433,8 @@ _notification:
renotedBySomeUsers:"L'han impulsat {n} usuaris"
followedBySomeUsers:"Et segueixen {n} usuaris"
flushNotification:"Netejar notificacions"
exportOfXCompleted:"Completada l'exportació de {n}"
exportOfXCompleted:"Completada l'exportació de {x}"
login:"Algú ha iniciat sessió "
_types:
all:"Tots"
note:"Notes noves"
@ -2485,6 +2517,8 @@ _webhookSettings:
abuseReport:"Quan reps un nou informe de moderació "
abuseReportResolved:"Quan resols un informe de moderació "
userCreated:"Quan es crea un usuari"
inactiveModeratorsWarning:"Quan el compte d'un moderador no té activitat durant un temps"
inactiveModeratorsInvitationOnlyChanged:"Quan el compte d'un moderador no té activitat durant un temps, i el servidor es canvia a registre per invitacions"
deleteConfirm:"Segur que vols esborrar el webhook?"
testRemarks:"Si feu clic al botó a la dreta de l'interruptor, podeu enviar un webhook de prova amb dades dummy."
_abuseReport:
@ -2612,8 +2646,81 @@ _dataSaver:
description:"Les imatges en miniatura que serveixen com a vista prèvia de les URLs no es tornaran a carregar."
_code:
title:"Ressaltat del codi "
description:"Quan s'utilitza codi MFM, no es llegeix fins que es copiï. En els punts destacats del codi s'han de llegir els fitxers definits per a cada llengua que resulti alt, però no es poden llegir automàticament, per la qual cosa es poden reduir les quantitats de comunicació."
_hemisphere:
N:"Hemisferi Nord "
S:"Hemisferi Sud"
caption:"El fan servir alguns clients per determinar l'estació de l'any."
_reversi:
reversi:"Reversi"
gameSettings:"Opcions del joc"
chooseBoard:"Escull un taulell"
blackOrWhite:"Negres/Blanques"
blackIs:"{name} juga amb negres "
rules:"Regles"
thisGameIsStartedSoon:"El joc començarà en breu"
waitingForOther:"Esperant la tirada de l'oponent "
waitingForMe:"Esperant el teu torn"
waitingBoth:"Prepara't "
ready:"Preparat "
cancelReady:" No preparat "
opponentTurn:"Torn de l'oponent "
myTurn:"El teu torn"
turnOf:"Li toca a {name}"
pastTurnOf:"Torn de {name}"
surrender:"Rendeix-te"
surrendered:"T'has rendit"
timeout:"Temps esgotat"
drawn:"Empat"
won:"{name} ha guanyat"
black:"Negres"
white:"Blanques"
total:"Total"
turnCount:"Torn {count}"
myGames:"Jugades"
allGames:"Totes les jugades"
ended:"Acabat"
playing:"Jugant"
isLlotheo:"Qui tingui menys pedres guanya (Llotheo)"
loopedMap:"Mapa de recursiu"
canPutEverywhere:"Les fitxes es poden posar a qualsevol lloc"
timeLimitForEachTurn:"Temps límit per jugada"
freeMatch:"Partida lliure"
lookingForPlayer:"Buscant contrincant..."
gameCanceled:"La partida s'ha cancel·lat "
shareToTlTheGameWhenStart:"Compartir la partida a la línia de temps quan comenci"
iStartedAGame:"La partida ha començat! #MisskeyReversi"
opponentHasSettingsChanged:"L'oponent h canviat la seva configuració "
showBoardLabels:"Mostrar el número de línia i columna al tauler de joc"
useAvatarAsStone:"Fer servir els avatars dels usuaris com a fitxes"
_offlineScreen:
title:"Fora de línia - No es pot connectar amb el servidor"
header:"Impossible connectar amb el servidor"
_urlPreviewSetting:
title:"Configuració per a la previsualització de l'URL"
enable:"Activa la previsualització de l'URL"
timeout:"Temps màxim per carregar la previsualització de l'URL (ms)"
timeoutDescription:"Si l'obtenció de la previsualització triga més que el temps establert, no es generarà la vista prèvia."
maximumContentLength:"Longitud màxima del contingut (bytes)"
maximumContentLengthDescription:"Si la màxima longitud és més gran que aquest valor, la previsualització no es generarà."
requireContentLength:"Generar la previsualització només si es pot obtenir la longitud màxima "
requireContentLengthDescription:"Si l'altre servidor no proporciona la longitud màxima, la previsualització no es generarà."
userAgent:"User-Agent"
userAgentDescription:"Estableix l'User-Agent que és farà servir per a la recuperació de la vista prèvia. Si és deixa en blanc es farà servir l'User-Agent per defecte."
summaryProxy:"Proxy endpoints per generar vistes prèvies"
summaryProxyDescription:"La vista prèvia es genera fent servir Summaly proxy, no la genera el mateix Misskey."
summaryProxyDescription2:"Els següents paràmetres són passats al proxy com cadenes de consulta. Si el proxy no els admet, s'ignoren els valors configurats."
_mediaControls:
pip:"Imatge sobre impressionada "
playbackRate:"Velocitat de reproducció "
loop:"Reproducció en bucle"
_contextMenu:
title:"Menú contextual"
app:"Aplicació "
appWithShift:"Aplicació amb la tecla shift"
native:"Interfície del navegador"
_embedCodeGen:
title:"Personalitza el codi per incrustar"
header:"Mostrar la capçalera"
@ -2628,3 +2735,12 @@ _embedCodeGen:
generateCode:"Crea el codi per incrustar"
codeGenerated:"Codi generat"
codeGeneratedDescription:"Si us plau, enganxeu el codi generat al lloc web."
_selfXssPrevention:
warning:"Advertència "
title:"\"Enganxa qualsevol cosa en aquesta finestra\" És tot un engany."
description1:"Si posa alguna cosa al seu compte, un usuari malintencionat podria segrestar-la o robar-li les dades."
description2:"Si no entens que estàs fent %cpara ara mateix i tanca la finestra."
initialPasswordForSetup:"Initiales Passwort für die Einrichtung"
initialPasswordIsIncorrect:"Das initiale Passwort für die Einrichtung ist falsch"
initialPasswordForSetupDescription:"Verwende das in der Konfigurationsdatei angegebene Passwort, wenn du Misskey selbst installiert hast.\nWenn du einen Misskey-Hostingdienst o.ä. nutzt, verwende das dort angegebene Kennwort.\nWenn du kein Passwort festgelegt hast, lasse es leer, um fortzufahren."
forgotPassword:"Passwort vergessen"
fetchingAsApObject:"Wird aus dem Fediverse angefragt …"
ok:"OK"
@ -60,6 +63,7 @@ copyFileId: "Datei-ID kopieren"
copyFolderId:"Ordner-ID kopieren"
copyProfileUrl:"Profil-URL kopieren"
searchUser:"Nach einem Benutzer suchen"
searchThisUsersNotes:"Notizen dieses Benutzers suchen"
reply:"Antworten"
loadMore:"Mehr laden"
showMore:"Mehr anzeigen"
@ -108,11 +112,14 @@ enterEmoji: "Gib ein Emoji ein"
renote:"Renote"
unrenote:"Renote zurücknehmen"
renoted:"Renote getätigt."
renotedToX:"Renoted zu {name}."
cantRenote:"Renote dieses Beitrags nicht möglich."
cantReRenote:"Renote einer Renote nicht möglich."
quote:"Zitieren"
inChannelRenote:"Kanal-interner Renote"
inChannelQuote:"Kanal-internes Zitat"
renoteToChannel:"Renote zu Kanal"
renoteToOtherChannel:"Renote zu anderem Kanal"
pinnedNote:"Angeheftete Notiz"
pinned:"Angeheftet"
you:"Du"
@ -124,12 +131,13 @@ reactions: "Reaktionen"
emojiPicker:"Emoji auswählen"
pinnedEmojisForReactionSettingDescription:"Lege Emojis fest, die angepinnt werden sollen, um sie beim Reagieren als Erstes anzuzeigen."
pinnedEmojisSettingDescription:"Lege Emojis fest, die angepinnt werden sollen, um sie in der Emoji-Auswahl als Erstes anzuzeigen"
emojiPickerDisplay:"Anzeige der Emoji-Auswahl"
overwriteFromPinnedEmojisForReaction:"Überschreiben mit den Reaktions-Einstellungen"
overwriteFromPinnedEmojis:"Überschreiben mit den allgemeinen Einstellungen"
reactionSettingDescription2:"Ziehe um Anzuordnen, klicke um zu löschen, drücke „+“ um hinzuzufügen"
chooseServerOnMisskeyHub:"Wähle einen Server aus dem Misskey Hub"
inputHostName:"Gib die Domain an"
general:"Allgemein"
wallpaper:"Hintergrund"
setWallpaper:"Hintergrund festlegen"
@ -186,6 +197,7 @@ followConfirm: "Möchtest du {name} wirklich folgen?"
proxyAccount:"Proxy-Benutzerkonto"
proxyAccountDescription:"Ein Proxy-Konto ist ein Benutzerkonto, das unter bestimmten Bedingungen als Follower für Benutzer fremder Instanzen fungiert. Wenn zum Beispiel ein Benutzer einen Benutzer einer fremden Instanz zu einer Liste hinzufügt, werden die Aktivitäten des entfernten Benutzers nicht an die Instanz übermittelt, wenn kein lokaler Benutzer diesem Benutzer folgt; stattdessen folgt das Proxy-Konto."
host:"Hostname"
selectSelf:"Mich auswählen"
selectUser:"Benutzer auswählen"
recipient:"Empfänger"
annotation:"Anmerkung"
@ -201,6 +213,7 @@ perDay: "Pro Tag"
stopActivityDelivery:"Senden von Aktivitäten einstellen"
blockThisInstance:"Diese Instanz blockieren"
silenceThisInstance:"Instanz stummschalten"
mediaSilenceThisInstance:"Medien dieses Servers stummschalten"
blockedInstancesDescription:"Gib die Hostnamen der Instanzen, welche blockiert werden sollen, durch Zeilenumbrüche getrennt an. Blockierte Instanzen können mit dieser instanz nicht mehr kommunizieren."
silencedInstances:"Stummgeschaltete Instanzen"
silencedInstancesDescription:"Gib die Hostnamen der Instanzen, welche stummgeschaltet werden sollen, durch Zeilenumbrüche getrennt an. Alle Konten dieser Instanzen werden als stummgeschaltet behandelt, können nur noch Follow-Anfragen stellen und wenn nicht gefolgt keine lokalen Konten erwähnen. Blockierte Instanzen sind davon nicht betroffen."
mediaSilencedInstancesDescription:"Gib pro Zeile die Hostnamen der Server ein, dessen Medien du stummschalten möchtest. Alle Benutzerkonten der aufgeführten Server werden als sensibel behandelt und können keine benutzerdefinierten Emojis verwenden. Gesperrte Server sind davon nicht betroffen."
antennaKeywordsDescription:"Zum Nutzen einer \"UND\"-Verknüpfung Einträge mit Leerzeichen trennen, zum Nutzen einer \"ODER\"-Verknüpfung Einträge mit einem Zeilenumbruch trennen"
notifyAntenna:"Über neue Notizen benachrichtigen"
withFileAntenna:"Nur Notizen mit Dateien"
@ -466,6 +483,7 @@ retype: "Erneut eingeben"
noteOf:"Notiz von {user}"
quoteAttached:"Zitat"
quoteQuestion:"Als Zitat anhängen?"
attachAsFileQuestion:"Der Text in der Zwischenablage ist lang. Möchtest du ihn als Textdatei anhängen?"
noMessagesYet:"Noch keine Nachrichten vorhanden"
newMessageExists:"Du hast eine neue Nachricht"
onlyOneFileCanBeAttached:"Es kann pro Nachricht nur eine Datei angehängt werden"
@ -491,7 +509,11 @@ uiLanguage: "Sprache der Benutzeroberfläche"
aboutX:"Über {x}"
emojiStyle:"Emoji-Stil"
native:"Nativ"
menuStyle:"Menü Stil"
style:"Stil"
popup:"Pop-up"
showNoteActionsOnlyHover:"Notizmenü nur bei Mouseover anzeigen"
showReactionsCount:"Zeige die Anzahl der Reaktionen auf Notizen an"
scratchpadDescription:"Die Testumgebung bietet einen Bereich für AiScript-Experimente. Dort kannst du AiScript schreiben, ausführen sowie dessen Auswirkungen auf Misskey überprüfen."
uiInspector:"UI-Inspektor"
output:"Ausgabe"
script:"Skript"
disablePagesScript:"AiScript auf Seiten deaktivieren"
smtpSecureInfo:"Schalte dies aus, falls du STARTTLS verwendest."
testEmail:"Emailversand testen"
wordMute:"Wortstummschaltung"
hardWordMute:"Harte Wort-Stummschaltung"
regexpError:"Fehler in einem regulären Ausdruck"
regexpErrorDescription:"Im regulären Ausdruck deiner in Zeile {line} von {tab}en Wortstummschaltungen ist ein Fehler aufgetreten:"
instanceMute:"Instanzstummschaltungen"
@ -673,6 +697,7 @@ useGlobalSettingDesc: "Ist diese Option aktiviert, werden die Benachrichtigungse
other:"Anderes"
regenerateLoginToken:"Anmeldetoken regenerieren"
regenerateLoginTokenDescription:"Den zur Anmeldung intern verwendeten Token regenerieren. Normalerweise wird dies nicht benötigt. Bei Regeneration werden alle Geräte ausgeloggt."
theKeywordWhenSearchingForCustomEmoji:"Das ist das Schlagwort beim Suchen von benutzerdefinierten Emojis."
setMultipleBySeparatingWithSpace:"Trenne Elemente durch ein Leerzeichen um mehrere Einstellungen zu kofigurieren."
fileIdOrUrl:"Datei-ID oder URL"
behavior:"Verhalten"
@ -882,9 +907,12 @@ makeReactionsPublicDescription: "Jeder wird die Liste deiner gesendeten Reaktion
classic:"Classic"
muteThread:"Thread stummschalten"
unmuteThread:"Threadstummschaltung aufheben"
followingVisibility:"Sichtbarkeit der Gefolgten"
followersVisibility:"Sichtbarkeit der Folgenden"
continueThread:"Weiteren Threadverlauf anzeigen"
deleteAccountConfirm:"Dein Benutzerkonto wird unwiderruflich gelöscht. Trotzdem fortfahren?"
incorrectPassword:"Falsches Passwort."
incorrectTotp:"Das Einmalpasswort ist falsch oder abgelaufen."
reflectMayTakeTime:"Es kann etwas dauern, bis sich dies widerspiegelt."
failedToFetchAccountInformation:"Benutzerkontoinformationen konnten nicht abgefragt werden"
rateLimitExceeded:"Versuchsanzahl überschritten"
@ -982,6 +1013,7 @@ neverShow: "Nicht wieder anzeigen"
remindMeLater:"Vielleicht später"
didYouLikeMisskey:"Gefällt dir Misskey?"
pleaseDonate:"Misskey ist die kostenlose Software, die von {host} verwendet wird. Wir würden uns über Spenden freuen, damit dessen Entwicklung weitergeführt werden kann!"
correspondingSourceIsAvailable:"Der entsprechende Quellcode ist verfügbar unter {anchor}"
sensitiveWordsDescription:"Die Notizsichtbarkeit aller Notizen, die diese Wörter enthalten, wird automatisch auf \"Startseite\" gesetzt. Durch Zeilenumbrüche können mehrere konfiguriert werden."
sensitiveWordsDescription2:"Durch die Verwendung von Leerzeichen können AND-Verknüpfungen angegeben werden und durch das Umgeben von Schrägstrichen können reguläre Ausdrücke verwendet werden."
prohibitedWords:"Verbotene Wörter"
prohibitedWordsDescription:"Aktiviert eine Fehlermeldung, wenn versucht wird, eine Notiz zu veröffentlichen, die das/die eingestellte(n) Wort(e) enthält. Mehrere Begriffe können durch Zeilenumbrüche getrennt festgelegt werden."
prohibitedWordsDescription2:"Durch die Verwendung von Leerzeichen können AND-Verknüpfungen angegeben werden und durch das Umgeben von Schrägstrichen können reguläre Ausdrücke verwendet werden."
hiddenTags:"Ausgeblendete Hashtags"
hiddenTagsDescription:"Die hier eingestellten Tags werden nicht mehr in den Trends angezeigt. Mit der Umschalttaste können mehrere ausgewählt werden."
preservedUsernamesDescription:"Gib zu reservierende Benutzernamen durch Zeilenumbrüche getrennt an. Diese werden für die Registrierung gesperrt, können aber von Administratoren zur manuellen Erstellung von Konten verwendet werden. Existierende Konten, die diese Namen bereits verwenden, werden nicht beeinträchtigt."
createNoteFromTheFile:"Notiz für diese Datei schreiben"
channelArchiveConfirmDescription:"Ein archivierter Kanal taucht nicht mehr in der Kanalliste oder in Suchergebnissen auf. Zudem können ihm keine Beiträge mehr hinzugefügt werden."
thisChannelArchived:"Dieser Kanal wurde archiviert."
@ -1155,6 +1192,9 @@ confirmShowRepliesAll: "Dies ist eine unwiderrufliche Aktion. Wirklich Antworten
confirmHideRepliesAll:"Dies ist eine unwiderrufliche Aktion. Wirklich Antworten von allen momentan gefolgten Benutzern nicht in der Chronik anzeigen?"
externalServices:"Externe Dienste"
sourceCode:"Quellcode"
sourceCodeIsNotYetProvided:"Der Quellcode ist noch nicht verfügbar. Kontaktiere den Administrator, um das Problem zu lösen."
repositoryUrl:"Repository URL"
repositoryUrlOrTarballRequired:"Wenn du kein Repository veröffentlicht hast, musst du stattdessen einen Tarball bereitstellen. Siehe .config/example.yml für weitere Informationen."
impressum:"Impressum"
impressumUrl:"Impressums-URL"
impressumDescription:"In manchen Ländern, wie Deutschland und dessen Umgebung, ist die Angabe von Betreiberinformationen (ein Impressum) bei kommerziellem Betrieb zwingend."
@ -1176,15 +1216,82 @@ signupPendingError: "Beim Überprüfen der Mailadresse ist etwas schiefgelaufen.
cwNotationRequired:"Ist \"Inhaltswarnung verwenden\" aktiviert, muss eine Beschreibung gegeben werden."
doReaction:"Reagieren"
code:"Code"
remainingN:"Verbleibend: {n}"
overwriteContentConfirm:"Bist du sicher, dass du den aktuellen Inhalt überschreiben willst?"
keepOriginalFilenameDescription:"Wenn diese Einstellung deaktiviert ist, wird der Dateiname beim Hochladen automatisch durch eine zufällige Zeichenfolge ersetzt."
noDescription:"Keine Beschreibung vorhanden"
tryAgain:"Bitte später erneut versuchen"
confirmWhenRevealingSensitiveMedia:"Das Anzeigen von sensiblen Medien bestätigen"
sensitiveMediaRevealConfirm:"Es könnte sich um sensible Medien handeln. Möchtest du sie anzeigen?"
createdLists:"Erstellte Listen"
createdAntennas:"Erstellte Antennen"
fromX:"Von {x}"
genEmbedCode:"Einbettungscode generieren"
noteOfThisUser:"Notizen dieses Benutzers"
clipNoteLimitExceeded:"Zu diesem Clip können keine weiteren Notizen hinzugefügt werden."
discard:"Verwerfen"
thereAreNChanges:"Es gibt {n} Änderung(en)"
signinWithPasskey:"Mit Passkey anmelden"
passkeyVerificationFailed:"Die Passkey-Verifizierung ist fehlgeschlagen."
passkeyVerificationSucceededButPasswordlessLoginDisabled:"Die Verifizierung des Passkeys war erfolgreich, aber die passwortlose Anmeldung ist deaktiviert."
messageToFollower:"Nachricht an die Follower"
testCaptchaWarning:"Diese Funktion ist für CAPTCHA-Testzwecke gedacht.\n<strong>Nicht in einer Produktivumgebung verwenden.</strong>"
prohibitedWordsForNameOfUser:"Verbotene Begriffe für Benutzernamen"
prohibitedWordsForNameOfUserDescription:"Wenn eine Zeichenfolge aus dieser Liste im Namen eines Benutzers enthalten ist, wird der Benutzername abgelehnt. Benutzer mit Moderatorenrechten sind von dieser Einschränkung nicht betroffen."
yourNameContainsProhibitedWords:"Dein Name enthält einen verbotenen Begriff"
yourNameContainsProhibitedWordsDescription:"Der Name enthält eine verbotene Zeichenfolge. Wende dich an deinen Serveradministrator, wenn du diesen Namen verwenden möchtest."
pleaseSelectAccount:"Bitte Konto auswählen"
availableRoles:"Verfügbare Rollen"
_accountSettings:
requireSigninToViewContents:"Anmeldung erfordern, um Inhalte anzuzeigen"
requireSigninToViewContentsDescription1:"Erfordere eine Anmeldung, um alle Notizen und andere Inhalte anzuzeigen, die du erstellt hast. Dadurch wird verhindert, dass Crawler deine Informationen sammeln."
requireSigninToViewContentsDescription3:"Diese Einschränkungen gelten möglicherweise nicht für föderierte Inhalte von anderen Servern."
makeNotesFollowersOnlyBefore:"Macht frühere Notizen nur für Follower sichtbar"
mayNotEffectForFederatedNotes:"Dies hat möglicherweise keine Auswirkungen auf Notizen, die an andere Server föderiert werden."
_abuseUserReport:
forward:"Weiterleiten"
forwardDescription:"Leite die Meldung an einen entfernten Server als anonymes Systemkonto weiter."
accept:"Akzeptieren"
reject:"Ablehnen"
_delivery:
stop:"Gesperrt"
_type:
none:"Wird veröffentlicht"
manuallySuspended:"Manuell gesperrt"
_bubbleGame:
howToPlay:"Wie man spielt"
hold:"Halten"
_score:
score:"Spielstand"
scoreYen:"Verdienter Geldbetrag"
highScore:"Höchstpunktzahl"
maxChain:"Maximale Anzahl an Verkettungen"
yen:"{yen} Yen"
_howToPlay:
section1:"Passe die Position an und lasse das Objekt in das Spielfeld fallen."
section2:"Wenn sich zwei Objekte der gleichen Art berühren, verwandeln sie sich in ein anderes Objekt und du bekommst Punkte."
section3:"Das Spiel ist vorbei, wenn die Objekte aus dem Spielfeld herausragen. Versuche eine hohe Punktzahl zu erreichen, indem du die Objekte miteinander verschmelzt, ohne dass das Spielfeld überläuft!"
_announcement:
forExistingUsers:"Nur für existierende Nutzer"
forExistingUsersDescription:"Ist diese Option aktiviert, wird diese Ankündigung nur Nutzern angezeigt, die zum Zeitpunkt der Ankündigung bereits registriert sind. Ist sie deaktiviert, wird sie auch Nutzern, die sich nach dessen Veröffentlichung registrieren, angezeigt."
@ -1228,8 +1335,18 @@ _initialTutorial:
reply:"Klicke auf diesen Button, um auf eine Nachricht zu antworten. Es ist auch möglich, auf Antworten zu antworten und die Unterhaltung wie einen Thread fortzusetzen."
_reaction:
title:"Was sind Reaktionen?"
description:"Auf Notizen kann mit verschiedenen Emojis reagiert werden. Reaktionen ermöglichen es dir, Nuancen auszudrücken, die mit einem einfachen „Gefällt mir“ vielleicht nicht ausgedrückt werden können."
letsTryReacting:"Reaktionen können durch Klicken auf die Schaltfläche „+“ in der Notiz hinzugefügt werden. Versuche, auf diese Beispielnotiz zu reagieren!"
reactToContinue:"Füge eine Reaktion hinzu, um fortzufahren."
reactNotification:"Du erhältst Echtzeit-Benachrichtigungen, wenn jemand auf deine Notiz reagiert."
reactDone:"Du kannst eine Reaktion zurücknehmen, indem du auf den '-' Button drückst."
_timeline:
title:"So funktionieren die Chroniken"
home:"Du kannst Beiträge von den Konten sehen, denen du folgst."
local:"Du kannst Beiträge aller Benutzer auf diesem Server sehen."
social:"Notizen von der Startseite und der lokalen Chronik werden angezeigt."
global:"Du kannst Notizen von allen föderierten Servern sehen."
description2:"Du kannst jederzeit am oberen Rand des Bildschirms zwischen den jeweiligen Chroniken wechseln."
_postNote:
_visibility:
description:"Du kannst einschränken, wer deine Notiz sehen kann."
@ -1237,8 +1354,16 @@ _initialTutorial:
doNotSendConfidencialOnDirect1:"Sei vorsichtig, wenn du sensible Informationen verschickst!"
_cw:
title:"Inhaltswarnung"
_exampleNote:
note:"Ich hatte gerade einen Donut mit Schokoladenüberzug 🍩😋"
_howToMakeAttachmentsSensitive:
tryThisFile:"Versuche, das angehängte Bild als sensibel zu markieren!"
method:"Um einen Anhang als sensibel zu kennzeichnen, klicke auf das Vorschaubild der Datei, um das Menü zu öffnen, und klicke auf „Als sensibel markieren“."
sensitiveSucceeded:"Wenn du Dateien anhängst, stelle bitte die Sensibilität entsprechend der Serverrichtlinien ein."
doItToContinue:"Markiere die angehängte Datei als sensibel, um fortzufahren."
_done:
title:"Du hast das Tutorial abgeschlossen! 🎉"
description:"Die hier beschriebenen Funktionen sind nur ein kleiner Teil dessen, was Misskey zu bieten hat; um mehr darüber zu erfahren, wie du Misskey benutzen kannst, besuche bitte {link}."
_timelineDescription:
local:"In der lokalen Chronik siehst du Notizen von allen Benutzern auf diesem Server."
global:"In der globalen Chronik siehst du Notizen von allen föderierten Servern."
@ -1256,6 +1381,7 @@ _serverSettings:
fanoutTimelineDescription:"Ist diese Option aktiviert, kann eine erhebliche Verbesserung im Abrufen von Chroniken und eine Reduzierung der Datenbankbelastung erzielt werden, im Gegenzug zu einer Steigerung in der Speichernutzung von Redis. Bei geringem Serverspeicher oder Serverinstabilität kann diese Option deaktiviert werden."
fanoutTimelineDbFallback:"Auf die Datenbank zurückfallen"
fanoutTimelineDbFallbackDescription:"Ist diese Option aktiviert, wird die Chronik auf zusätzliche Abfragen in der Datenbank zurückgreifen, wenn sich die Chronik nicht im Cache befindet. Eine Deaktivierung führt zu geringerer Serverlast, aber schränkt den Zeitraum der abrufbaren Chronik ein. "
thisSettingWillAutomaticallyOffWhenModeratorsInactive:"Wenn über einen bestimmten Zeitraum keine Moderatorenaktivität festgestellt wird, wird diese Einstellung automatisch deaktiviert, um Spam zu verhindern."
_accountMigration:
moveFrom:"Von einem anderen Konto zu diesem migrieren"
moveFromSub:"Alias für ein anderes Konto erstellen"
@ -1514,7 +1640,12 @@ _achievements:
title:"Testüberfluss"
description:"Betätige den Benachrichtigungstest mehrfach innerhalb einer extrem kurzen Zeitspanne"
_tutorialCompleted:
title:"Misskey Grundkurs-Diplom"
description:"Tutorial abgeschlossen"
_bubbleGameExplodingHead:
title:"🤯"
_bubbleGameDoubleExplodingHead:
title:"Doppel🤯"
_role:
new:"Rolle erstellen"
edit:"Rolle bearbeiten"
@ -1555,6 +1686,7 @@ _role:
gtlAvailable:"Kann auf die globale Chronik zugreifen"
ltlAvailable:"Kann auf die lokale Chronik zugreifen"
maxHeightDescription:"Der Wert 0 deaktiviert die Einstellung der maximalen Höhe. Gib einen Wert an, um zu verhindern, dass das Widget weiterhin vertikal vergrößert wird."
maxHeightWarn:"Die Begrenzung der maximalen Höhe ist deaktiviert (0). Wenn dies nicht beabsichtigt war, setze die maximale Höhe auf einen Wert fest."
applyToPreview:"Auf die Vorschau anwenden"
generateCode:"Einbettungscode generieren"
codeGenerated:"Der Code wurde generiert"
codeGeneratedDescription:"Füge den generierten Code in deine Website ein, um den Inhalt einzubetten."
_selfXssPrevention:
warning:"WARNUNG"
title:"„Füge in diesen Bereich etwas ein“ ist eine Betrugsmasche."
description1:"Wenn du hier etwas einfügst, könnte ein böswilliger Benutzer dein Konto übernehmen oder deine persönlichen Daten stehlen."
description3:"Weitere Informationen findest du hier. {link}"
retryAllQueuesConfirmText:"This will temporarily increase the server load."
enableChartsForRemoteUser:"Generate remote user data charts"
enableChartsForFederatedInstances:"Generate remote instance data charts"
enableStatsForFederatedInstances:"Receive remote server stats"
showClipButtonInNoteFooter:"Add \"Clip\" to note action menu"
reactionsDisplaySize:"Reaction display size"
limitWidthOfReaction:"Limit the maximum width of reactions and display them in reduced size."
@ -1287,6 +1291,27 @@ passkeyVerificationFailed: "Passkey verification has failed."
passkeyVerificationSucceededButPasswordlessLoginDisabled:"Passkey verification has succeeded but password-less login is disabled."
messageToFollower:"Message to followers"
target:"Target"
testCaptchaWarning:"This function is intended for CAPTCHA testing purposes.\n<strong>Do not use in a production environment.</strong>"
prohibitedWordsForNameOfUser:"Prohibited words for user names"
prohibitedWordsForNameOfUserDescription:"If any of the strings in this list are included in the user's name, the name will be denied. Users with moderator privileges are not affected by this restriction."
yourNameContainsProhibitedWords:"Your name contains prohibited words"
yourNameContainsProhibitedWordsDescription:"If you wish to use this name, please contact your server administrator."
thisContentsAreMarkedAsSigninRequiredByAuthor:"Set by the author to require login to view"
lockdown:"Lockdown"
pleaseSelectAccount:"Select an account"
availableRoles:"Available roles"
_accountSettings:
requireSigninToViewContents:"Require sign-in to view contents"
requireSigninToViewContentsDescription1:"Require login to view all notes and other content you have created. This will have the effect of preventing crawlers from collecting your information."
requireSigninToViewContentsDescription2:"Content will not be displayed in URL previews (OGP), embedded in web pages, or on servers that don't support note quotes."
requireSigninToViewContentsDescription3:"These restrictions may not apply to federated content from other remote servers."
makeNotesFollowersOnlyBefore:"Make past notes to be displayed only to followers"
makeNotesFollowersOnlyBeforeDescription:"While this feature is enabled, only followers can see notes past the set date and time or have been visible for a set time. When it is deactivated, the note publication status will also be restored."
makeNotesHiddenBefore:"Make past notes private"
makeNotesHiddenBeforeDescription:"While this feature is enabled, notes that are past the set date and time or have been visible only to you. When it is deactivated, the note publication status will also be restored."
mayNotEffectForFederatedNotes:"Notes federated to a remote server may not be affected."
notesHavePassedSpecifiedPeriod:"Note that the specified time has passed"
notesOlderThanSpecifiedDateAndTime:"Notes before the specified date and time"
_abuseUserReport:
forward:"Forward"
forwardDescription:"Forward the report to a remote server as an anonymous system account."
@ -1431,6 +1456,9 @@ _serverSettings:
reactionsBufferingDescription:"When enabled, performance during reaction creation will be greatly improved, reducing the load on the database. However, Redis memory usage will increase."
inquiryUrl:"Inquiry URL"
inquiryUrlDescription:"Specify a URL for the inquiry form to the server maintainer or a web page for the contact information."
thisSettingWillAutomaticallyOffWhenModeratorsInactive:"If no moderator activity is detected for a while, this setting will be automatically turned off to prevent spam."
openRegistration:"Open account creation"
openRegistrationWarning:"Opening up registration is risky, so we recommend turning it on only if you are able to constantly monitor your server and respond immediately if any problems arise."
_accountMigration:
moveFrom:"Migrate another account to this one"
moveFromSub:"Create alias to another account"
@ -2150,8 +2178,11 @@ _auth:
permissionAsk:"This application requests the following permissions"
pleaseGoBack:"Please go back to the application"
callback:"Returning to the application"
accepted:"Access granted"
denied:"Access denied"
scopeUser:"Operate as the following user"
pleaseLogin:"Please log in to authorize applications."
byClickingYouWillBeRedirectedToThisUrl:"When access is granted, you will automatically be redirected to the following URL"
_antennaSources:
all:"All notes"
homeTimeline:"Notes from followed users"
@ -2196,7 +2227,7 @@ _widgets:
_userList:
chooseList:"Select a list"
clicker:"Clicker"
birthdayFollowings:"Users who celebrate their birthday today"
birthdayFollowings:"Today's Birthdays"
_cw:
hide:"Hide"
show:"Show content"
@ -2485,6 +2516,8 @@ _webhookSettings:
abuseReport:"When received a new report"
abuseReportResolved:"When resolved report"
userCreated:"When user is created"
inactiveModeratorsWarning:"When moderators have been inactive for a while"
inactiveModeratorsInvitationOnlyChanged:"When a moderator has been inactive for a while, and the server is changed to invitation-only"
deleteConfirm:"Are you sure you want to delete the Webhook?"
testRemarks:"Click the button to the right of the switch to send a test Webhook with dummy data."
_abuseReport:
@ -2701,3 +2734,13 @@ _embedCodeGen:
generateCode:"Generate embed code"
codeGenerated:"The code has been generated"
codeGeneratedDescription:"Paste the generated code into your website to embed the content."
_selfXssPrevention:
warning:"WARNING"
title:"\"Paste something on this screen\" is all a scam."
description1:"If you paste something here, a malicious user could hijack your account or steal your personal information."
description2:"If you do not understand exactly what you are trying to paste, %cstop working right now and close this window."
description3:"For more information, please refer to this. {link}"
_followRequest:
recieved:"Received"
sent:"Sent"
acknowledgeNotesAndEnable:"Be sure you have understood the warnings before turning this on"
initialPasswordForSetup:"Mot de passe initial pour la configuration"
initialPasswordIsIncorrect:"Mot de passe initial pour la configuration est incorrecte"
initialPasswordForSetupDescription:"Utilisez le mot de passe que vous avez entré pour le fichier de configuration si vous avez installé Misskey vous-même.\nSi vous utilisez un service d'hébergement Misskey, utilisez le mot de passe fourni.\nSi vous n'avez pas défini de mot de passe, laissez le champ vide pour continuer."
forgotPassword:"Mot de passe oublié"
fetchingAsApObject:"Récupération depuis le fédiverse …"
ok:"OK"
@ -60,6 +63,7 @@ copyFileId: "Copier l'identifiant du fichier"
copyFolderId:"Copier l'identifiant du dossier"
copyProfileUrl:"Copier l'URL du profil"
searchUser:"Chercher un·e utilisateur·rice"
searchThisUsersNotes:"Cherchez les notes de cet·te utilisateur·rice"
reply:"Répondre"
loadMore:"Afficher plus …"
showMore:"Voir plus"
@ -108,6 +112,7 @@ enterEmoji: "Insérer un émoji"
renote:"Renoter"
unrenote:"Annuler la Renote"
renoted:"Renoté !"
renotedToX:"Renoté en {name}"
cantRenote:"Ce message ne peut pas être renoté."
cantReRenote:"Impossible de renoter une Renote."
quote:"Citer"
@ -151,6 +156,7 @@ editList: "Modifier la liste"
selectChannel:"Sélectionner un canal"
selectAntenna:"Sélectionner une antenne"
editAntenna:"Modifier l'antenne"
createAntenna:"Créer une antenne"
selectWidget:"Sélectionner un widget"
editWidgets:"Modifier les widgets"
editWidgetsExit:"Valider les modifications"
@ -177,6 +183,7 @@ addAccount: "Ajouter un compte"
reloadAccountsList:"Rafraichir la liste des comptes"
loginFailed:"Échec de la connexion"
showOnRemote:"Voir sur l’instance distante"
continueOnRemote:"Continuer sur l'instance distante"
proxyAccountDescription:"Un compte proxy se comporte, dans certaines conditions, comme un·e abonné·e distant·e pour les utilisateurs d'autres instances. Par exemple, quand un·e utilisateur·rice ajoute un·e utilisateur·rice distant·e à une liste, ses notes ne seront pas visibles sur l'instance si personne ne suit cet·te utilisateur·rice. Le compte proxy va donc suivre cet·te utilisateur·rice pour que ses notes soient acheminées."
host:"Serveur distant"
selectSelf:"Sélectionner manuellement"
selectUser:"Sélectionner un·e utilisateur·rice"
recipient:"Destinataire"
annotation:"Commentaires"
@ -320,6 +328,7 @@ renameFolder: "Renommer le dossier"
deleteFolder:"Supprimer le dossier"
folder:"Dossier"
addFile:"Ajouter un fichier"
showFile:"Voir les fichiers"
emptyDrive:"Le Disque est vide"
emptyFolder:"Le dossier est vide"
unableToDelete:"Suppression impossible"
@ -362,7 +371,6 @@ enableLocalTimeline: "Activer le fil local"
enableGlobalTimeline:"Activer le fil global"
disablingTimelinesInfo:"Même si vous désactivez ces fils, les administrateur·rice·s et les modérateur·rice·s pourront toujours y accéder."
registration:"S’inscrire"
enableRegistration:"Autoriser les nouvelles inscriptions"
invite:"Inviter"
driveCapacityPerLocalAccount:"Capacité de stockage du Disque par utilisateur local"
driveCapacityPerRemoteAccount:"Capacité de stockage du Disque par utilisateur distant"
@ -430,10 +438,11 @@ token: "Jeton"
2fa:"Authentification à deux facteurs"
setupOf2fa:"Configuration de l’authentification à deux facteurs"
totp:"Application d'authentification"
totpDescription:"Entrez un mot de passe à usage unique à l'aide d'une application d'authentification"
totpDescription:"Entrer un mot de passe à usage unique à l'aide d'une application d'authentification"
moderator:"Modérateur·rice·s"
moderation:"Modérations"
moderationNote:"Note de modération"
moderationNoteDescription:"Vous pouvez remplir des notes qui seront partagés seulement entre modérateurs."
addModerationNote:"Ajouter une note de modération"
@ -493,6 +502,10 @@ uiLanguage: "Langue d’affichage de l’interface"
aboutX:"À propos de {x}"
emojiStyle:"Style des émojis"
native:"Natif"
menuStyle:"Style du menu"
style:"Style"
drawer:"Sélecteur"
popup:"Pop-up"
showNoteActionsOnlyHover:"Afficher les actions de note uniquement au survol"
showReactionsCount:"Afficher le nombre de réactions des notes"
noHistory:"Pas d'historique"
@ -575,6 +588,7 @@ ascendingOrder: "Ascendant"
descendingOrder:"Descendant"
scratchpad:"ScratchPad"
scratchpadDescription:"ScratchPad fournit un environnement expérimental pour AiScript. Vous pouvez vérifier la rédaction de votre code, sa bonne exécution et le résultat de son interaction avec Misskey."
uiInspector:"Inspecteur UI"
output:"Sortie"
script:"Script"
disablePagesScript:"Désactiver AiScript sur les Pages"
@ -618,7 +632,7 @@ description: "Description"
describeFile:"Ajouter une description d'image"
enterFileDescription:"Saisissez une description"
author:"Auteur·rice"
leaveConfirm:"Vous avez des modifications non-sauvegardées. Voulez-vous les ignorer ?"
leaveConfirm:"Vous avez des modifications nonsauvegardées. Voulez-vous les ignorer ?"
manage:"Gestion"
plugins:"Extensions"
preferencesBackups:"Sauvegarder les paramètres"
@ -828,6 +842,7 @@ administration: "Gestion"
accounts:"Comptes"
switch:"Remplacer"
noMaintainerInformationWarning:"Informations administrateur non configurées."
noInquiryUrlWarning:"L'URL demandé n'est pas définie"
noBotProtectionWarning:"La protection contre les bots n'est pas configurée."
configure:"Configurer"
postToGallery:"Publier dans la galerie"
@ -892,6 +907,7 @@ followersVisibility: "Visibilité des abonnés"
continueThread:"Afficher la suite du fil"
deleteAccountConfirm:"Votre compte sera supprimé. Êtes vous certain ?"
incorrectPassword:"Le mot de passe est incorrect."
incorrectTotp:"Le mot de passe à usage unique est incorrect ou a expiré."
voteConfirm:"Confirmez-vous votre vote pour « {choice} » ?"
hide:"Masquer"
useDrawerReactionPickerForMobile:"Afficher le sélecteur de réactions en tant que panneau sur mobile"
@ -916,6 +932,9 @@ oneHour: "1 heure"
oneDay:"1 jour"
oneWeek:"1 semaine"
oneMonth:"Un mois"
threeMonths:"3 mois"
oneYear:"1 an"
threeDays:"3 jours"
reflectMayTakeTime:"Cela peut prendre un certain temps avant que cela ne se termine."
failedToFetchAccountInformation:"Impossible de récupérer les informations du compte."
rateLimitExceeded:"Limite de taux dépassée"
@ -923,7 +942,7 @@ cropImage: "Recadrer l'image"
cropImageAsk:"Voulez-vous recadrer cette image ?"
cropYes:"Rogner"
cropNo:"Utiliser en l'état"
file:"Fichiers"
file:"Fichier"
recentNHours:"Dernières {n} heures"
recentNDays:"Derniers {n} jours"
noEmailServerWarning:"Serveur de courrier non configuré."
preventAiLearningDescription:"Demander aux robots d'indexation de ne pas utiliser le contenu publié, tel que les notes et les images, dans l'apprentissage automatique d'IA générative. Cela est réalisé en incluant le drapeau « noai » dans la réponse HTML. Une prévention complète n'est toutefois pas possible, car il est au robot d'indexation de respecter cette demande."
options:"Options"
specifyUser:"Spécifier l'utilisateur·rice"
openTagPageConfirm:"Ouvrir une page d'hashtags ?"
specifyHost:"Spécifier un serveur distant"
failedToPreviewUrl:"Aperçu d'URL échoué"
update:"Mettre à jour"
rolesThatCanBeUsedThisEmojiAsReaction:"Rôles qui peuvent utiliser cet émoji comme réaction"
@ -1222,13 +1244,55 @@ enableHorizontalSwipe: "Glisser pour changer d'onglet"
loading:"Chargement en cours"
surrender:"Annuler"
gameRetry:"Réessayer"
notUsePleaseLeaveBlank:"Laisser vide si non utilisé"
useTotp:"Entrer un mot de passe à usage unique"
useBackupCode:"Utiliser le codes de secours"
launchApp:"Lancer l'app"
useNativeUIForVideoAudioPlayer:"Lire les vidéos et audios en utilisant l'UI du navigateur"
keepOriginalFilename:"Garder le nom original du fichier"
keepOriginalFilenameDescription:"Si vous désactivez ce paramètre, les noms de fichiers seront automatiquement remplacés par des noms aléatoires lorsque vous téléchargerez des fichiers."
noDescription:"Il n'y a pas de description"
alwaysConfirmFollow:"Confirmer lors d'un abonnement"
inquiry:"Contact"
tryAgain:"Veuillez réessayer plus tard"
confirmWhenRevealingSensitiveMedia:"Confirmer pour révéler du contenu sensible"
sensitiveMediaRevealConfirm:"Ceci pourrait être du contenu sensible. Voulez-vous l'afficher ?"
createdLists:"Listes créées"
createdAntennas:"Antennes créées"
fromX:"De {x}"
genEmbedCode:"Générer le code d'intégration"
noteOfThisUser:"Notes de cet·te utilisateur·rice"
clipNoteLimitExceeded:"Aucune note supplémentaire ne peut être ajoutée à ce clip."
performance:"Performance"
modified:"Modifié"
discard:"Annuler"
thereAreNChanges:"Il y a {n}modification(s)"
signinWithPasskey:"Se connecter avec une clé d'accès"
unknownWebAuthnKey:"Clé d'accès inconnue."
passkeyVerificationFailed:"La vérification de la clé d'accès a échoué."
passkeyVerificationSucceededButPasswordlessLoginDisabled:"La vérification de la clé d'accès a réussi, mais la connexion sans mot de passe est désactivée."
messageToFollower:"Message aux abonné·es"
target:"Destinataire"
prohibitedWordsForNameOfUser:"Mots interdits pour les noms d'utilisateur·rices"
lockdown:"Verrouiller"
pleaseSelectAccount:"Sélectionner un compte"
availableRoles:"Rôles disponibles"
_abuseUserReport:
forward:"Transférer"
forwardDescription:"Transférer le signalement vers une instance distante en tant qu'anonyme."
resolve:"Résoudre"
accept:"Accepter"
reject:"Rejeter"
resolveTutorial:"Si le signalement est légitime dans son contenu, sélectionnez « Accepter » pour marquer le cas comme résolu par l'affirmative.\nSi le contenu du rapport n'est pas légitime, sélectionnez « Rejeter » pour marquer le cas comme résolu par la négative."
_delivery:
status:"Statut de la diffusion"
stop:"Suspendu·e"
resume:"Reprendre"
_type:
none:"Publié"
manuallySuspended:"Suspendre manuellement"
goneSuspended:"L'instance est suspendue en raison de la suppression de ce dernier"
autoSuspendedForNotResponding:"L'instance est suspendue car elle ne répond pas"
_bubbleGame:
howToPlay:"Comment jouer"
hold:"Réserver"
@ -1239,6 +1303,7 @@ _bubbleGame:
maxChain:"Nombre maximum de chaînes"
yen:"{yen} yens"
estimatedQty:"{qty} pièces"
scoreSweets:"{onigiriQtyWithUnit} Onigiri(s)"
_announcement:
forExistingUsers:"Pour les utilisateurs existants seulement"
needConfirmationToRead:"Exiger la confirmation de la lecture"
@ -1258,6 +1323,7 @@ _initialAccountSetting:
profileSetting:"Paramètres du profil"
privacySetting:"Paramètres de confidentialité"
initialAccountSettingCompleted:"Configuration du profil terminée avec succès !"
haveFun:"Profitez de {name}!"
youCanContinueTutorial:"Vous pouvez procéder au tutoriel sur l'utilisation de {name}(Misskey) ou vous arrêter ici et commencer à l'utiliser immédiatement."
startTutorial:"Démarrer le tutoriel"
skipAreYouSure:"Désirez-vous ignorer la configuration du profil ?"
@ -1351,18 +1417,60 @@ _achievements:
flavor:"Passez un bon moment avec Misskey !"
_notes10:
title:"Quelques notes"
description:"Poster 10 notes"
_notes100:
title:"Beaucoup de notes"
description:"Poster 100 notes"
_notes500:
title:"Couvert de notes"
description:"Poster 500 notes"
_notes1000:
title:"Une montagne de notes"
description:"Poster 1000 notes"
_notes5000:
title:"Débordement de notes"
description:"Poster 5 000 notes"
_notes10000:
title:"Super note"
description:"Poster 10 000 notes"
_notes20000:
title:"Encore... plus... de... notes..."
description:"Poster 20 000 notes"
_notes30000:
title:"Notes notes notes !"
description:"Poster 30 000 notes"
_notes40000:
title:"Usine de notes"
description:"Poster 40 000 notes"
_notes50000:
title:"Planète des notes"
description:"Poster 50 000 notes"
_notes60000:
title:"Quasar de note"
description:"Poster 50 000 notes"
_notes70000:
title:"Trou noir de notes"
description:"Poster 70 000 notes"
_notes80000:
title:"Galaxie de notes"
description:"Poster 80 000 notes"
_notes90000:
title:"Univers de notes"
description:"Poster 90 000 notes"
_notes100000:
title:"ALL YOUR NOTE ARE BELONG TO US"
description:"Poster 100 000 notes"
flavor:"Avez-vous tant de choses à dire ?"
_login3:
title:"Débutant Ⅰ"
title:"Débutant I"
description:"Se connecter pour un total de 3 jours"
flavor:"Dès maintenant, appelez-moi Misskeynaute"
_login7:
title:"Débutant Ⅱ"
title:"Débutant II"
description:"Se connecter pour un total de 7 jours"
flavor:"On s'habitue ?"
_login15:
title:"Débutant Ⅲ"
title:"Débutant III"
description:"Se connecter pour un total de 15 jours"
_login30:
title:"Misskeynaute I"
@ -1386,6 +1494,7 @@ _achievements:
_login500:
title:"Expert I"
description:"Se connecter pour un total de 500 jours"
flavor:"Non, mes amis, j'aime les notes"
_login600:
title:"Expert II"
description:"Se connecter pour un total de 600 jours"
@ -1393,11 +1502,18 @@ _achievements:
title:"Expert III"
description:"Se connecter pour un total de 700 jours"
_login800:
title:"Maître des notes I"
description:"Se connecter pour un total de 800 jours"
_login900:
title:"Maître des notes II"
description:"Se connecter pour un total de 900 jours"
_login1000:
title:"Maître des notes III"
description:"Se connecter pour un total de 1 000 jours"
flavor:"Merci d'utiliser Misskey !"
_noteClipped1:
title:"Je... dois... clip..."
description:"Ajouter sa première note aux clips"
_profileFilled:
title:"Bien préparé"
description:"Configuration de votre profil"
@ -1456,21 +1572,31 @@ _achievements:
_driveFolderCircularReference:
title:"Référence circulaire"
_setNameToSyuilo:
title:"Complexe de dieu"
description:"Vous avez spécifié « syuilo » comme nom"
_passedSinceAccountCreated1:
title:"Premier anniversaire"
description:"Un an est passé depuis la création du compte"
_passedSinceAccountCreated2:
title:"Second anniversaire"
description:"Deux ans sont passés depuis la création du compte"
_passedSinceAccountCreated3:
title:"3ème anniversaire"
description:"Trois ans sont passés depuis la création du compte"
_loggedInOnBirthday:
title:"Joyeux Anniversaire !"
description:"Vous vous êtes connecté à la date de votre anniversaire"
_loggedInOnNewYearsDay:
title:"Bonne année!"
description:"Vous vous êtes connecté le premier jour de l'année"
flavor:"Merci pour le soutient continue sur cette instance."
_cookieClicked:
title:"Jeu de clic sur des cookies"
description:"Cliqué sur un cookie"
flavor:"Attendez une minute, vous êtes sur le mauvais site web ?"
_brainDiver:
title:"Brain Diver"
description:"Poster le lien sur Brain Diver"
flavor:"Misskey-Misskey La-Tu-Ma"
_smashTestNotificationButton:
title:"Débordement de tests"
@ -1478,6 +1604,11 @@ _achievements:
_tutorialCompleted:
title:"Diplôme de la course élémentaire de Misskey"
description:"Terminer le tutoriel"
_bubbleGameExplodingHead:
title:"🤯"
description:"Le plus gros objet du jeu de bulles"
_bubbleGameDoubleExplodingHead:
title:"Double🤯"
_role:
new:"Nouveau rôle"
edit:"Modifier le rôle"
@ -1508,9 +1639,11 @@ _role:
canManageCustomEmojis:"Gestion des émojis personnalisés"
canManageAvatarDecorations:"Gestion des décorations d'avatar"
driveCapacity:"Capacité de stockage du Disque"
antennaMax:"Nombre maximum d'antennes"
wordMuteMax:"Nombre maximal de caractères dans le filtre de mots"
canUseTranslator:"Usage de la fonctionnalité de traduction"
avatarDecorationLimit:"Nombre maximal de décorations d'avatar"
description:"L'apprentissage automatique peut être utilisé pour détecter automatiquement les médias sensibles à modérer. La sollicitation des serveurs augmente légèrement."
sensitivity:"Sensibilité de la détection"
@ -1793,6 +1926,29 @@ _permissions:
"write:gallery": "Éditer la galerie"
"read:gallery-likes": "Voir les mentions « J'aime » dans la galerie"
"write:gallery-likes": "Gérer les mentions « J'aime » dans la galerie"
"read:flash": "Voir le Play"
"write:flash": "Modifier le Play"
"read:flash-likes": "Lire vos mentions j'aime des Play"
"write:flash-likes": "Modifier vos mentions j'aime des Play"
"read:admin:abuse-user-reports": "Voir les utilisateurs signalés"
"write:admin:delete-account": "Supprimer le compte d'utilisateur"
"write:admin:delete-all-files-of-a-user": "Supprimer tous les fichiers d'un utilisateur"
"read:admin:index-stats": "Voir les statistiques sur les index de base de données"
"read:admin:table-stats": "Voir les statistiques sur les index de base de données"
"read:admin:user-ips": "Voir l'adresse IP de l'utilisateur"
"read:admin:meta": "Voir les métadonnées de l'instance"
"write:admin:reset-password": "Réinitialiser le mot de passe de l'utilisateur"
"write:admin:resolve-abuse-user-report": "Résoudre le signalement d'un utilisateur"
"write:admin:send-email": "Envoyer un mail"
"read:admin:server-info": "Voir les informations de l'instance"
"read:admin:show-moderation-log": "Voir les logs de modération"
"read:admin:show-user": "Voir les informations privées de l'utilisateur"
unsetUserAvatar:"Supprimer l'avatar de l'utilisateur·rice"
unsetUserBanner:"Supprimer la bannière de l'utilisateur·rice"
deleteFlash:"Supprimer le Play"
_fileViewer:
title:"Détails du fichier"
type:"Type du fichier"
@ -2175,5 +2347,20 @@ _dataSaver:
title:"Mise en évidence du code"
description:"Si la notation de mise en évidence du code est utilisée, par exemple dans la MFM, elle ne sera pas chargée tant qu'elle n'aura pas été tapée. La mise en évidence du code nécessite le chargement du fichier de définition de chaque langue à mettre en évidence, mais comme ces fichiers ne sont plus chargés automatiquement, on peut s'attendre à une réduction du trafic de données."
@ -196,6 +196,7 @@ followConfirm: "Apakah kamu yakin ingin mengikuti {name}?"
proxyAccount:"Akun proksi"
proxyAccountDescription:"Akun proksi merupakan sebuah akun yang bertindak sebagai pengikut instansi luar untuk pengguna dalam kondisi tertentu. Sebagai contoh, ketika pengguna menambahkan seorang pengguna instansi luar ke dalam daftar, aktivitas dari pengguna instansi luar tidak akan disampaikan ke instansi apabila tidak ada pengguna lokal yang mengikuti pengguna tersebut, dengan begitu akun proksilah yang akan mengikutinya."
blockedInstancesDescription:"Daftar nama host dari instansi yang diperlukan untuk diblokir. Instansi yang didaftarkan tidak akan dapat berkomunikasi dengan instansi ini."
silencedInstances:"Instansi yang disenyapkan"
silencedInstancesDescription:"Daftar nama host dari instansi yang ingin kamu senyapkan. Semua akun dari instansi yang terdaftar akan diperlakukan sebagai disenyapkan. Hal ini membuat akun hanya dapat membuat permintaan mengikuti, dan tidak dapat menyebutkan akun lokal apabila tidak mengikuti. Hal ini tidak akan mempengaruhi instansi yang diblokir."
federationAllowedHosts:"Server yang membolehkan federasi"
muteAndBlock:"Bisukan / Blokir"
mutedUsers:"Pengguna yang dibisukan"
blockedUsers:"Pengguna yang diblokir"
@ -330,6 +332,7 @@ renameFolder: "Ubah nama folder"
deleteFolder:"Hapus folder"
folder:"Folder"
addFile:"Tambahkan berkas"
showFile:"Tampilkan berkas"
emptyDrive:"Drive kosong"
emptyFolder:"Folder kosong"
unableToDelete:"Tidak dapat menghapus"
@ -372,7 +375,6 @@ enableLocalTimeline: "Nyalakan lini masa lokal"
enableGlobalTimeline:"Nyalakan lini masa global"
disablingTimelinesInfo:"Admin dan Moderator akan selalu memiliki akses ke semua lini masa meskipun lini masa tersebut tidak diaktifkan."
registration:"Pendaftaran"
enableRegistration:"Nyalakan pendaftaran pengguna baru"
invite:"Undang"
driveCapacityPerLocalAccount:"Kapasitas drive per pengguna lokal"
driveCapacityPerRemoteAccount:"Kapasitas drive per pengguna remote"
showNoteActionsOnlyHover:"Hanya tampilkan aksi catatan saat ditunjuk"
showReactionsCount:"Lihat jumlah reaksi dalam catatan"
noHistory:"Tidak ada riwayat"
@ -927,6 +931,9 @@ oneHour: "1 Jam"
oneDay:"1 Hari"
oneWeek:"1 Bulan"
oneMonth:"satu bulan"
threeMonths:"3 bulan"
oneYear:"1 tahun"
threeDays:"3 hari"
reflectMayTakeTime:"Mungkin perlu beberapa saat untuk dicerminkan."
failedToFetchAccountInformation:"Gagal untuk mendapatkan informasi akun"
rateLimitExceeded:"Batas sudah terlampaui"
@ -1101,6 +1108,7 @@ preservedUsernames: "Nama pengguna tercadangkan"
preservedUsernamesDescription:"Daftar nama pengguna yang dicadangkan dipisah dengan baris baru. Nama pengguna berikut akan tidak dapat dipakai pada pembuatan akun normal, namun dapat digunakan oleh admin untuk membuat akun baru. Akun yang sudah ada dengan menggunakan nama pengguna ini tidak akan terpengaruh."
createNoteFromTheFile:"Buat catatan dari berkas ini"
archive:"Arsipkan"
archived:"Diarsipkan"
channelArchiveConfirmTitle:"Yakin untuk mengarsipkan {name}?"
channelArchiveConfirmDescription:"Kanal yang diarsipkan tidak akan muncul pada daftar kanal atau hasil pencarian. Postingan baru juga tidak dapat ditambahkan lagi."
thisChannelArchived:"Kanal ini telah diarsipkan."
@ -1111,6 +1119,7 @@ preventAiLearning: "Tolak penggunaan Pembelajaran Mesin (AI Generatif)"
preventAiLearningDescription:"Minta perayap web untuk tidak menggunakan materi teks atau gambar yang telah diposting ke dalam set data Pembelajaran Mesin (Prediktif / Generatif). Hal ini dicapai dengan menambahkan flag HTML-Response \"noai\" ke masing-masing konten. Pencegahan penuh mungkin tidak dapat dicapai dengan flag ini, karena juga dapat diabaikan begitu saja."
options:"Opsi peran"
specifyUser:"Pengguna spesifik"
openTagPageConfirm:"Apakah ingin membuka laman tagar?"
failedToPreviewUrl:"Tidak dapat dipratinjau"
update:"Perbarui"
rolesThatCanBeUsedThisEmojiAsReaction:"Peran yang dapat menggunakan emoji ini sebagai reaksi"
@ -1243,6 +1252,18 @@ noDescription: "Tidak ada deskripsi"
alwaysConfirmFollow:"Selalu konfirmasi ketika mengikuti"
inquiry:"Hubungi kami"
tryAgain:"Silahkan coba lagi."
createdLists:"Senarai yang dibuat"
createdAntennas:"Antena yang dibuat"
fromX:"Dari {x}"
noteOfThisUser:"Catatan oleh pengguna ini"
clipNoteLimitExceeded:"Klip ini tak bisa ditambahi lagi catatan."
performance:"Kinerja"
modified:"Diubah"
thereAreNChanges:"Ada {n} perubahan"
prohibitedWordsForNameOfUser:"Kata yang dilarang untuk nama pengguna"
_abuseUserReport:
accept:"Setuju"
reject:"Tolak"
_delivery:
status:"Status pengiriman"
stop:"Ditangguhkan"
@ -1707,6 +1728,8 @@ _role:
canSearchNotes:"Penggunaan pencarian catatan"
canUseTranslator:"Penggunaan penerjemah"
avatarDecorationLimit:"Jumlah maksimum dekorasi avatar yang dapat diterapkan"
canImportAntennas:"Izinkan mengimpor antena"
canImportUserLists:"Izinkan mengimpor senarai"
_condition:
roleAssignedTo:"Ditugaskan ke peran manual"
isLocal:"Pengguna lokal"
@ -1943,6 +1966,7 @@ _soundSettings:
driveFileTypeWarnDescription:"Pilih berkas audio"
driveFileDurationWarn:"Audio ini terlalu panjang"
driveFileDurationWarnDescription:"Audio panjang dapat mengganggu penggunaan Misskey. Masih ingin melanjutkan?"
driveFileError:"Tak bisa memuat audio. Mohon ubah pengaturan"
receiveFollowRequest:"Hai ricevuto una richiesta di follow"
followRequestAccepted:"Ha accettato la tua richiesta di follow"
mention:"Menzioni"
@ -80,14 +80,14 @@ export: "Esporta"
files:"Allegati"
download:"Scarica"
driveFileDeleteConfirm:"Vuoi davvero eliminare il file \"{name}\", e le Note a cui è stato allegato?"
unfollowConfirm:"Vuoi davvero smettere di seguire {name}?"
unfollowConfirm:"Vuoi davvero togliere il Following a {name}?"
exportRequested:"Hai richiesto un'esportazione, e potrebbe volerci tempo. Quando sarà compiuta, il file verrà aggiunto direttamente al Drive."
importRequested:"Hai richiesto un'importazione. Potrebbe richiedere un po' di tempo."
lists:"Liste"
noLists:"Nessuna lista"
note:"Nota"
notes:"Note"
following:"Follow"
following:"Following"
followers:"Follower"
followsYou:"Follower"
createList:"Aggiungi una nuova lista"
@ -106,7 +106,7 @@ defaultNoteVisibility: "Privacy predefinita delle note"
follow:"Segui"
followRequest:"Richiesta di follow"
followRequests:"Richieste di follow"
unfollow:"Smetti di seguire"
unfollow:"Togli Following"
followRequestPending:"Richiesta in approvazione"
enterEmoji:"Inserisci emoji"
renote:"Rinota"
@ -195,7 +195,7 @@ setWallpaper: "Imposta sfondo"
removeWallpaper:"Elimina lo sfondo"
searchWith:"Cerca: {q}"
youHaveNoLists:"Non hai ancora creato nessuna lista"
followConfirm:"Vuoi seguire {name}?"
followConfirm:"Confermi il Following a {name}?"
proxyAccount:"Profilo proxy"
proxyAccountDescription:"Un profilo proxy funziona come follower per i profili remoti, sotto certe condizioni. Ad esempio, quando un profilo locale ne inserisce uno remoto in una lista (senza seguirlo), se nessun altro segue quel profilo remoto, le attività non possono essere distribuite. Dunque, il profilo proxy le seguirà per tutti."
host:"Host"
@ -263,7 +263,7 @@ all: "Tutte"
subscribing:"Iscrizione"
publishing:"Pubblicazione"
notResponding:"Nessuna risposta"
instanceFollowing:"Seguiti dall'istanza"
instanceFollowing:"Istanza Following"
instanceFollowers:"Follower dell'istanza"
instanceUsers:"Profili nell'istanza"
changePassword:"Aggiorna Password"
@ -382,7 +382,6 @@ enableLocalTimeline: "Abilita la timeline locale"
enableGlobalTimeline:"Abilita la timeline federata"
disablingTimelinesInfo:"Anche disabilitandole, gli Amministratori e i Moderatori potranno comunque accedervi."
registration:"Iscriviti"
enableRegistration:"Consenti a chiunque di registrarsi"
invite:"Invita"
driveCapacityPerLocalAccount:"Capienza del Drive per profilo locale"
driveCapacityPerRemoteAccount:"Capienza del Drive per profilo remoto"
notificationSettingDesc:"Seleziona il tipo di notifiche da visualizzare."
useGlobalSetting:"Usa impostazioni generali"
useGlobalSettingDesc:"Quando attiva, verranno utilizzate le impostazioni notifiche del profilo. Altrimenti si possono segliere impostazioni personalizzate."
other:"Ulteriori"
other:"Eccetera"
regenerateLoginToken:"Genera di nuovo un token di connessione"
regenerateLoginTokenDescription:"Genera un nuovo token di autenticazione. Solitamente questa operazione non è necessaria: quando si genera un nuovo token, tutti i dispositivi vanno disconnessi."
theKeywordWhenSearchingForCustomEmoji:"Questa sarà la parola chiave durante la ricerca di emoji personalizzate"
@ -747,7 +746,7 @@ repliesCount: "Numero di risposte inviate"
renotesCount:"Numero di note che hai ricondiviso"
repliedCount:"Numero di risposte ricevute"
renotedCount:"Numero delle tue note ricondivise"
followingCount:"Numero di profili seguiti"
followingCount:"Numero di Following"
followersCount:"Numero di profili che ti seguono"
sentReactionsCount:"Numero di reazioni inviate"
receivedReactionsCount:"Numero di reazioni ricevute"
@ -901,8 +900,8 @@ pubSub: "Publish/Subscribe del profilo"
lastCommunication:"La comunicazione più recente"
resolved:"Risolto"
unresolved:"Non risolto"
breakFollow:"Impedire di seguirmi"
breakFollowConfirm:"Vuoi davvero che questo profilo smetta di seguirti?"
breakFollow:"Rimuovi Follower"
breakFollowConfirm:"Vuoi davvero togliere questo Follower?"
itsOn:"Abilitato"
itsOff:"Disabilitato"
on:"Acceso"
@ -917,7 +916,7 @@ makeReactionsPublicDescription: "La lista delle reazioni che avete fatto è a di
classic:"Classico"
muteThread:"Silenziare conversazione"
unmuteThread:"Riattiva la conversazione"
followingVisibility:"Visibilità dei profili seguiti"
followingVisibility:"Visibilità dei Following"
followersVisibility:"Visibilità dei profili che ti seguono"
continueThread:"Altre conversazioni"
deleteAccountConfirm:"Così verrà eliminato il profilo. Vuoi procedere?"
@ -947,6 +946,9 @@ oneHour: "1 ora"
oneDay:"1 giorno"
oneWeek:"1 settimana"
oneMonth:"Un mese"
threeMonths:"3 mesi"
oneYear:"1 anno"
threeDays:"3 giorni"
reflectMayTakeTime:"Potrebbe essere necessario un po' di tempo perché ciò abbia effetto."
failedToFetchAccountInformation:"Impossibile recuperare le informazioni sul profilo"
rateLimitExceeded:"Superato il limite di richieste."
@ -965,7 +967,7 @@ driveCapOverrideLabel: "Modificare la capienza del Drive per questo profilo"
driveCapOverrideCaption:"Se viene specificato meno di 0, viene annullato."
requireAdminForView:"Per visualizzarli, è necessario aver effettuato l'accesso con un profilo amministratore."
isSystemAccount:"Questi profili vengono creati e gestiti automaticamente dal sistema"
typeToConfirm:"Per eseguire questa operazione, digitare {x}"
thisChannelArchived:"Questo canale è stato archiviato."
displayOfNote:"Visualizzazione delle Note"
initialAccountSetting:"Impostazioni iniziali del profilo"
youFollowing:"Seguiti"
youFollowing:"Following"
preventAiLearning:"Impedisci l'apprendimento della IA"
preventAiLearningDescription:"Aggiungendo il campo \"noai\" alla risposta HTML, si indica ai Robot esterni di non usare testi e allegati per addestrare sistemi di Machine Learning (IA predittiva/generativa). Anche se è impossibile sapere se la richiesta venga onorata o semplicemente ignorata."
prohibitedWordsForNameOfUserDescription:"Il sistema rifiuta di rinominare un utente, se il nome contiene qualsiasi parola nell'elenco. Sono esenti i profili con privilegi di moderazione."
yourNameContainsProhibitedWords:"Il nome che hai scelto contiene una o più parole vietate"
yourNameContainsProhibitedWordsDescription:"Se desideri comunque utilizzare questo nome, contatta l''amministrazione."
thisContentsAreMarkedAsSigninRequiredByAuthor:"L'autore richiede di iscriversi per vedere il contenuto"
lockdown:"Isolamento"
pleaseSelectAccount:"Per favore, seleziona un profilo"
_accountSettings:
requireSigninToViewContents:"Per vedere il contenuto, è necessaria l'iscrizione"
requireSigninToViewContentsDescription1:"Richiedere l'iscrizione per visualizzare tutte le Note e gli altri contenuti che hai creato. Probabilmente l'effetto è impedire la raccolta di informazioni da parte dei bot crawler."
requireSigninToViewContentsDescription2:"La visualizzazione verrà disabilitata a server che non supportano l'anteprima URL (OGP), all'incorporamento nelle pagine Web e alla citazione delle Note."
requireSigninToViewContentsDescription3:"Queste restrizioni potrebbero non applicarsi al contenuto federato su server remoti."
makeNotesFollowersOnlyBefore:"Rendi visibili solo ai Follower le Note pubblicate in precedenza"
makeNotesFollowersOnlyBeforeDescription:"Mentre questa funzione è abilitata, le Note antecedenti al momento impostato, saranno visibili solo ai profili Follower. Disabilitandola nuovamente, verrà ripristinata anche la visibilità pubblica della Nota."
makeNotesHiddenBefore:"Nascondi le Note pubblicate in precedenza"
makeNotesHiddenBeforeDescription:"Mentre questa funzione è abilitata, le Note antecedenti al momento impostato, saranno visibili soltanto a te (private). Disabilitandola nuovamente, verrà ripristinata anche la visibilità pubblica della Nota."
mayNotEffectForFederatedNotes:"Le Note già federate su server remoti potrebbero non essere modificate."
notesHavePassedSpecifiedPeriod:"Note antecedenti al periodo specificato"
notesOlderThanSpecifiedDateAndTime:"Note antecedenti al momento specificato"
_abuseUserReport:
forward:"Inoltra"
forwardDescription:"Inoltra il report al server remoto, per mezzo di account di sistema, anonimo."
@ -1378,7 +1395,7 @@ _initialTutorial:
_timeline:
title:"Come funziona la Timeline"
description1:"Misskey fornisce alcune Timeline (sequenze cronologiche di Note). Una di queste potrebbe essere stata disattivata dagli amministratori."
home:"le Note provenienti dai profili che segui (follow)."
home:"le Note provenienti dai profili che segui (Following)."
local:"tutte le Note pubblicate dai profili di questa istanza."
social:"sia le Note della Timeline Home che quelle della Timeline Locale, insieme!"
global:"le Note da pubblicate da tutte le altre istanze federate con la nostra."
@ -1416,7 +1433,7 @@ _initialTutorial:
title:"Il tutorial è finito! 🎉"
description:"Queste sono solamente alcune delle funzionalità principali di Misskey. Per ulteriori informazioni, {link}."
_timelineDescription:
home:"Nella Timeline Home, la tua cronologia principale, puoi vedere le Note provenienti dai profili che segui (follow)."
home:"Nella Timeline Home, la tua cronologia principale, puoi vedere le Note provenienti dai profili che segui (Following)."
local:"La Timeline Locale, è una cronologia di Note pubblicate da tutti i profili iscritti su questo server."
social:"La Timeline Sociale, unisce in ordine cronologico l'elenco di Note presenti nella Timeline Home e quella Locale."
global:"La Timeline Federata ti consente di vedere le Note pubblicate dai profili di tutti gli altri server federati a questo."
@ -1442,7 +1459,7 @@ _accountMigration:
moveFrom:"Migra un altro profilo dentro a questo"
moveFromSub:"Crea un alias verso un altro profilo remoto"
moveFromLabel:"Profilo da cui migrare #{n}"
moveFromDescription:"Se desideri spostare i profili follower da un altro profilo a questo, devi prima creare un alias qui. Assicurati averlo creato PRIMA di eseguire l'attività! Inserisci l'indirizzo del profilo mittente in questo modo: @persona@istanza.it"
moveFromDescription:"Se desideri spostare i Follower da un altro profilo a questo, devi prima creare un alias qui. Assicurati averlo creato PRIMA di eseguire l'attività! Inserisci l'indirizzo del profilo mittente in questo modo: @persona@istanza.it"
moveTo:"Migrare questo profilo verso un un altro"
moveToLabel:"Profilo verso cui migrare"
moveCannotBeUndone:"La migrazione è irreversibile, non può essere interrotta o annullata."
@ -1451,7 +1468,7 @@ _accountMigration:
startMigration:"Avvia la migrazione"
migrationConfirm:"Vuoi davvero migrare questo profilo su {account}? L'azione è irreversibile e non potrai più utilizzare questo profilo nel suo stato originale.\nInoltre, assicurati di aver già creato un alias sull'account a cui ti stai trasferendo."
movedAndCannotBeUndone:"Il tuo profilo è stato migrato.\nLa migrazione non può essere annullata."
postMigrationNote:"Questo profilo smetterà di seguire gli altri profili remoti a 24 ore dal termine della migrazione.\nSia i Follow che i Follower scenderanno a zero. I tuoi follower saranno comunque in grado di vedere le Note per soli follower, poiché non smetteranno di seguirti."
postMigrationNote:"Questo profilo smetterà di seguire gli altri profili remoti a 24 ore dal termine della migrazione.\nSia i Following che i Follower scenderanno a zero. I tuoi Follower saranno comunque in grado di vedere le Note per soli Follower, poiché non smetteranno di seguirti."
movedTo:"Profilo verso cui migrare"
_achievements:
earnedAt:"Data di conseguimento"
@ -1844,7 +1861,7 @@ _gallery:
unlike:"Non mi piace più"
_email:
_follow:
title:"Adesso ti segue"
title:"Follower aggiuntivo"
_receiveFollowRequest:
title:"Hai ricevuto una richiesta di follow"
_plugin:
@ -1908,7 +1925,7 @@ _channel:
removeBanner:"Rimuovi intestazione"
featured:"Di tendenza"
owned:"I miei canali"
following:"Seguiti"
following:"Following"
usersCount:"{n} partecipanti"
notesCount:"{n} note"
nameAndDescription:"Nome e descrizione"
@ -2074,7 +2091,7 @@ _permissions:
"read:favorites": "Visualizza i tuoi preferiti"
"write:favorites": "Gestisci i tuoi preferiti"
"read:following": "Vedi le informazioni di follow"
"write:following": "Following di altri profili"
"write:following": "Aggiungere e togliere Following"
"read:messaging": "Visualizzare la chat"
"write:messaging": "Gestire la chat"
"read:mutes": "Vedi i profili silenziati"
@ -2157,11 +2174,14 @@ _auth:
permissionAsk:"Questa app richiede le seguenti autorizzazioni:"
pleaseGoBack:"Si prega di ritornare sulla app"
callback:"Ritornando sulla app"
accepted:"Accesso concesso"
denied:"Accesso negato"
scopeUser:"Sto funzionando per il seguente profilo"
pleaseLogin:"Per favore accedi al tuo account per cambiare i permessi dell'applicazione"
byClickingYouWillBeRedirectedToThisUrl:"Consentendo l'accesso, si verrà reindirizzati presso questo indirizzo URL"
_antennaSources:
all:"Tutte le note"
homeTimeline:"Note dagli utenti che segui"
homeTimeline:"Note dai tuoi Following"
users:"Note dagli utenti selezionati"
userList:"Note dagli utenti della lista selezionata"
userBlacklist:"Tutte le Note tranne quelle di uno o più profili specificati"
@ -2274,7 +2294,7 @@ _exportOrImport:
allNotes:"Tutte le note"
favoritedNotes:"Note preferite"
clips:"Clip"
followingList:"Follow"
followingList:"Following"
muteList:"Elenco profili silenziati"
blockingList:"Elenco profili bloccati"
userLists:"Liste"
@ -2390,7 +2410,7 @@ _notification:
youGotReply:"{name} ti ha risposto"
youGotQuote:"{name} ha citato la tua Nota e ha detto"
youRenoted:"{name} ha rinotato"
youWereFollowed:"Adesso ti segue"
youWereFollowed:"Follower aggiuntivo"
youReceivedFollowRequest:"Hai ricevuto una richiesta di follow"
yourFollowRequestAccepted:"La tua richiesta di follow è stata accettata"
pollEnded:"Risultati del sondaggio."
@ -2413,7 +2433,7 @@ _notification:
_types:
all:"Tutto"
note:"Nuove Note"
follow:"Nuovi profili follower"
follow:"Follower"
mention:"Menzioni"
reply:"Risposte"
renote:"Rinota"
@ -2429,7 +2449,7 @@ _notification:
test:"Prova la notifica"
app:"Notifiche da applicazioni"
_actions:
followBack:"Segui"
followBack:"Following ricambiato"
reply:"Rispondi"
renote:"Rinota"
_deck:
@ -2481,7 +2501,7 @@ _webhookSettings:
trigger:"Trigger"
active:"Attivo"
_events:
follow:"Quando segui un profilo"
follow:"Quando aggiungi Following"
followed:"Quando ti segue un profilo"
note:"Quando pubblichi una Nota"
reply:"Quando rispondono ad una Nota"
@ -2710,3 +2730,9 @@ _embedCodeGen:
generateCode:"Crea il codice di incorporamento"
codeGenerated:"Codice generato"
codeGeneratedDescription:"Incolla il codice appena generato sul tuo sito web."
_selfXssPrevention:
warning:"Avviso"
title:"\"Incolla qualcosa su questa schermata\" è tutta una truffa."
description1:"Incollando qualcosa qui, malintenzionati potrebbero prendere il controllo del tuo profilo o rubare i tuoi dati personali."
description2:"Se non sai esattamente cosa stai facendo, %c smetti subito e chiudi questa finestra."
description3:"Per favore, controlla questo collegamento per avere maggiori dettagli. {link}"