Skip to content

Commit 5cc1bda

Browse files
authored
Merge branch 'main' into main
2 parents f2a2acf + dcfa42d commit 5cc1bda

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

options/locale/locale_fr-FR.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ files=Fichiers
117117

118118
error=Erreur
119119
error404=La page que vous essayez d'atteindre <strong>n'existe pas</strong> ou <strong>vous n'êtes pas autorisé</strong> à la voir.
120+
error503=Le serveur n’a pas pu répondre à votre requête. Veuillez réessayer plus tard.
120121
go_back=Retour
121122
invalid_data=Données invalides : %v
122123

options/locale/locale_pt-PT.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ files=Ficheiros
117117

118118
error=Erro
119119
error404=A página que pretende aceder <strong>não existe</strong> ou <strong>não tem autorização</strong> para a ver.
120+
error503=O servidor não conseguiu concluir o seu pedido. Tente novamente mais tarde.
120121
go_back=Voltar
121122
invalid_data=Dados inválidos: %v
122123

web_src/js/features/repo-issue-edit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ async function tryOnQuoteReply(e: Event) {
132132
const targetMarkupToQuote = targetRawToQuote.parentElement.querySelector<HTMLElement>('.render-content.markup');
133133
let contentToQuote = extractSelectedMarkdown(targetMarkupToQuote);
134134
if (!contentToQuote) contentToQuote = targetRawToQuote.textContent;
135-
const quotedContent = `${contentToQuote.replace(/^/mg, '> ')}\n`;
135+
const quotedContent = `${contentToQuote.replace(/^/mg, '> ')}\n\n`;
136136

137137
let editor;
138138
if (clickTarget.classList.contains('quote-reply-diff')) {

0 commit comments

Comments
 (0)