« get me outta code hell

data: make various wiki-properties fn's into compositions - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/things/language.js
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2025-12-06 13:55:33 -0400
committer(quasar) nebula <qznebula@protonmail.com>2025-12-06 13:55:33 -0400
commit722fe82043e74bdb7c10ed214a9f3006a26ff42b (patch)
tree2949fa4b4235acef5cf0b012c6071d7ed0b57bf2 /src/data/things/language.js
parentc7cc130f97c2a0f390ba0e07e3aa048395636817 (diff)
data: make various wiki-properties fn's into compositions
Diffstat (limited to 'src/data/things/language.js')
-rw-r--r--src/data/things/language.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data/things/language.js b/src/data/things/language.js
index 1e22ead6..7f3f43de 100644
--- a/src/data/things/language.js
+++ b/src/data/things/language.js
@@ -35,7 +35,7 @@ export class Language extends Thing {
 
     // Human-readable name. This should be the language's own native name, not
     // localized to any other language.
-    name: name(`Unnamed Language`),
+    name: name(V(`Unnamed Language`)),
 
     // Language code specific to JavaScript's Internationalization (Intl) API.
     // Usually this will be the same as the language's general code, but it
@@ -57,7 +57,7 @@ export class Language extends Thing {
     // with languages that are currently in development and not ready for
     // formal release, or which are just kept hidden as "experimental zones"
     // for wiki development or content testing.
-    hidden: flag(false),
+    hidden: flag(V(false)),
 
     // Mapping of translation keys to values (strings). Generally, don't
     // access this object directly - use methods instead.