Commit 6d81f4e4 by Lee Munkyeong

Confirmメッセージ修正。

parent bcafd6fc
...@@ -395,8 +395,6 @@ public class ChatWebViewActivity extends CommunicationWebViewActivity { ...@@ -395,8 +395,6 @@ public class ChatWebViewActivity extends CommunicationWebViewActivity {
message = getString(R.string.msg_rejected_by_host); message = getString(R.string.msg_rejected_by_host);
} else if (message.contains("Invalid Parameters")) { } else if (message.contains("Invalid Parameters")) {
message = getString(R.string.msg_invalid_parameters); message = getString(R.string.msg_invalid_parameters);
} else if (message.contains("Create room anyway?")) {
message = getString(R.string.msg_destroy_exist_collaboration);
} }
final String tempMessage = message; final String tempMessage = message;
...@@ -461,6 +459,8 @@ public class ChatWebViewActivity extends CommunicationWebViewActivity { ...@@ -461,6 +459,8 @@ public class ChatWebViewActivity extends CommunicationWebViewActivity {
} }
} else if (message.equals("캡쳐한 사진을 공유 하시겠습니까?")) { } else if (message.equals("캡쳐한 사진을 공유 하시겠습니까?")) {
message = getString(R.string.msg_confirm_share_image); message = getString(R.string.msg_confirm_share_image);
} else if (message.contains("Create room anyway?")) {
message = getString(R.string.msg_destroy_exist_collaboration);
} }
final ABookAlertDialog confirmAlert = AlertDialogUtil.createAlertDialog(ChatWebViewActivity.this, R.string.app_name); final ABookAlertDialog confirmAlert = AlertDialogUtil.createAlertDialog(ChatWebViewActivity.this, R.string.app_name);
confirmAlert.setMessage(message); confirmAlert.setMessage(message);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment