mirror of
https://github.com/go-gitea/gitea.git
synced 2025-07-21 03:48:30 +02:00
Merge branch 'main' into main
This commit is contained in:
commit
5cc1bda7c9
@ -117,6 +117,7 @@ files=Fichiers
|
|||||||
|
|
||||||
error=Erreur
|
error=Erreur
|
||||||
error404=La page que vous essayez d'atteindre <strong>n'existe pas</strong> ou <strong>vous n'êtes pas autorisé</strong> à la voir.
|
error404=La page que vous essayez d'atteindre <strong>n'existe pas</strong> ou <strong>vous n'êtes pas autorisé</strong> à la voir.
|
||||||
|
error503=Le serveur n’a pas pu répondre à votre requête. Veuillez réessayer plus tard.
|
||||||
go_back=Retour
|
go_back=Retour
|
||||||
invalid_data=Données invalides : %v
|
invalid_data=Données invalides : %v
|
||||||
|
|
||||||
|
@ -117,6 +117,7 @@ files=Ficheiros
|
|||||||
|
|
||||||
error=Erro
|
error=Erro
|
||||||
error404=A página que pretende aceder <strong>não existe</strong> ou <strong>não tem autorização</strong> para a ver.
|
error404=A página que pretende aceder <strong>não existe</strong> ou <strong>não tem autorização</strong> para a ver.
|
||||||
|
error503=O servidor não conseguiu concluir o seu pedido. Tente novamente mais tarde.
|
||||||
go_back=Voltar
|
go_back=Voltar
|
||||||
invalid_data=Dados inválidos: %v
|
invalid_data=Dados inválidos: %v
|
||||||
|
|
||||||
|
@ -132,7 +132,7 @@ async function tryOnQuoteReply(e: Event) {
|
|||||||
const targetMarkupToQuote = targetRawToQuote.parentElement.querySelector<HTMLElement>('.render-content.markup');
|
const targetMarkupToQuote = targetRawToQuote.parentElement.querySelector<HTMLElement>('.render-content.markup');
|
||||||
let contentToQuote = extractSelectedMarkdown(targetMarkupToQuote);
|
let contentToQuote = extractSelectedMarkdown(targetMarkupToQuote);
|
||||||
if (!contentToQuote) contentToQuote = targetRawToQuote.textContent;
|
if (!contentToQuote) contentToQuote = targetRawToQuote.textContent;
|
||||||
const quotedContent = `${contentToQuote.replace(/^/mg, '> ')}\n`;
|
const quotedContent = `${contentToQuote.replace(/^/mg, '> ')}\n\n`;
|
||||||
|
|
||||||
let editor;
|
let editor;
|
||||||
if (clickTarget.classList.contains('quote-reply-diff')) {
|
if (clickTarget.classList.contains('quote-reply-diff')) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user