Add some more post-form placeholders

This commit is contained in:
nelle 2024-08-03 19:53:25 -06:00
parent b97dfe5e1b
commit ef9a771118
2 changed files with 6 additions and 0 deletions

View file

@ -1739,6 +1739,9 @@ _postForm:
d: "What do you want to beep?"
e: "Rounders got your keyboard?"
f: "Just arrived at Luna Nova Academy"
g: "What's the weather like?"
h: "Last sessions W/L Ratio in KillBallad?"
i: "Message to FB"
_profile:
name: "Name"
username: "Username"

View file

@ -381,6 +381,9 @@ const placeholder = $computed((): string => {
i18n.ts._postForm._placeholders.d,
i18n.ts._postForm._placeholders.e,
i18n.ts._postForm._placeholders.f,
i18n.ts._postForm._placeholders.g,
i18n.ts._postForm._placeholders.h,
i18n.ts._postForm._placeholders.i,
];
return xs[Math.floor(Math.random() * xs.length)];
}