diff --git a/locales/en-US.yml b/locales/en-US.yml index 701ee107b..6158d64ec 100644 --- a/locales/en-US.yml +++ b/locales/en-US.yml @@ -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" diff --git a/packages/client/src/components/MkPostForm.vue b/packages/client/src/components/MkPostForm.vue index 8d1615b02..9ff82bd20 100644 --- a/packages/client/src/components/MkPostForm.vue +++ b/packages/client/src/components/MkPostForm.vue @@ -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)]; }