summaryrefslogtreecommitdiff
path: root/library/src/math
diff options
context:
space:
mode:
authorMateus Felipe C. C. Pinto <mateusfccp@gmail.com>2023-04-03 07:59:13 -0300
committerGitHub <noreply@github.com>2023-04-03 12:59:13 +0200
commit2dbbeaeb600e6c9ef6bbecfd67903f091ace9956 (patch)
treebfbeb17c7c9c9476a0f1eaed1d92ca5909d168ae /library/src/math
parent37eededc9d9a5ff1c0d5ccdd7a348268cfd40735 (diff)
Provide support for portuguese language (#525)
Diffstat (limited to 'library/src/math')
-rw-r--r--library/src/math/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/library/src/math/mod.rs b/library/src/math/mod.rs
index a25c5039..82ad0a2f 100644
--- a/library/src/math/mod.rs
+++ b/library/src/math/mod.rs
@@ -267,10 +267,11 @@ impl Count for EquationElem {
impl LocalName for EquationElem {
fn local_name(&self, lang: Lang) -> &'static str {
match lang {
- Lang::FRENCH => "Équation",
Lang::CHINESE => "等式",
+ Lang::FRENCH => "Équation",
Lang::GERMAN => "Gleichung",
Lang::ITALIAN => "Equazione",
+ Lang::PORTUGUESE => "Equação",
Lang::RUSSIAN => "Уравнение",
Lang::ENGLISH | _ => "Equation",
}