WTMP (Way Too Many Placeholders)

This commit is contained in:
nelle 2024-08-25 12:59:19 -06:00
parent 31ff847982
commit 76ac9b2cc3
2 changed files with 24 additions and 0 deletions

View file

@ -1746,6 +1746,18 @@ _postForm:
k: "What? is an @channel festival happening?"
l: "Tell us every thought you think"
m: "Nice delusions, you should share them"
n: "Just Arrived at Nakano Symphonies"
o: "Just arrived at the Future Gadget Laboratory"
p: "Just arrived at Suimei Academy"
q: "Just arrived at Hekiho Academy"
r: "Just arrived at AH Tokyo General Hospital"
s: "Just arrived at Nozomi Technology Main Building"
t: "Just arrived at the Committee of 300"
u: "Just arrived at Noah II"
v: "Just arrived at Radio Kaikan"
w: "Just arrived at Viktor Chondria University"
x: "Just arrived at Aoba Clinic"
y: "Just arrived at the Cosmic Church of the Divine Light"
_profile:
name: "Name"
username: "Username"

View file

@ -388,6 +388,18 @@ const placeholder = $computed((): string => {
i18n.ts._postForm._placeholders.k,
i18n.ts._postForm._placeholders.l,
i18n.ts._postForm._placeholders.m,
i18n.ts._postForm._placeholders.n,
i18n.ts._postForm._placeholders.o,
i18n.ts._postForm._placeholders.p,
i18n.ts._postForm._placeholders.q,
i18n.ts._postForm._placeholders.r,
i18n.ts._postForm._placeholders.s,
i18n.ts._postForm._placeholders.t,
i18n.ts._postForm._placeholders.u,
i18n.ts._postForm._placeholders.v,
i18n.ts._postForm._placeholders.w,
i18n.ts._postForm._placeholders.x,
i18n.ts._postForm._placeholders.y,
];
return xs[Math.floor(Math.random() * xs.length)];
}