Localize "only one file attached" popup
This commit is contained in:
@ -83,7 +83,7 @@ export default Vue.extend({
|
||||
}
|
||||
} else {
|
||||
if (items[0].kind == 'file') {
|
||||
alert('メッセージに添付できるのはひとつのファイルのみです');
|
||||
alert('%i18n:only-one-file-attached%');
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -105,7 +105,7 @@ export default Vue.extend({
|
||||
return;
|
||||
} else if (e.dataTransfer.files.length > 1) {
|
||||
e.preventDefault();
|
||||
alert('メッセージに添付できるのはひとつのファイルのみです');
|
||||
alert('%i18n:only-one-file-attached%');
|
||||
return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user