mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-09 00:03:09 +02:00
✌️
This commit is contained in:
parent
2ddbca4641
commit
e5431648fd
4 changed files with 19 additions and 12 deletions
|
@ -42,9 +42,10 @@ common:
|
|||
note-placeholders:
|
||||
a: "今どうしてる?"
|
||||
b: "何かありましたか?"
|
||||
c: "言いたいことは?"
|
||||
d: "ここに書いてください"
|
||||
e: "あなたが書くのを待っています..."
|
||||
c: "何をお考えですか?"
|
||||
d: "言いたいことは?"
|
||||
e: "ここに書いてください"
|
||||
f: "あなたが書くのを待っています..."
|
||||
|
||||
delete: "削除"
|
||||
loading: "読み込み中"
|
||||
|
|
|
@ -86,13 +86,15 @@ export default Vue.extend({
|
|||
},
|
||||
|
||||
placeholder(): string {
|
||||
const x = [
|
||||
const xs = [
|
||||
'%i18n:common.note-placeholders.a%',
|
||||
'%i18n:common.note-placeholders.b%',
|
||||
'%i18n:common.note-placeholders.c%',
|
||||
'%i18n:common.note-placeholders.d%',
|
||||
'%i18n:common.note-placeholders.e%'
|
||||
][Math.floor(Math.random() * 5)];
|
||||
'%i18n:common.note-placeholders.e%',
|
||||
'%i18n:common.note-placeholders.f%'
|
||||
];
|
||||
const x = xs[Math.floor(Math.random() * xs.length)];
|
||||
|
||||
return this.renote
|
||||
? '%i18n:@quote-placeholder%'
|
||||
|
|
|
@ -24,13 +24,15 @@ export default define({
|
|||
},
|
||||
computed: {
|
||||
placeholder(): string {
|
||||
return [
|
||||
const xs = [
|
||||
'%i18n:common.note-placeholders.a%',
|
||||
'%i18n:common.note-placeholders.b%',
|
||||
'%i18n:common.note-placeholders.c%',
|
||||
'%i18n:common.note-placeholders.d%',
|
||||
'%i18n:common.note-placeholders.e%'
|
||||
][Math.floor(Math.random() * 5)];
|
||||
'%i18n:common.note-placeholders.e%',
|
||||
'%i18n:common.note-placeholders.f%'
|
||||
];
|
||||
return xs[Math.floor(Math.random() * xs.length)];
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
|
|
@ -80,13 +80,15 @@ export default Vue.extend({
|
|||
},
|
||||
|
||||
placeholder(): string {
|
||||
const x = [
|
||||
const xs = [
|
||||
'%i18n:common.note-placeholders.a%',
|
||||
'%i18n:common.note-placeholders.b%',
|
||||
'%i18n:common.note-placeholders.c%',
|
||||
'%i18n:common.note-placeholders.d%',
|
||||
'%i18n:common.note-placeholders.e%'
|
||||
][Math.floor(Math.random() * 5)];
|
||||
'%i18n:common.note-placeholders.e%',
|
||||
'%i18n:common.note-placeholders.f%'
|
||||
];
|
||||
const x = xs[Math.floor(Math.random() * xs.length)];
|
||||
|
||||
return this.renote
|
||||
? '%i18n:@quote-placeholder%'
|
||||
|
|
Loading…
Reference in a new issue