diff options
| author | Andrew Voynov <37143421+Andrew15-5@users.noreply.github.com> | 2023-11-02 13:00:42 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-02 11:00:42 +0100 |
| commit | c47757d6d41b047f68bc25fec7ded8e1c552a2c5 (patch) | |
| tree | 2efe7d675a9aa9eaf3f88d886663badb75e9ad2f | |
| parent | 4248265bca5c14ef01c3a006555d71d1df6b05f8 (diff) | |
fix(figure separator): `. ` is now default for Russian (#2540)
| -rw-r--r-- | crates/typst-library/src/meta/figure.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst-library/src/meta/figure.rs b/crates/typst-library/src/meta/figure.rs index bed2071a..990c9860 100644 --- a/crates/typst-library/src/meta/figure.rs +++ b/crates/typst-library/src/meta/figure.rs @@ -509,12 +509,12 @@ impl FigureCaption { Lang::CHINESE => ":", Lang::FRENCH if option_eq(region, "CH") => "\u{202f}: ", Lang::FRENCH => "\u{a0}: ", + Lang::RUSSIAN => ". ", Lang::DANISH | Lang::DUTCH | Lang::ENGLISH | Lang::GERMAN | Lang::ITALIAN - | Lang::RUSSIAN | Lang::SPANISH | Lang::SWEDISH | _ => ": ", |
