Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
pidan
/
FuSiLive
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
99995492
authored
Jul 18, 2024
by
ludi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.添加了一个更新客服已读的方法。
2.修复本地化导致私聊声讯崩溃的bug
parent
ecdcf290
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
50 additions
and
42 deletions
FuSiLive/Classes/Common/MainControllerHelper/FUSMainViewControllerHelper.m
FuSiLive/Classes/Foundation/Socket/SocketMessage/FUSSocketMessageDBOperate.m
FuSiLive/Classes/FusiVersionFeature/Others/FUSControllerPushHelper.m
FuSiLive/Classes/InstantMessaging/Controller/FUSChatDetailViewController.m
FuSiLive/Classes/InstantMessaging/Other/FUSIMChatService.h
FuSiLive/Classes/InstantMessaging/Other/FUSIMChatService.m
FuSiLive/Classes/InstantMessaging/Other/FUSIMUserService.m
FuSiLive/Classes/NewLive/Main/View/FunctionView/MessageBox/FUSLiveMessageBoxView.m
FuSiLive/Classes/NewsFeed/Controller/FUSNewsFeedListViewController.m
FuSiLive/Classes/NewsFeed/Controller/FUSNewsFeedMessageViewController.m
FuSiLive/Classes/NewsFeed/Other/FUSNewsFeedNoticeShownHelper.m
FuSiLive/Classes/NewsFeed/RichEditor/TZImagePickerController/TZPhotoPickerController.m
FuSiLive/Classes/SingleChat/Main/Controller/FUSSingleChatViewController.m
FuSiLive/Classes/ZhaiXin/Main/Controller/FUSSingleLiveRecordViewController.m
FuSiLive/Classes/ZhaiXin/Main/View/FUSZhaiXinTableView.m
FuSiLive/Classes/ZhaiXin/Official/Controller/FUSOfficialViewController.m
FuSiLive/FUSAPPConfigs/FUSFuSiWebViewEventHelper.m
FuSiLive/Resources/LocalizationString/Fusi_Arbic.strings
FuSiLive/Resources/LocalizationString/Fusi_Chinese.strings
FuSiLive/Resources/LocalizationString/Fusi_Chinese_Traditional.strings
FuSiLive/Resources/LocalizationString/Fusi_English.strings
FuSiLive/Resources/LocalizationString/Fusi_Indonesian.strings
FuSiLive/Resources/LocalizationString/Fusi_Japanese.strings
FuSiLive/Resources/LocalizationString/Fusi_Thai.strings
FuSiLive/Resources/LocalizationString/Fusi_vietnamese.strings
FuSiLive/Classes/Common/MainControllerHelper/FUSMainViewControllerHelper.m
View file @
99995492
...
...
@@ -80,7 +80,7 @@
[[
UIApplication
sharedApplication
].
keyWindow
bringSubviewToFront
:[
UIApplication
sharedApplication
].
keyWindow
.
subviews
.
firstObject
];
// 更新未讀消息
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
}
/**
...
...
FuSiLive/Classes/Foundation/Socket/SocketMessage/FUSSocketMessageDBOperate.m
View file @
99995492
...
...
@@ -179,7 +179,7 @@
}
// 通知刷新寨信界面
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
// 消息数量置0
[
self
.
classifyMessageDict
removeAllObjects
];
...
...
FuSiLive/Classes/FusiVersionFeature/Others/FUSControllerPushHelper.m
View file @
99995492
...
...
@@ -67,6 +67,7 @@
webVC
.
webUrlString
=
[
NSString
stringWithFormat
:
@"%@?lang=%@"
,
webURL
,
FUSLocalizationHelper
.
fus_currentLanguage
.
languageID
];
vc
=
webVC
;
[
UINavigationController
fus_updateWebServicesReadStatus
:
serviceUID
];
webVC
.
closeWebViewHandler
=
^
(
NSInteger
cidType
)
{
// 更新未读
[
UINavigationController
fus_updateWebServicesReadStatus
:
serviceUID
];
...
...
@@ -83,6 +84,7 @@
webVC
.
webUrlString
=
[
NSString
stringWithFormat
:
@"%@?lang=%@"
,
webURL
,
FUSLocalizationHelper
.
fus_currentLanguage
.
languageID
];
vc
=
webVC
;
[
UINavigationController
fus_updateWebServicesReadStatus
:
serviceUID
];
webVC
.
closeWebViewHandler
=
^
(
NSInteger
cidType
)
{
// 更新未读
[
UINavigationController
fus_updateWebServicesReadStatus
:
serviceUID
];
...
...
@@ -105,7 +107,7 @@
+
(
void
)
fus_updateWebServicesReadStatus
:(
NSString
*
)
serviceUID
{
[
FUSSingleChatDBOperate
fus_updateReadStatusToSingleChatTableWithFid
:
serviceUID
];
[
FUSZhaiXinDBOperate
fus_updateUnreadToZhaiXinInfosTableWithTypeId
:[
NSString
stringWithFormat
:
@"%@%@"
,
SINGLE_CHAT
,
serviceUID
]
unread
:
0
];
[[
FUSIMChatService
shareInstance
]
fus_updateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_updateTalkListToLastMessage
Handler
];
}
-
(
void
)
fus_pushToBuyVIPControllerWithAnimate
:(
BOOL
)
animate
{
...
...
FuSiLive/Classes/InstantMessaging/Controller/FUSChatDetailViewController.m
View file @
99995492
...
...
@@ -459,7 +459,7 @@
// 设置数据库所有消息已读
[[
FUSIMChatService
shareInstance
]
fus_setCurrentTalkAllMessageRead
];
// 更新未读
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
[
self
fus_executeDefaultSetting
];
}
...
...
@@ -678,7 +678,7 @@
if
(
buttonIndex
==
1
)
{
[[
FUSIMChatService
shareInstance
]
fus_deleteAllMessageWithTalkID
:
self
.
talkID
];
[
FUSZhaiXinDBOperate
fus_deleteLastReceiveMessageWithTalkID
:
self
.
talkID
];
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
[
self
.
chatDetailArr
removeAllObjects
];
[
self
.
tableView
reloadData
];
}
...
...
@@ -990,7 +990,7 @@
[
self
fus_refrshVideoCellWithProgress
:
100
refreshIndex
:
refreshIndex
serverMsgID
:
serverMsgID
];
if
(
!
[
FUSIMChatService
shareInstance
].
chatDelegate
)
{
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
}
}
...
...
@@ -1184,7 +1184,7 @@
// 设置数据库所有消息已读
[[
FUSIMChatService
shareInstance
]
fus_setCurrentTalkAllMessageRead
];
// 更新会话列表
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
}
...
...
FuSiLive/Classes/InstantMessaging/Other/FUSIMChatService.h
View file @
99995492
...
...
@@ -230,9 +230,12 @@
-
(
void
)
fus_sendAllUnreadMessageReadAck
;
/**
更新所有会话到最新的消息
延迟 ---
更新所有会话到最新的消息
*/
-
(
void
)
fus_updateTalkListToLastMessage
;
-
(
void
)
fus_delayUpdateTalkListToLastMessage
;
/// 立刻--- 更新所有会话到最新的消息
-
(
void
)
fus_updateTalkListToLastMessageHandler
;
/**
删除一条会话中的所有消息
...
...
FuSiLive/Classes/InstantMessaging/Other/FUSIMChatService.m
View file @
99995492
...
...
@@ -446,21 +446,21 @@
// }
}
-
(
void
)
fus_
u
pdateTalkListToLastMessage
-
(
void
)
fus_
delayU
pdateTalkListToLastMessage
{
FUSLogInfo
(
@"pierce:fus_updateTalkListToLastMessage"
);
if
([
NSThread
isMainThread
])
{
[
NSObject
cancelPreviousPerformRequestsWithTarget
:
self
selector
:
@selector
(
fus_
delayUpdateTalkListToLastMessage
)
object
:
nil
];
[
self
performSelector
:
@selector
(
fus_
delayUpdateTalkListToLastMessage
)
withObject
:
nil
afterDelay
:
0
.
5
];
[
NSObject
cancelPreviousPerformRequestsWithTarget
:
self
selector
:
@selector
(
fus_
updateTalkListToLastMessageHandler
)
object
:
nil
];
[
self
performSelector
:
@selector
(
fus_
updateTalkListToLastMessageHandler
)
withObject
:
nil
afterDelay
:
0
.
5
];
}
else
{
dispatch_async
(
dispatch_get_main_queue
(),
^
{
[
NSObject
cancelPreviousPerformRequestsWithTarget
:
self
selector
:
@selector
(
fus_
delayUpdateTalkListToLastMessage
)
object
:
nil
];
[
self
performSelector
:
@selector
(
fus_
delayUpdateTalkListToLastMessage
)
withObject
:
nil
afterDelay
:
0
.
5
];
[
NSObject
cancelPreviousPerformRequestsWithTarget
:
self
selector
:
@selector
(
fus_
updateTalkListToLastMessageHandler
)
object
:
nil
];
[
self
performSelector
:
@selector
(
fus_
updateTalkListToLastMessageHandler
)
withObject
:
nil
afterDelay
:
0
.
5
];
});
}
}
-
(
void
)
fus_
delayUpdateTalkListToLastMessage
-
(
void
)
fus_
updateTalkListToLastMessageHandler
{
NSArray
*
latestTalkList
=
[[
EMClient
sharedClient
].
chatManager
getAllConversations
];
[
self
fus_transformSdkListToTalkList
:
latestTalkList
needCombinationOldTalkList
:
YES
];
...
...
@@ -807,7 +807,7 @@
[
FUSLoadingView
fus_dismissProgressView
];
if
(
!
_chatDelegate
)
{
// [self fus_
u
pdateTalkListToLastMessage];
// [self fus_
delayU
pdateTalkListToLastMessage];
// [[NSNotificationCenter defaultCenter] postNotificationName:ZhaiXin_Refresh object:nil];
}
...
...
@@ -1675,7 +1675,7 @@
}
}
else
{
// 界面外更新未读消息
[
self
fus_
u
pdateTalkListToLastMessage
];
[
self
fus_
delayU
pdateTalkListToLastMessage
];
if
(
sysType
==
FUSSystemNoticeTypeReceivePrivateVoiceLive
||
sysType
==
FUSSystemNoticeTypeReceivePrivateVideoLive
)
{
[
FUSSoundAndVibrateHelper
fus_playSystemSoundAndVibrate
];
}
...
...
@@ -1758,7 +1758,7 @@
}
}
else
{
// 界面外
[
self
fus_
u
pdateTalkListToLastMessage
];
[
self
fus_
delayU
pdateTalkListToLastMessage
];
[
FUSSoundAndVibrateHelper
fus_playSystemSoundAndVibrate
];
}
}
...
...
@@ -2378,7 +2378,7 @@
if
(
!
self
.
chatDelegate
)
{
// 发通知刷新寨信,修改发送状态
[
self
fus_
u
pdateTalkListToLastMessage
];
[
self
fus_
delayU
pdateTalkListToLastMessage
];
}
if
(
!
error
)
{
...
...
@@ -3597,7 +3597,7 @@
[
_chatDelegate
fus_triggerMessagesReceiveEvent
:
newMessageList
];
}
}
else
{
// 界面外
[
self
fus_
u
pdateTalkListToLastMessage
];
[
self
fus_
delayU
pdateTalkListToLastMessage
];
[
FUSSoundAndVibrateHelper
fus_playSystemSoundAndVibrate
];
}
...
...
FuSiLive/Classes/InstantMessaging/Other/FUSIMUserService.m
View file @
99995492
...
...
@@ -175,7 +175,7 @@
}
// 更新到最新的会话
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
});
...
...
@@ -209,7 +209,7 @@
dispatch_async
(
dispatch_get_main_queue
(),
^
{
// 更新到最新的离线会话
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
});
}
}];
...
...
FuSiLive/Classes/NewLive/Main/View/FunctionView/MessageBox/FUSLiveMessageBoxView.m
View file @
99995492
...
...
@@ -206,7 +206,7 @@ static dispatch_queue_t get_live_message_box_parse_queue(){
// 发通知刷新寨信
if
(
!
[
FUSIMChatService
shareInstance
].
chatDelegate
)
{
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
}
[
FUSDialogView
fus_showDialog
:[
NSString
fus_localString
:
@"所有私信已忽略"
]];
...
...
@@ -447,7 +447,7 @@ static dispatch_queue_t get_live_message_box_parse_queue(){
[[
FUSIMChatService
shareInstance
]
fus_deleteAllMessageWithTalkID
:
model
.
uid
];
}
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
[
weakSelf
.
tableView
beginUpdates
];
[
weakSelf
.
dataSource
removeObjectAtIndex
:
indexPath
.
row
];
...
...
FuSiLive/Classes/NewsFeed/Controller/FUSNewsFeedListViewController.m
View file @
99995492
...
...
@@ -47,7 +47,7 @@
[
self
configNavigation
];
[[
NSUserDefaults
standardUserDefaults
]
setObject
:
@
(
NO
)
forKey
:
HAS_NEWS_FEED_NEW_PUBLISHED
([
FUSCacheDataShare
shareStore
].
userDetailInfo
.
uid
)];
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
}
-
(
void
)
viewWillAppear
:
(
BOOL
)
animated
{
...
...
@@ -299,7 +299,7 @@
NSInteger
unhandleCount
=
[[[
NSUserDefaults
standardUserDefaults
]
objectForKey
:
NEWS_FEED_NEW_FOCUS_PUBLISH_COUNT
([
FUSCacheDataShare
shareStore
].
userDetailInfo
.
uid
)]
integerValue
];
if
(
unhandleCount
>
0
)
{
[[
NSUserDefaults
standardUserDefaults
]
setObject
:
@"0"
forKey
:
NEWS_FEED_NEW_FOCUS_PUBLISH_COUNT
([
FUSCacheDataShare
shareStore
].
userDetailInfo
.
uid
)];
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
}
}
if
(
FUSRTL
.
isRTL
)
{
...
...
FuSiLive/Classes/NewsFeed/Controller/FUSNewsFeedMessageViewController.m
View file @
99995492
...
...
@@ -38,7 +38,7 @@
[
self
fus_loadData
];
[[
NSUserDefaults
standardUserDefaults
]
setObject
:
@
(
0
)
forKey
:
NEWS_FEED_UNHANDLE_COUNT
([
FUSCacheDataShare
shareStore
].
userDetailInfo
.
uid
)];
[[
NSNotificationCenter
defaultCenter
]
postNotificationName
:
FUS_NEWS_FEED_DID_RECEIVE_MESSAGE_NOTIFICATION
object
:
nil
];
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
dispatch_after
(
dispatch_time
(
DISPATCH_TIME_NOW
,
(
int64_t
)(
0
.
5
*
NSEC_PER_SEC
)),
dispatch_get_main_queue
(),
^
{
[
FUSNewsFeedNoticeShownHelper
fus_showEnterFeedMessagePageAlertIfNeeded
];
...
...
FuSiLive/Classes/NewsFeed/Other/FUSNewsFeedNoticeShownHelper.m
View file @
99995492
...
...
@@ -77,7 +77,7 @@
[
FUSZhaiXinDBOperate
fus_writeMultiDataToZhaiXinInfosTableWithModelArray
:@[
model
]
keyArray
:@[
@"typeId"
]];
// 通知刷新寨信界面
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
}
}
failure
:
^
(
NSString
*
_Nonnull
msg
,
int
code
)
{
...
...
FuSiLive/Classes/NewsFeed/RichEditor/TZImagePickerController/TZPhotoPickerController.m
View file @
99995492
...
...
@@ -143,7 +143,7 @@ static CGFloat collectionViewMargin = 0;
_selectedStyleBtn
=
[
FUSStyleButton
buttonWithType
:
UIButtonTypeCustom
];
_selectedStyleBtn
.
frame
=
CGRectMake
(
0
,
0
,
60
,
30
);
[
_selectedStyleBtn
setTitle
:[
NSString
fus_localString
:
@"完成"
]
forState
:
UIControlStateNormal
];
_selectedStyleBtn
.
style
=
FUSButtonStyleBlue
Border
;
_selectedStyleBtn
.
style
=
FUSButtonStyleBlue
;
_selectedStyleBtn
.
titleLabel
.
font
=
[
UIFont
systemFontOfSize
:
13
];
[
_selectedStyleBtn
addTarget
:
self
action
:
@selector
(
doneButtonClick
)
forControlEvents
:
UIControlEventTouchUpInside
];
_selectedStyleBtn
.
enabled
=
NO
;
...
...
FuSiLive/Classes/SingleChat/Main/Controller/FUSSingleChatViewController.m
View file @
99995492
...
...
@@ -85,7 +85,7 @@
// 更新未读
[
FUSSingleChatDBOperate
fus_updateReadStatusToSingleChatTableWithFid
:
self
.
uid
];
[
FUSZhaiXinDBOperate
fus_updateUnreadToZhaiXinInfosTableWithTypeId
:[
NSString
stringWithFormat
:
@"%@%@"
,
SINGLE_CHAT
,
self
.
uid
]
unread
:
0
];
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
// 注册通知
[
self
registerNotification
];
...
...
FuSiLive/Classes/ZhaiXin/Main/Controller/FUSSingleLiveRecordViewController.m
View file @
99995492
...
...
@@ -125,7 +125,7 @@
{
NSString
*
uid
=
[[[
FUSCacheDataShare
shareStore
]
userDetailInfo
]
uid
];
[[
NSUserDefaults
standardUserDefaults
]
setObject
:
@"0"
forKey
:
FUSBO_SINGLE_LIVE_RECORD_COUNT
(
uid
)];
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
}
-
(
void
)
loadSingleLiveRecordList
...
...
FuSiLive/Classes/ZhaiXin/Main/View/FUSZhaiXinTableView.m
View file @
99995492
...
...
@@ -169,7 +169,7 @@
[
self
.
viewController
.
navigationController
pushViewController
:
newsfeedVc
animated
:
YES
];
[
FUSZhaiXinDBOperate
fus_updateUnreadToZhaiXinInfosTableWithTypeId
:
NEWS_FEED_MESSAGE
unread
:
0
];
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
}
}
...
...
@@ -245,7 +245,7 @@
[[
NSUserDefaults
standardUserDefaults
]
setObject
:
@"0"
forKey
:
FUSBO_SINGLE_LIVE_RECORD_COUNT
(
uid
)];
}
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
}
-
(
void
)
zhaiXinRefresh
...
...
FuSiLive/Classes/ZhaiXin/Official/Controller/FUSOfficialViewController.m
View file @
99995492
...
...
@@ -198,7 +198,7 @@
break
;
}
[
FUSZhaiXinDBOperate
fus_updateUnreadToZhaiXinInfosTableWithTypeId
:
typeId
unread
:
0
];
[[
FUSIMChatService
shareInstance
]
fus_
u
pdateTalkListToLastMessage
];
[[
FUSIMChatService
shareInstance
]
fus_
delayU
pdateTalkListToLastMessage
];
}
-
(
void
)
onClickNavBackBtn
...
...
FuSiLive/FUSAPPConfigs/FUSFuSiWebViewEventHelper.m
View file @
99995492
...
...
@@ -975,8 +975,11 @@ static NSString *FUSWebRightBtnExtraInfoKey = @"FUSWebRightBtnExtraInfoKey";
if
([
dataDict
[
@"isBox"
]
boolValue
])
{
return
;
}
BOOL
hideTitle
=
[
dataDict
[
@"hideTitle"
]
boolValue
];
FUSWKWebViewController
*
wkVc
=
[[
FUSWKWebViewController
alloc
]
init
];
wkVc
.
needHideWebTitleBar
=
hideTitle
;
wkVc
.
webUrlString
=
openURLString
;
wkVc
.
shouldShowShareBtn
=
shouldShare
;
if
([
self
.
wkVC
isKindOfClass
:[
FUSWKWebViewController
class
]])
{
...
...
FuSiLive/Resources/LocalizationString/Fusi_Arbic.strings
View file @
99995492
...
...
@@ -326,7 +326,7 @@
"宝石储值" = "شحن GEMs";
"对方的信用指数低于%.1f分的基础,可能有一定的诚信风险,确认继续通话吗?" = "رصيد الجانب الآخر أقل من %
1$s، مما قد ينطوي على
مخاطر ائتمانية محتملة، هل تريد الاستمرار في الاتصال؟";
"对方的信用指数低于%.1f分的基础,可能有一定的诚信风险,确认继续通话吗?" = "رصيد الجانب الآخر أقل من %
.1f، مما قد يكون له
مخاطر ائتمانية محتملة، هل تريد الاستمرار في الاتصال؟";
"录制时长最短3秒。" = "Record time are 3 seconds at least";
...
...
FuSiLive/Resources/LocalizationString/Fusi_Chinese.strings
View file @
99995492
...
...
@@ -332,7 +332,7 @@
"宝石储值" = "寶石儲值";
"对方的信用指数低于%.1f分的基础,可能有一定的诚信风险,确认继续通话吗?" = "對方的信用指數低於%
1$s
分,可能存在一定的信用風險,確認繼續通話嗎?";
"对方的信用指数低于%.1f分的基础,可能有一定的诚信风险,确认继续通话吗?" = "對方的信用指數低於%
.1f
分,可能存在一定的信用風險,確認繼續通話嗎?";
"录制时长最短3秒。" = "錄製時長最短3秒";
...
...
FuSiLive/Resources/LocalizationString/Fusi_Chinese_Traditional.strings
View file @
99995492
...
...
@@ -332,7 +332,7 @@
"宝石储值" = "寶石儲值";
"对方的信用指数低于%.1f分的基础,可能有一定的诚信风险,确认继续通话吗?" = "對方的信用指數低於%
1$s
分,可能存在一定的信用風險,確認繼續通話嗎?";
"对方的信用指数低于%.1f分的基础,可能有一定的诚信风险,确认继续通话吗?" = "對方的信用指數低於%
.1f
分,可能存在一定的信用風險,確認繼續通話嗎?";
"录制时长最短3秒。" = "錄製時長最短3秒";
...
...
FuSiLive/Resources/LocalizationString/Fusi_English.strings
View file @
99995492
...
...
@@ -332,7 +332,7 @@
"宝石储值" = "Recharge GEMs";
"对方的信用指数低于%.1f分的基础,可能有一定的诚信风险,确认继续通话吗?" = "The credit of the other side is lower than %
1$s
,which may have potential credit risk ,continue to call?";
"对方的信用指数低于%.1f分的基础,可能有一定的诚信风险,确认继续通话吗?" = "The credit of the other side is lower than %
.1f
,which may have potential credit risk ,continue to call?";
"录制时长最短3秒。" = "Record time are 3 seconds at least";
...
...
FuSiLive/Resources/LocalizationString/Fusi_Indonesian.strings
View file @
99995492
...
...
@@ -328,7 +328,7 @@
"宝石储值" = "Tambahkan Saldo GEMs";
"对方的信用指数低于%.1f分的基础,可能有一定的诚信风险,确认继续通话吗?" = "Kredit pihak lain lebih rendah dari %
1$s
, yang mungkin memiliki potensi risiko kredit, terus menelepon?";
"对方的信用指数低于%.1f分的基础,可能有一定的诚信风险,确认继续通话吗?" = "Kredit pihak lain lebih rendah dari %
.1f
, yang mungkin memiliki potensi risiko kredit, terus menelepon?";
"录制时长最短3秒。" = "Record time are 3 seconds at least";
...
...
FuSiLive/Resources/LocalizationString/Fusi_Japanese.strings
View file @
99995492
...
...
@@ -330,7 +330,7 @@
"宝石储值" = "GEMsをトップアップ";
"对方的信用指数低于%.1f分的基础,可能有一定的诚信风险,确认继续通话吗?" = "相手側の信用度は %
1$s より低いため、
信用リスクがある可能性があります。引き続き電話をかけますか?";
"对方的信用指数低于%.1f分的基础,可能有一定的诚信风险,确认继续通话吗?" = "相手側の信用度は %
.1f より低いため、潜在的な
信用リスクがある可能性があります。引き続き電話をかけますか?";
"录制时长最短3秒。" = "Record time are 3 seconds at least";
...
...
FuSiLive/Resources/LocalizationString/Fusi_Thai.strings
View file @
99995492
...
...
@@ -328,7 +328,7 @@
"宝石储值" = "เติมเงิน GEMs";
"对方的信用指数低于%.1f分的基础,可能有一定的诚信风险,确认继续通话吗?" = "เครดิตของอีกฝ
ั่งต่ำกว่า %1$s
ซึ่งอาจมีความเสี่ยงด้านเครดิต เรียกต่อไปหรือไม่?";
"对方的信用指数低于%.1f分的基础,可能有一定的诚信风险,确认继续通话吗?" = "เครดิตของอีกฝ
่ายต่ำกว่า %.1f
ซึ่งอาจมีความเสี่ยงด้านเครดิต เรียกต่อไปหรือไม่?";
"录制时长最短3秒。" = "Record time are 3 seconds at least";
...
...
FuSiLive/Resources/LocalizationString/Fusi_vietnamese.strings
View file @
99995492
...
...
@@ -330,7 +330,7 @@
"宝石储值" = "Nạp GEMs";
"对方的信用指数低于%.1f分的基础,可能有一定的诚信风险,确认继续通话吗?" = "Tín dụng của bên kia thấp hơn %
1$s
, có thể tiềm ẩn rủi ro tín dụng, tiếp tục gọi?";
"对方的信用指数低于%.1f分的基础,可能有一定的诚信风险,确认继续通话吗?" = "Tín dụng của bên kia thấp hơn %
.1f
, có thể tiềm ẩn rủi ro tín dụng, tiếp tục gọi?";
"录制时长最短3秒。" = "Record time are 3 seconds at least";
...
...
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