From 37d1e1b5055362bebb3dcbbd0e24caecc936aee8 Mon Sep 17 00:00:00 2001
From: gutfuckllc <40531868+gutfuckllc@users.noreply.github.com>
Date: Mon, 6 Aug 2018 20:57:14 -0400
Subject: [PATCH] Localize "only one file attached" popup

---
 locales/ja.yml                                                | 1 +
 .../app/common/views/components/messaging-room.form.vue       | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/locales/ja.yml b/locales/ja.yml
index d1cc5c325..87de0f662 100644
--- a/locales/ja.yml
+++ b/locales/ja.yml
@@ -261,6 +261,7 @@ common/views/components/messaging-room.form.vue:
   send: "送信"
   attach-from-local: "PCからファイルを添付する"
   attach-from-drive: "ドライブからファイルを添付する"
+  only-one-file-attached: "メッセージに添付できるのはひとつのファイルのみです"
 
 common/views/components/messaging-room.message.vue:
   is-read: "既読"
diff --git a/src/client/app/common/views/components/messaging-room.form.vue b/src/client/app/common/views/components/messaging-room.form.vue
index b6ca90266..f183749fa 100644
--- a/src/client/app/common/views/components/messaging-room.form.vue
+++ b/src/client/app/common/views/components/messaging-room.form.vue
@@ -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;
 			}