summaryrefslogtreecommitdiff
path: root/lib/lettering
diff options
context:
space:
mode:
authorClaudine Peyrat <88194877+claudinepeyrat06@users.noreply.github.com>2025-02-10 21:40:21 +0100
committerGitHub <noreply@github.com>2025-02-10 21:40:21 +0100
commit457d9e49e4b3a3413ab93769487bed91aa6eb47e (patch)
treecf84bc257b40eab98a406aae6a17ca2b92f8dd36 /lib/lettering
parent97f74000748cf3a53899158e1f3ea74eb1c480a5 (diff)
add categories to font (#3497)
allows to add information about the writing system (s) of the font. Json not yet updated
Diffstat (limited to 'lib/lettering')
-rw-r--r--lib/lettering/categories.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/lettering/categories.py b/lib/lettering/categories.py
index 4eff586f..9a63063a 100644
--- a/lib/lettering/categories.py
+++ b/lib/lettering/categories.py
@@ -28,5 +28,12 @@ FONT_CATEGORIES = [
FontCategory('sans_serif', _("Sans Serif")),
FontCategory('serif', _("Serif")),
FontCategory('tartan', _("Tartan")),
- FontCategory('tiny', _("Tiny"))
+ FontCategory('tiny', _("Tiny")),
+ FontCategory('arabic', _("Script: arabic")),
+ FontCategory('cyrillic', _("Script: cyrillic")),
+ FontCategory('greek', _("Script: greek")),
+ FontCategory('hebrew', _("Script: hebrew")),
+ FontCategory('japanese', _("Script: japanese")),
+ FontCategory('latin', _("Script: latin"))
+
]