Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abook_check
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_android
abook_check
Commits
f1f7ce4c
Commit
f1f7ce4c
authored
Sep 13, 2021
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
会議室接続失敗時に「会議室入室に失敗しました。」ダイアログ表示を「協業に参加することができませんでした。」に変更
parent
54d5b435
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
1 deletions
+19
-1
ABVJE_Res_Default_Android/res/values-ja/strings.xml
+2
-0
ABVJE_Res_Default_Android/res/values-ko/strings.xml
+2
-0
ABVJE_Res_Default_Android/res/values/strings.xml
+1
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ActivityHandlingHelper.java
+14
-1
No files found.
ABVJE_Res_Default_Android/res/values-ja/strings.xml
View file @
f1f7ce4c
...
@@ -1501,4 +1501,6 @@
...
@@ -1501,4 +1501,6 @@
<string
name=
"msg_eroor_network_offline"
>
接続しているネットワークがありません。
</string>
<string
name=
"msg_eroor_network_offline"
>
接続しているネットワークがありません。
</string>
<string
name=
"msg_error_connection_error_meeting_room"
>
会議室サーバに接続できませんでした。
</string>
<string
name=
"msg_error_connection_error_meeting_room"
>
会議室サーバに接続できませんでした。
</string>
<string
name=
"msg_fail_collaboration_not_action_allow"
>
文書協業中には利用できない機能です。
</string>
<string
name=
"msg_fail_collaboration_not_action_allow"
>
文書協業中には利用できない機能です。
</string>
<string
name=
"msg_fail_collaboration_join_error"
>
協業に参加することができませんでした。
</string>
</resources>
</resources>
ABVJE_Res_Default_Android/res/values-ko/strings.xml
View file @
f1f7ce4c
...
@@ -1506,4 +1506,5 @@
...
@@ -1506,4 +1506,5 @@
<string
name=
"msg_eroor_network_offline"
>
연결된 네트워크가 없습니다.
</string>
<string
name=
"msg_eroor_network_offline"
>
연결된 네트워크가 없습니다.
</string>
<string
name=
"msg_error_connection_error_meeting_room"
>
회의실 서버에 연결할 수 없습니다.
</string>
<string
name=
"msg_error_connection_error_meeting_room"
>
회의실 서버에 연결할 수 없습니다.
</string>
<string
name=
"msg_fail_collaboration_not_action_allow"
>
문서협업 중에는 이용할 수 없는 기능입니다.
</string>
<string
name=
"msg_fail_collaboration_not_action_allow"
>
문서협업 중에는 이용할 수 없는 기능입니다.
</string>
<string
name=
"msg_fail_collaboration_join_error"
>
협업에 참여하실수 없습니다.
</string>
</resources>
</resources>
\ No newline at end of file
ABVJE_Res_Default_Android/res/values/strings.xml
View file @
f1f7ce4c
...
@@ -1502,4 +1502,5 @@
...
@@ -1502,4 +1502,5 @@
<string
name=
"msg_eroor_network_offline"
>
There is no network connected.
</string>
<string
name=
"msg_eroor_network_offline"
>
There is no network connected.
</string>
<string
name=
"msg_error_connection_error_meeting_room"
>
Could not connect to the meeting room server.
</string>
<string
name=
"msg_error_connection_error_meeting_room"
>
Could not connect to the meeting room server.
</string>
<string
name=
"msg_fail_collaboration_not_action_allow"
>
This function cannot be used during document collaboration.
</string>
<string
name=
"msg_fail_collaboration_not_action_allow"
>
This function cannot be used during document collaboration.
</string>
<string
name=
"msg_fail_collaboration_join_error"
>
Could not connect to the collaboration.
</string>
</resources>
</resources>
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ActivityHandlingHelper.java
View file @
f1f7ce4c
...
@@ -1002,7 +1002,20 @@ public class ActivityHandlingHelper extends ABookHelper implements RemoteObserve
...
@@ -1002,7 +1002,20 @@ public class ActivityHandlingHelper extends ABookHelper implements RemoteObserve
if
(
data
.
startsWith
(
"onClose:1000"
))
{
if
(
data
.
startsWith
(
"onClose:1000"
))
{
saveMeetingInfo
(
null
,
null
,
null
,
false
);
saveMeetingInfo
(
null
,
null
,
null
,
false
);
}
else
if
(
contentViewActivity
==
null
&&
data
.
endsWith
(
";"
+
MeetingManager
.
STATUS_PEND
))
{
// 初期接続の失敗では再接続アラートダイアログは出さない
}
else
if
(
contentViewActivity
==
null
&&
data
.
endsWith
(
";"
+
MeetingManager
.
STATUS_PEND
))
{
// 初期接続の失敗では再接続アラートダイアログは出さない
showEnterFailedAlert
();
ChatWebViewActivity
chatWebViewActivity
=
getChatWebViewActivity
();
if
(
chatWebViewActivity
==
null
)
{
showEnterFailedAlert
();
}
else
{
chatWebViewActivity
.
finishPIPMode
();
handler
.
postDelayed
(
new
Runnable
()
{
@Override
public
void
run
()
{
ABookAlertDialog
alertDialog
=
AlertDialogUtil
.
createAlertDialog
(
getCurrentActivity
(),
mContext
.
getString
(
R
.
string
.
error
),
mContext
.
getString
(
R
.
string
.
msg_fail_collaboration_join_error
));
alertDialog
.
setPositiveButton
(
R
.
string
.
ok
,
null
);
alertDialog
.
show
();
}
},
1000
);
}
}
else
{
}
else
{
reflectContentView
=
false
;
reflectContentView
=
false
;
lastDisconnect
=
System
.
currentTimeMillis
();
lastDisconnect
=
System
.
currentTimeMillis
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment