mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 05:57:32 -07:00
Localize unlocalized line
This commit is contained in:
parent
7715c74b94
commit
67dc62f554
2 changed files with 2 additions and 1 deletions
|
@ -253,6 +253,7 @@ common/views/components/messaging-room.vue:
|
|||
no-history: "これより過去の履歴はありません"
|
||||
resize-form: "ドラッグしてフォームの広さを調整"
|
||||
new-message: "新しいメッセージがあります"
|
||||
only-one-file-attached: "メッセージに添付できるのはひとつのファイルのみです"
|
||||
|
||||
common/views/components/messaging-room.form.vue:
|
||||
input-message-here: "ここにメッセージを入力"
|
||||
|
|
|
@ -111,7 +111,7 @@ export default Vue.extend({
|
|||
this.form.upload(e.dataTransfer.files[0]);
|
||||
return;
|
||||
} else if (e.dataTransfer.files.length > 1) {
|
||||
alert('メッセージに添付できるのはひとつのファイルのみです');
|
||||
alert('%i18n:@only-one-file-attached%');
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue