summaryrefslogtreecommitdiff
path: root/tests/typ/meta/figure-localization.typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/meta/figure-localization.typ')
-rw-r--r--tests/typ/meta/figure-localization.typ34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/typ/meta/figure-localization.typ b/tests/typ/meta/figure-localization.typ
deleted file mode 100644
index 144d9d67..00000000
--- a/tests/typ/meta/figure-localization.typ
+++ /dev/null
@@ -1,34 +0,0 @@
-// Test localization-related figure features.
-
----
-// Test French
-#set text(lang: "fr")
-#figure(
- circle(),
- caption: [Un cercle.],
-)
-
----
-// Test Chinese
-#set text(lang: "zh")
-#figure(
- rect(),
- caption: [一个矩形],
-)
-
----
-// Test Russian
-#set text(lang: "ru")
-
-#figure(
- polygon.regular(size: 1cm, vertices: 8),
- caption: [Пятиугольник],
-)
-
----
-// Test Greek
-#set text(lang: "gr")
-#figure(
- circle(),
- caption: [Ένας κύκλος.],
-)