From 8c4bf735f1ecc817b567982de43281a7668116fd Mon Sep 17 00:00:00 2001 From: QuiraDon <45953957+quiradon@users.noreply.github.com> Date: Tue, 7 Feb 2023 23:33:26 -0300 Subject: [PATCH 1/3] Update Portugueses Lang I completed the translation into Portuguese that was missing a few things. --- language/portuguese.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/language/portuguese.json b/language/portuguese.json index e527b59..32f4110 100644 --- a/language/portuguese.json +++ b/language/portuguese.json @@ -70,18 +70,18 @@ "gettingdeleted":"Ticket está sendo deletado...", "none":"none", - "reason":"reason", + "reason":"Motivo", "deletedby":"deleted by", "closedby":"closed by", - "modalreason":"What is the reason for closing this ticket?", - "chooseATicket": "Choose a ticket" + "modalreason":"Quak o motivo de fechar o ticket?", + "chooseATicket": "Fechar Ticket" }, "transcripts":{ - "title":"Transcript", - "processed":"This transcript is being processed", - "wait":"Please wait!", - "estimated":"Estimated time", - "available":"The transcript is available here" + "title":"Transcrever", + "processed":"A Transcrição está em andamento", + "wait":"Por favor espere!", + "estimated":"Tempo estimado", + "available":"A Transcrição está disponível aqui" } -} \ No newline at end of file +} From 930452155bbca089963de737b42feeb72eb4d815 Mon Sep 17 00:00:00 2001 From: QuiraDon <45953957+quiradon@users.noreply.github.com> Date: Thu, 9 Feb 2023 02:20:09 -0300 Subject: [PATCH 2/3] Update portuguese.json some fixes on what was missing. --- language/portuguese.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/language/portuguese.json b/language/portuguese.json index 32f4110..f7dd491 100644 --- a/language/portuguese.json +++ b/language/portuguese.json @@ -48,7 +48,7 @@ "close":"Fechar Ticket", "delete":"Excluir Ticket", "reopen":"Reabrir Ticket", - "closeWithReason":"close with reason" + "closeWithReason":"fechado com motivo" }, "messages":{ "reopenTitle":"Reabriu este ticket!", @@ -69,12 +69,12 @@ "chooseCategory":"Escolha a categoria:", "gettingdeleted":"Ticket está sendo deletado...", - "none":"none", - "reason":"Motivo", + "none":"vazio", + "reason":"motivo", - "deletedby":"deleted by", - "closedby":"closed by", - "modalreason":"Quak o motivo de fechar o ticket?", + "deletedby":"deletado por", + "closedby":"fechado por", + "modalreason":"Qual o motivo de fechar o ticket?", "chooseATicket": "Fechar Ticket" }, "transcripts":{ From fa57b9a93f6c727f3c9461dc8d7eee8625d904b7 Mon Sep 17 00:00:00 2001 From: Jasper Date: Sun, 12 Feb 2023 15:09:27 +0100 Subject: [PATCH 3/3] Update checker.js --- core/checker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/checker.js b/core/checker.js index 91fbe0b..9414e9f 100644 --- a/core/checker.js +++ b/core/checker.js @@ -404,7 +404,7 @@ exports.checker = async () => { checkType(config.languagefile,"string","languagefile") const lf = config.languagefile - if (!lf.startsWith("custom") && !lf.startsWith("english") && !lf.startsWith("dutch") && !lf.startsWith("romanian") && !lf.startsWith("german") && !lf.startsWith("arabic") && !lf.startsWith("spanish") && !lf.startsWith("portuguese") && !lf.startsWith("french") && !lf.startsWith("italian")){ + if (!lf.startsWith("custom") && !lf.startsWith("english") && !lf.startsWith("dutch") && !lf.startsWith("romanian") && !lf.startsWith("german") && !lf.startsWith("arabic") && !lf.startsWith("spanish") && !lf.startsWith("portuguese") && !lf.startsWith("french") && !lf.startsWith("italian") && !lf.startsWith("czech") && !lf.startsWith("danish")){ createError("'languagefile' | invalid language, more info in the wiki") }