summaryrefslogtreecommitdiff
path: root/dicts.fnl
diff options
context:
space:
mode:
authorunwox <me@unwox.com>2025-09-07 20:22:47 +0600
committerunwox <me@unwox.com>2025-09-07 22:16:39 +0600
commit88d1725520afde9fe10a3daa1ad5c1c0a552f041 (patch)
tree04069377658ac0b6c2fa903e0d2b42e8f2221031 /dicts.fnl
parent4b0373bb42e21153f63d33f3546be9095d495f27 (diff)
small fixes
Diffstat (limited to 'dicts.fnl')
-rw-r--r--dicts.fnl12
1 files changed, 10 insertions, 2 deletions
diff --git a/dicts.fnl b/dicts.fnl
index d7c72b6..4f42526 100644
--- a/dicts.fnl
+++ b/dicts.fnl
@@ -5,7 +5,15 @@
{:value "red" :label "Красный"}
{:value "green" :label "Зеленый"}
{:value "shu-puerh" :label "Шу пуэр"}
- {:value "sheng-puerh" :label "Шэн пуэр"}])
+ {:value "sheng-puerh" :label "Шэн пуэр"}
+ {:value "yellow" :label "Желтый"}
+ {:value "liu-bao" :label "Лю бао"}])
+
+(local tea-season
+ [{:value "spring" :label "Весна"}
+ {:value "summer" :label "Лето"}
+ {:value "autumn" :label "Осень"}
+ {:value "winter" :label "Зима"}])
(local tea-packaging
[{:value "loose" :label "Россыпь"}
@@ -19,4 +27,4 @@
(set result item.label)))
result)
-{: tea-type : tea-packaging : label}
+{: tea-type : tea-packaging : tea-season : label}