summaryrefslogtreecommitdiff
path: root/library/src/layout
diff options
context:
space:
mode:
authorMarco Radocchia <marco.radocchia@outlook.com>2023-03-29 19:34:18 +0200
committerGitHub <noreply@github.com>2023-03-29 19:34:18 +0200
commit9737d3b754c871d7ca9c63790b5d4cefda07d6ff (patch)
tree0613805a0a60d2aa71086fbcd191b5770cf4ab53 /library/src/layout
parent24e26b8c771f09965422cf7b0acde3d694811f7e (diff)
Added IT language support (#413)
Diffstat (limited to 'library/src/layout')
-rw-r--r--library/src/layout/table.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/src/layout/table.rs b/library/src/layout/table.rs
index 6d3e7791..6bade9da 100644
--- a/library/src/layout/table.rs
+++ b/library/src/layout/table.rs
@@ -284,6 +284,7 @@ impl LocalName for TableElem {
fn local_name(&self, lang: Lang) -> &'static str {
match lang {
Lang::GERMAN => "Tabelle",
+ Lang::ITALIAN => "Tabella",
Lang::ENGLISH | _ => "Table",
}
}