feat:完成多语言(新增英文)

This commit is contained in:
max
2024-03-01 21:10:49 +08:00
parent 642b0cc1fc
commit c49d8c0f0c
53 changed files with 19691 additions and 6412 deletions

View File

@@ -271,7 +271,7 @@ public class RoomOperationDialog extends BottomSheetDialog {
private void addRoomAlbum(OptAdapter optAdapter) {
if (AvRoomDataManager.get().isHasRoomAlbum()) {
optAdapter.addData(new OptAction(R.drawable.ic_room_operation_album, "房间相册", () -> {
optAdapter.addData(new OptAction(R.drawable.ic_room_operation_album, ResUtil.getString(R.string.room_album), () -> {
RoomAlbumActivity.start(getContext());
}));
}

View File

@@ -767,7 +767,7 @@ open class BaseRoomFragment<V : IBaseRoomView?, P : BaseRoomPresenter<V>?> :
) {
val buttonItems: MutableList<ButtonItem> = ArrayList(4)
val presideMic = AvRoomDataManager.get().isDatingMode && micPosition == -1
val presideText = if (presideMic) "當主持人" else ""
val presideText = if (presideMic) ResUtil.getString(R.string.switch_host) else ""
val buttonItem1 = ButtonItem(
getString(R.string.embrace_up_mic) + presideText,
object : ButtonItem.OnClickListener {
@@ -813,7 +813,7 @@ open class BaseRoomFragment<V : IBaseRoomView?, P : BaseRoomPresenter<V>?> :
}
})
val buttonItem4 =
ButtonItem("上麥") { toUpMicroPhone(micPosition, currentUid.toString() + "", false) }
ButtonItem(ResUtil.getString(R.string.up_mic)) { toUpMicroPhone(micPosition, currentUid.toString() + "", false) }
//別問為什麽ui調整了順序
//禁用超管的上麥和抱TA上麥
if (!SuperAdminUtil.isSuperAdmin()) {

View File

@@ -38,6 +38,7 @@ import com.chwl.core.manager.RoomEvent
import com.chwl.core.pay.event.FirstChargeEvent
import com.chwl.core.user.bean.UserInfo
import com.chwl.library.base.factory.CreatePresenter
import com.chwl.library.utils.ResUtil
import com.example.lib_utils.ktx.singleClick
import com.netease.nim.uikit.common.util.sys.ScreenUtil
import org.greenrobot.eventbus.Subscribe
@@ -105,7 +106,7 @@ class SingleRoomFragment : BaseRoomFragment<ISingleRoomView?, SingleRoomPresente
if (AvRoomDataManager.get().isRoomOwner) {
gameBinding.flFansTeamJoinTip.isVisible = false
gameBinding.tvFansTeamOpt.isVisible = true
gameBinding.tvFansTeamOpt.text = "粉絲團(${initInfo.anchorFansNum})"
gameBinding.tvFansTeamOpt.text = ResUtil.getString(R.string.fan_club)+"(${initInfo.anchorFansNum})"
clickListener = View.OnClickListener {
DialogWebViewActivity.start(
requireContext(),
@@ -117,7 +118,7 @@ class SingleRoomFragment : BaseRoomFragment<ISingleRoomView?, SingleRoomPresente
gameBinding.flFansTeamJoinTip.isVisible = false
gameBinding.tvFansTeamOpt.isVisible = true
gameBinding.tvFansTeamOpt.text =
"粉絲LV.${if (initInfo.fansLevelSeq == 0) 1 else initInfo.fansLevelSeq}"
"${ResUtil.getString(R.string.fan)}LV.${if (initInfo.fansLevelSeq == 0) 1 else initInfo.fansLevelSeq}"
clickListener = View.OnClickListener {
FansTeamJoinedActivity.start(requireContext())
}
@@ -133,7 +134,7 @@ class SingleRoomFragment : BaseRoomFragment<ISingleRoomView?, SingleRoomPresente
if (AvRoomDataManager.get().isRoomOwner) {
gameBinding.flFansTeamJoinTip.isVisible = false
gameBinding.tvFansTeamOpt.isVisible = true
gameBinding.tvFansTeamOpt.text = "開通粉絲團"
gameBinding.tvFansTeamOpt.text = ResUtil.getString(R.string.open_fan_club)
clickListener = View.OnClickListener {
CommonWebViewActivity.start(
requireContext(),
@@ -143,7 +144,7 @@ class SingleRoomFragment : BaseRoomFragment<ISingleRoomView?, SingleRoomPresente
} else {
gameBinding.flFansTeamJoinTip.isVisible = false
gameBinding.tvFansTeamOpt.isVisible = true
gameBinding.tvFansTeamOpt.text = "TA暫未開通粉絲團"
gameBinding.tvFansTeamOpt.text = ResUtil.getString(R.string.layout_fragment_single_room_03)
}
}
gameBinding.flFansTeam.setOnClickListener(clickListener)

View File

@@ -68,7 +68,7 @@ class SingleRoomPKBoardView @JvmOverloads constructor(
.subscribe()
}
} else {
"主播已關閉對方房間的聲音".toast()
ResUtil.getString(R.string.close_other_room_sound).toast()
}
}
}

View File

@@ -9,6 +9,7 @@ import com.chwl.app.R
import com.chwl.app.ui.utils.ImageLoadUtils
import com.chwl.core.room.anotherroompk.SimpleRoomInfo
import com.chwl.core.utils.extension.subAndReplaceDot
import com.chwl.library.utils.ResUtil
class SingleRoomPKSearchAdapter :
BaseQuickAdapter<SimpleRoomInfo, BaseViewHolder>(R.layout.item_single_room_pk_search) {
@@ -21,13 +22,13 @@ class SingleRoomPKSearchAdapter :
val tvSelect = helper.getView<TextView>(R.id.tv_select)
tvSelect.isEnabled = !item.crossPking && item.valid
if (!item.valid) {
tvSelect.text = "離線"
tvSelect.text = ResUtil.getString(R.string.offline)
tvSelect.setTextColor("#80C6C6E9".toColorInt())
} else if (item.crossPking) {
tvSelect.text = "PK中"
tvSelect.setTextColor("#80C6C6E9".toColorInt())
} else {
tvSelect.text = "選擇"
tvSelect.text = ResUtil.getString(R.string.select)
tvSelect.setTextColor(Color.WHITE)
}
}

View File

@@ -1069,7 +1069,7 @@ public class MessageView extends FrameLayout {
ImageLoadUtilsV2.loadImage2(ivUserLevel, mRoomAlbumMsgInfo.getUserLevel().getExperUrl(), Target.SIZE_ORIGINAL);
ImageLoadUtilsV2.loadImage2(ivUserCharm, mRoomAlbumMsgInfo.getUserLevel().getCharmUrl(), Target.SIZE_ORIGINAL);
tvNick.setText(user.getNick());
tvUnlock.setText("解鎖");
tvUnlock.setText(R.string.unlock_mic);
tvUnlock.setBackgroundResource(R.drawable.bg_9168fa_6);
if (roomPhoto.getType() == 1) {
@@ -1092,7 +1092,7 @@ public class MessageView extends FrameLayout {
if (isMyself || hadUnlock(roomPhoto.getId())) {
ImageLoadUtilsV2.loadImage(ivPhoto, roomPhoto.getPhotoUrl());
tvUnlock.setText("已解鎖");
tvUnlock.setText(R.string.unlocked);
tvUnlock.setBackgroundResource(R.drawable.bg_9e9ea8_6);
} else {
ImageLoadUtils.loadImageWithBlur(mContext, roomPhoto.getPhotoUrl(), ivPhoto, 25, 4);

View File

@@ -8,6 +8,7 @@ import com.chwl.core.home.model.HomeModel
import com.chwl.core.im.custom.bean.RouterType
import com.chwl.core.room.bean.MeCenterInfo
import com.chwl.core.user.bean.DiamondGiveHistoryInfo
import com.chwl.library.utils.ResUtil
class MeViewModel : BaseViewModel() {
@@ -53,35 +54,35 @@ class MeViewModel : BaseViewModel() {
add(
MeCenterInfo(
icon = R.drawable.me_ic_menu_room,
centerName = "My Home",
centerName = ResUtil.getString(R.string.me_my_room),
skipType = RouterType.MY_ROOM
)
)
add(
MeCenterInfo(
icon = R.drawable.me_ic_menu_revenue,
centerName = "Revenue records",
centerName = ResUtil.getString(R.string.me_gain_recording),
skipType = RouterType.MY_REVENUE
)
)
add(
MeCenterInfo(
icon = R.drawable.me_ic_menu_collect,
centerName = "My Collection",
centerName = ResUtil.getString(R.string.my_collection),
skipType = RouterType.COLLECTION_ROOM
)
)
add(
MeCenterInfo(
icon = R.drawable.me_ic_menu_level,
centerName = "My level",
centerName = ResUtil.getString(R.string.menu_my_level),
skipType = RouterType.USER_LEVEL
)
)
add(
MeCenterInfo(
icon = R.drawable.me_ic_menu_setting,
centerName = "Set Up",
centerName = ResUtil.getString(R.string.me_setting),
skipType = RouterType.MY_SET
)
)

View File

@@ -6,6 +6,7 @@ import androidx.fragment.app.activityViewModels
import androidx.recyclerview.widget.LinearLayoutManager
import androidx.recyclerview.widget.RecyclerView
import com.chad.library.adapter.base.BaseQuickAdapter
import com.chwl.app.R
import com.chwl.app.application.IReportConstants
import com.chwl.app.application.ReportManager
import com.chwl.app.avroom.activity.AVRoomActivity
@@ -18,6 +19,7 @@ import com.chwl.app.ui.utils.RVDelegate
import com.chwl.core.home.bean.HomeRoomInfo
import com.chwl.core.home.event.RefreshHomeDataEvent
import com.chwl.core.room.event.RoomShieldEvent
import com.chwl.library.utils.ResUtil
import org.greenrobot.eventbus.EventBus
import org.greenrobot.eventbus.Subscribe
import org.greenrobot.eventbus.ThreadMode
@@ -69,7 +71,7 @@ class RecommendFragment : BaseViewBindingFragment<FragmentRecommendBinding>() {
rvDelegate = RVDelegate.Builder<HomeRoomInfo>()
.setAdapter(roomHotAdapter)
.setRecyclerView(binding.mRecyclerRoom)
.setEmptyView(EmptyViewHelper.createEmptyTextViewHeight(context, "暂无熱門推薦"))
.setEmptyView(EmptyViewHelper.createEmptyTextViewHeight(context, ResUtil.getString(R.string.hot_recommend_empty)))
.setLayoutManager(LinearLayoutManager(mContext, RecyclerView.VERTICAL, false))
.build()
homeViewModel.homeHotRoomLiveData.observe(this) {

View File

@@ -268,7 +268,8 @@ class StarFragment : BaseViewBindingFragment<StarFragmentBinding>(), MainTabCont
viewModel.sendGift(user.uid ?: 0)
}
if (SendGiftTipsDialog.isNeedTips()) {
val message = "确认赠送 ${gift.giftName} (${gift.goldPrice})\n${user.nick} 吗?"
var message = ResUtil.getString(R.string.star_send_gift_tips)
message = message.format(gift.giftName ?: "", gift.goldPrice.toString())
SendGiftTipsDialog(requireContext(), message) {
next.invoke()
}.show()
@@ -281,7 +282,7 @@ class StarFragment : BaseViewBindingFragment<StarFragmentBinding>(), MainTabCont
private fun showBalanceNotEnoughDialog() {
dialogManager.showOkCancelDialog(
"钻石余额不足",
ResUtil.getString(R.string.star_send_gift_balance),
ResUtil.getString(R.string.treasure_to_charge)
) {
ChargeActivity.start(context)

View File

@@ -132,7 +132,7 @@ class LoginCodeActivity : BaseViewBindingActivity<ActivityLoginCodeBinding>() {
override fun onError(e: Throwable) {
dialogManager.dismissDialog()
toast(e.message ?: "獲取驗證碼失敗")
toast(e.message ?: ResUtil.getString(R.string.get_code_failed))
LogUtils.e(e.message ?: "獲取驗證碼失敗")
}

View File

@@ -25,6 +25,7 @@ import androidx.recyclerview.widget.RecyclerView;
//import com.appsflyer.AFInAppEventParameterName;
//import com.appsflyer.AFInAppEventType;
//import com.appsflyer.AppsFlyerLib;
import com.chwl.library.utils.ResUtil;
import com.example.module_base.support.billing.IBillingService;
import com.example.module_base.support.billing.IProductDetails;
import com.example.module_base.support.billing.IPurchase;
@@ -287,7 +288,7 @@ public class ChargeActivity extends BaseMvpActivity<IChargeView, ChargePresenter
if (throwable instanceof FailReasonException) {
FailReasonException failReasonException = (FailReasonException) throwable;
if (failReasonException.getCode() == RECHARGE_LIMIT) {
getDialogManager().showOkDialog(failReasonException.getMessage(), "聯繫客服", true,
getDialogManager().showOkDialog(failReasonException.getMessage(), ResUtil.getString(R.string.contact_customer_service), true,
() -> jumpContact());
return;
}

View File

@@ -45,7 +45,7 @@ class SettingActivity : BaseViewBindingActivity<ActivitySettingBinding>(), View.
ILog {
override fun init() {
EventBus.getDefault().register(this)
initWhiteTitleBar(ResUtil.getString(R.string.ui_setting_settingactivity_01))
initWhiteTitleBar(ResUtil.getString(R.string.me_setting))
initView()
initListener()
}

View File

@@ -139,9 +139,9 @@ class SelectPayTypeDialog : BaseDialog<DialogSelectPayTypeBinding>() {
val states = arrayOf(intArrayOf(android.R.attr.state_enabled))
val colors = intArrayOf("#8A8CAB".toColorInt())
binding?.rbDiamond?.text = SpannableBuilder()
.append("钻石支付")
.append(ResUtil.getString(R.string.diamond_payment))
.append(
"${FormatUtils.formatBigInteger(walletInfo.diamondNum)}钻石",
"${FormatUtils.formatBigInteger(walletInfo.diamondNum)}${ResUtil.getString(R.string.gift_income_gold)}",
TextAppearanceSpan(
null,
0,

View File

@@ -82,7 +82,7 @@
android:gravity="center_vertical"
android:onClick="@{click}"
android:paddingEnd="@dimen/dp_6"
android:text="小时榜"
android:text="@string/hour_rank"
android:textColor="@color/white"
android:textSize="@dimen/dp_10"
android:visibility="gone" />

View File

@@ -52,7 +52,7 @@
android:drawablePadding="@dimen/dp_3"
android:gravity="center_vertical"
android:paddingEnd="@dimen/dp_6"
android:text="小时榜"
android:text="@string/hour_rank"
android:textColor="@color/white"
android:textSize="@dimen/dp_10"
app:layout_constraintStart_toStartOf="parent"

View File

@@ -15,8 +15,9 @@
<TextView
android:id="@+id/tv_name"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_marginTop="8dp"
android:textColor="@color/white_transparent_50"
android:textSize="@dimen/sp_10"

View File

@@ -41,7 +41,7 @@
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/dp_4"
android:includeFontPadding="false"
android:text="房间榜"
android:text="@string/room_rank"
android:textColor="@color/white"
android:textSize="@dimen/dp_10" />

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -22,19 +22,21 @@
<string name="button_apply">使用(%1$d)</string>
<string name="button_back">返回</string>
<string name="photo_grid_capture">拍一張</string>
<string name="empty_text">還沒有圖片或影片</string>
<string name="empty_text">還沒有圖片或視頻</string>
<string name="button_ok">我知道了</string>
<string name="error_over_count_default">您已經達到最大選擇數量</string>
<string name="error_over_count">最多只能選擇 %1$d 個文件</string>
<string name="error_under_quality">圖片質量太低</string>
<string name="error_over_quality">圖片質量太高</string>
<string name="error_file_type">不支的文件類型</string>
<string name="error_type_conflict">不能同時選擇圖片和影片</string>
<string name="error_no_video_activity">沒有支持影片預覽的應用程式</string>
<string name="error_file_type">不支的文件類型</string>
<string name="error_type_conflict">不能同時選擇圖片和視頻</string>
<string name="error_no_video_activity">沒有支持視頻預覽的應用</string>
<string name="error_over_original_size">"該照片大於 %1$d M無法上傳將取消勾選原圖"</string>
<string name="error_over_original_count">"有 %1$d 張照片大於 %2$d M\n無法上傳將取消勾選原圖"</string>
<string name="button_original">原圖</string>
<string name="button_sure_default"></string>
<string name="button_sure">定(%1$d)</string>
<string name="upload"></string>
<string name="camera_roll">机胶</string>
<string name="button_sure_default"></string>
<string name="button_sure">定(%1$d)</string>
<string name="upload"></string>
<string name="camera_roll">機膠</string>
</resources>

View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="tips_need_bind_bank_card_first">請先綁定銀行卡</string>
<string name="text_bank_card">銀行卡</string>
<string name="setting_text_bank_card">銀行卡充值管理</string>
<string name="text_add_bank_card">添加銀行卡</string>
<string name="text_unbind_bank_card">解除綁定</string>
<string name="text_default_bank_card">默認支付</string>
<string name="tips_bind_bank_card">設為默認支付後,\n選擇付款將默認使用該銀行卡\n確定設為默認支付嗎</string>
<string name="toast_set_default_bank_card_success">設置默認支付銀行卡成功</string>
<string name="toast_unbind_bank_card_success">解除綁定銀行卡成功</string>
<string name="title_add_bank_card_agreement">用戶服務協議及隱私政策</string>
<string name="text_add_bank_card_agreement">
尊敬的Hiyoo用戶\n\u3000\u3000為了更好地保障你的合法權益
讓你正常使用%s服務%s公司依照國家法律法規對支付賬戶進行實名製管理、
履行反洗錢職責並采取風險防控措施。你需要向%s公司以及合作公司匯聚支付提交身份信息、
聯系方式、交易信息。\n\u3000\u3000%s公司將嚴格依據國家法律法規收集、存儲、使用你的個人信息確保信息安全。
請你務必審慎閱讀並充分理解%s和%s\n\u3000\u3000若你同意接受前述協議請點擊「同意」並繼續註冊操作否則
請點擊「不同意」,中止註冊操作。
</string>
<string name="title_add_bank_card">添加銀行卡</string>
<string name="hint_bank_card_user_name">持卡人</string>
<string name="hint_bank_card_number">銀行卡號</string>
<string name="hint_bank_card_user_id">身份證號</string>
<string name="hint_bank_card_user_mobile">銀行預留手機號</string>
<string name="hint_bank_card_bind_sms_code">驗證碼</string>
<string name="text_bind_bank_card">綁定</string>
<string name="tips_bind_your_bank_card">請綁定實名認證本人銀行卡</string>
</resources>

View File

@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="tips_need_bind_bank_card_first">請先綁定銀行卡</string>
<string name="text_bank_card">銀行卡</string>
<string name="setting_text_bank_card">銀行卡充值管理</string>
<string name="text_add_bank_card">添加銀行卡</string>
<string name="text_unbind_bank_card">解除綁定</string>
<string name="text_default_bank_card">默認支付</string>
<string name="tips_bind_bank_card">設為默認支付後,\n選擇付款將默認使用該銀行卡\n確定設為默認支付嗎</string>
<string name="toast_set_default_bank_card_success">設置默認支付銀行卡成功</string>
<string name="toast_unbind_bank_card_success">解除綁定銀行卡成功</string>
<string name="title_add_bank_card_agreement">用戶服務協議及隱私政策</string>
<string name="text_add_bank_card_agreement">
尊敬的Hiyoo用戶\n\u3000\u3000為了更好地保障你的合法權益
讓你正常使用%s服務%s公司依照國家法律法規對支付賬戶進行實名製管理、
履行反洗錢職責並采取風險防控措施。你需要向%s公司以及合作公司匯聚支付提交身份信息、
聯系方式、交易信息。\n\u3000\u3000%s公司將嚴格依據國家法律法規收集、存儲、使用你的個人信息確保信息安全。
請你務必審慎閱讀並充分理解%s和%s\n\u3000\u3000若你同意接受前述協議請點擊「同意」並繼續註冊操作否則
請點擊「不同意」,中止註冊操作。
</string>
<string name="title_add_bank_card">添加銀行卡</string>
<string name="hint_bank_card_user_name">持卡人</string>
<string name="hint_bank_card_number">銀行卡號</string>
<string name="hint_bank_card_user_id">身份證號</string>
<string name="hint_bank_card_user_mobile">銀行預留手機號</string>
<string name="hint_bank_card_bind_sms_code">驗證碼</string>
<string name="text_bind_bank_card">綁定</string>
<string name="tips_bind_your_bank_card">請綁定實名認證本人銀行卡</string>
</resources>

View File

@@ -1,29 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="tips_need_bind_bank_card_first">請先綁定銀行卡</string>
<string name="text_bank_card">銀行卡</string>
<string name="setting_text_bank_card">銀行卡充值管理</string>
<string name="text_add_bank_card">添加銀行卡</string>
<string name="text_unbind_bank_card">解除綁定</string>
<string name="text_default_bank_card">默認支付</string>
<string name="tips_bind_bank_card">設為默認支付後,\n選擇付款將默認使用該銀行卡\n確定設為默認支付嗎</string>
<string name="toast_set_default_bank_card_success">設置默認支付銀行卡成功</string>
<string name="toast_unbind_bank_card_success">解除綁定銀行卡成功</string>
<string name="title_add_bank_card_agreement">用戶服務協議及隱私政策</string>
<string name="tips_need_bind_bank_card_first">Please bind your bank card first</string>
<string name="text_bank_card">Bank Card</string>
<string name="setting_text_bank_card">Bank Card Recharge Management</string>
<string name="text_add_bank_card">Add Bank Card</string>
<string name="text_unbind_bank_card">Unbind Card</string>
<string name="text_default_bank_card">Default Payment</string>
<string name="tips_bind_bank_card">After setting as default payment, \nselecting payment will default to using this bank card, \nare you sure to set as default payment?</string>
<string name="toast_set_default_bank_card_success">Successfully set default payment bank card</string>
<string name="toast_unbind_bank_card_success">Successfully unbound bank card</string>
<string name="title_add_bank_card_agreement">User Service Agreement and Privacy Policy</string>
<string name="text_add_bank_card_agreement">
尊敬的Hiyoo用戶\n\u3000\u3000為了更好地保障你的合法權益
讓你正常使用%s服務%s公司依照國家法律法規對支付賬戶進行實名製管理、
履行反洗錢職責並采取風險防控措施。你需要向%s公司以及合作公司匯聚支付提交身份信息、
聯系方式、交易信息。\n\u3000\u3000%s公司將嚴格依據國家法律法規收集、存儲、使用你的個人信息確保信息安全。
請你務必審慎閱讀並充分理解%s和%s\n\u3000\u3000若你同意接受前述協議請點擊「同意」並繼續註冊操作否則
請點擊「不同意」,中止註冊操作。
Dear Hiyoo User:\n\u3000\u3000In order to better protect your legitimate rights and interests,
and allow you to use %s services normally, %s company complies with national laws and regulations to implement real-name system management for payment accounts,
fulfill anti-money laundering responsibilities, and take risk prevention measures. You need to submit identity information, contact information, and transaction information to %s company and cooperative companies (Converge Pay).\n\u3000\u3000%s company will strictly collect, store, and use your personal information in accordance with national laws and regulations to ensure information security.
Please read and fully understand %s and %s carefully.\n\u3000\u3000If you agree to accept the above agreement, please click "Agree" and continue the registration process. Otherwise,
please click "Disagree" to terminate the registration process.
</string>
<string name="title_add_bank_card">添加銀行卡</string>
<string name="hint_bank_card_user_name">持卡人</string>
<string name="hint_bank_card_number">銀行卡號</string>
<string name="hint_bank_card_user_id">身份證號</string>
<string name="hint_bank_card_user_mobile">銀行預留手機號</string>
<string name="hint_bank_card_bind_sms_code">驗證碼</string>
<string name="text_bind_bank_card">綁定</string>
<string name="tips_bind_your_bank_card">請綁定實名認證本人銀行卡</string>
<string name="title_add_bank_card">Add Bank Card</string>
<string name="hint_bank_card_user_name">Cardholder</string>
<string name="hint_bank_card_number">Bank Card Number</string>
<string name="hint_bank_card_user_id">ID Number</string>
<string name="hint_bank_card_user_mobile">Mobile Number Associated with Bank</string>
<string name="hint_bank_card_bind_sms_code">Verification Code</string>
<string name="text_bind_bank_card">Bind</string>
<string name="tips_bind_your_bank_card">Please bind your own bank card with real-name authentication</string>
</resources>

View File

@@ -425,7 +425,7 @@ public class ModuleHallActivity extends BaseMvpActivity<IModuleHallView, ModuleH
if (hallInfo != null) {
RoomIncomeActivity.start(ModuleHallActivity.this, hallId);
} else {
toast("加载数据中,请稍后...");
toast(R.string.loading_data_please_wait);
}
break;
case R.id.tv_member_income:

View File

@@ -13,6 +13,7 @@ import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentStatePagerAdapter;
import androidx.viewpager.widget.ViewPager;
import com.chwl.library.utils.ResUtil;
import com.jzxiang.pickerview.data.Type;
import com.netease.nim.uikit.StatusBarUtil;
import com.chwl.app.R;
@@ -85,7 +86,7 @@ public class RoomIncomeActivity extends BaseMvpActivity<IIncomeStatisticsView, R
initFindView();
initIndicator();
long id = getIntent().getLongExtra(HallIncomeFragment.FLAG_HALL_ID, 0);
initWhiteTitleBar("收入統計");
initWhiteTitleBar(ResUtil.getString(R.string.income_statistics));
HallIncomeFragment fragment = HallIncomeFragment.getInstance(id);
fragment.setmDayIncomeFragmentListener(this);

View File

@@ -13,6 +13,7 @@ import com.chwl.app.module_hall.income.view.IIncomeView;
import com.chwl.core.module_hall.income.bean.IncomeInfo;
import com.chwl.core.module_hall.income.bean.IncomeTotalInfo;
import com.chwl.library.base.factory.CreatePresenter;
import com.chwl.library.utils.ResUtil;
import java.util.List;
@@ -118,7 +119,7 @@ public class DayIncomeFragment extends BaseMvpFragment<IIncomeView, IncomePresen
mIncomeAdapter.setNewData(incomeTotalInfo.getVos());
mIncomeAdapter.notifyDataSetChanged();
} else {
showNoData("暫無數據~");
showNoData(ResUtil.getString(R.string.avroom_presenter_roomnewbiepresenter_01));
}
}

View File

@@ -14,6 +14,7 @@ import com.chwl.core.module_hall.income.bean.HallIncomeInfo;
import com.chwl.core.module_hall.income.bean.HallTotalIncomeInfo;
import com.chwl.library.base.factory.CreatePresenter;
import com.chwl.library.utils.ListUtils;
import com.chwl.library.utils.ResUtil;
/**
* 日收入统计
@@ -81,7 +82,7 @@ public class HallIncomeFragment extends BaseMvpFragment<IHallIncomeView, HallInc
mIncomeAdapter.setNewData(hallTotalIncomeInfo.getIncome());
} else {
mIncomeAdapter.setNewData(null);
showNoData("暂无数据");
showNoData(ResUtil.getString(R.string.avroom_presenter_roomnewbiepresenter_01));
}
}

View File

@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="lu_label_group_chat">廳群聊</string>
<string name="lu_label_group_create">創建群聊</string>
<string name="all_income">總收入</string>
<string name="all_income_diamond">總收入(鉆石)</string>
<string name="lu_upload_group_avatar">上傳群頭像</string>
<string name="lu_edit_group_name">輸入群名稱</string>
<string name="lu_select_group_member">選擇群成員</string>
<string name="lu_invite_group_member">添加群成員</string>
<string name="lu_team_avatar">群頭像</string>
<string name="lu_text_message_mute_notify">消息免打擾</string>
<string name="lu_team_info">群資料</string>
<string name="lu_team_name">群名稱</string>
<string name="lu_team_notice">群公告</string>
<string name="lu_limit_edit_num">%d字內</string>
<string name="lu_apply_hall">申請入廳</string>
<string name="lu_apply_team">加入群</string>
<string name="lu_reject">拒絕</string>
<string name="lu_agree">同意</string>
<string name="lu_has_select_num">已選擇人數 : %d人</string>
<string name="lu_hteam_num">群成員人數 : %d人</string>
<string name="lu_hteam_has_mute_num">已禁言人數 : %d人</string>
<string name="lu_hteam_manager_num">群管理人數 : %d人</string>
<string name="join_organization_tips">確認加入公會</string>
<string name="join_organization_ok"></string>
<string name="join_organization_no"></string>
</resources>

View File

@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="lu_label_group_chat">廳群聊</string>
<string name="lu_label_group_create">創建群聊</string>
<string name="all_income">總收入</string>
<string name="all_income_diamond">總收入(鉆石)</string>
<string name="lu_upload_group_avatar">上傳群頭像</string>
<string name="lu_edit_group_name">輸入群名稱</string>
<string name="lu_select_group_member">選擇群成員</string>
<string name="lu_invite_group_member">添加群成員</string>
<string name="lu_team_avatar">群頭像</string>
<string name="lu_text_message_mute_notify">消息免打擾</string>
<string name="lu_team_info">群資料</string>
<string name="lu_team_name">群名稱</string>
<string name="lu_team_notice">群公告</string>
<string name="lu_limit_edit_num">%d字內</string>
<string name="lu_apply_hall">申請入廳</string>
<string name="lu_apply_team">加入群</string>
<string name="lu_reject">拒絕</string>
<string name="lu_agree">同意</string>
<string name="lu_has_select_num">已選擇人數 : %d人</string>
<string name="lu_hteam_num">群成員人數 : %d人</string>
<string name="lu_hteam_has_mute_num">已禁言人數 : %d人</string>
<string name="lu_hteam_manager_num">群管理人數 : %d人</string>
<string name="join_organization_tips">確認加入公會</string>
<string name="join_organization_ok"></string>
<string name="join_organization_no"></string>
</resources>

View File

@@ -1,33 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="lu_label_group_chat">廳群聊</string>
<string name="lu_label_group_create">創建群聊</string>
<string name="all_income">總收入</string>
<string name="all_income_diamond">總收入(鉆石)</string>
<string name="lu_upload_group_avatar">上傳群頭像</string>
<string name="lu_edit_group_name">輸入群名稱</string>
<string name="lu_select_group_member">選擇群成員</string>
<string name="lu_invite_group_member">添加群成員</string>
<string name="lu_team_avatar">群頭像</string>
<string name="lu_text_message_mute_notify">消息免打擾</string>
<string name="lu_team_info">群資料</string>
<string name="lu_team_name">群名稱</string>
<string name="lu_team_notice">群公告</string>
<string name="lu_limit_edit_num">%d字內</string>
<string name="lu_apply_hall">申請入廳</string>
<string name="lu_apply_team">加入群</string>
<string name="lu_label_group_chat">Hall Group Chat</string>
<string name="lu_label_group_create">Create Group Chat</string>
<string name="all_income">Total Income</string>
<string name="all_income_diamond">Total Income (Diamonds)</string>
<string name="lu_reject">拒絕</string>
<string name="lu_agree">同意</string>
<string name="lu_upload_group_avatar">Upload Group Avatar</string>
<string name="lu_edit_group_name">Enter Group Name</string>
<string name="lu_select_group_member">Select Group Members</string>
<string name="lu_invite_group_member">Add Group Members</string>
<string name="lu_team_avatar">Group Avatar</string>
<string name="lu_text_message_mute_notify">Mute Notifications</string>
<string name="lu_team_info">Group Information</string>
<string name="lu_team_name">Group Name</string>
<string name="lu_team_notice">Group Announcement</string>
<string name="lu_limit_edit_num">%d Characters Maximum</string>
<string name="lu_has_select_num">已選擇人數 : %d人</string>
<string name="lu_hteam_num">群成員人數 : %d人</string>
<string name="lu_hteam_has_mute_num">已禁言人數 : %d人</string>
<string name="lu_hteam_manager_num">群管理人數 : %d人</string>
<string name="lu_apply_hall">Apply to Enter Hall</string>
<string name="lu_apply_team">Join Group</string>
<string name="join_organization_tips">確認加入公會</string>
<string name="join_organization_ok"></string>
<string name="join_organization_no"></string>
<string name="lu_reject">Reject</string>
<string name="lu_agree">Agree</string>
<string name="lu_has_select_num">Selected: %d People</string>
<string name="lu_hteam_num">Group Members: %d People</string>
<string name="lu_hteam_has_mute_num">Muted Members: %d People</string>
<string name="lu_hteam_manager_num">Group Managers: %d People</string>
<string name="join_organization_tips">Confirm to join organization</string>
<string name="join_organization_ok">Yes</string>
<string name="join_organization_no">No</string>
</resources>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="kick_mic_by_s_admin">系統檢測涉嫌違規,你被抱下麥</string>
<string name="add_to_room_black_list_by_s_admin">系統檢測涉嫌違規,你已被加入黑名單</string>
<string name="kick_out_room_by_s_admin"> 系統檢測涉嫌違規,你被請出房間</string>
<string name="sa_label_room_super_a_manager">官方管理</string>
<string name="sa_item_hide_room">隱藏房間</string>
</resources>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="kick_mic_by_s_admin">系統檢測涉嫌違規,你被抱下麥</string>
<string name="add_to_room_black_list_by_s_admin">系統檢測涉嫌違規,你已被加入黑名單</string>
<string name="kick_out_room_by_s_admin"> 系統檢測涉嫌違規,你被請出房間</string>
<string name="sa_label_room_super_a_manager">官方管理</string>
<string name="sa_item_hide_room">隱藏房間</string>
</resources>

View File

@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="kick_mic_by_s_admin">系統檢測涉嫌違規,你被抱下麥</string>
<string name="add_to_room_black_list_by_s_admin">系統檢測涉嫌違規,你已被加入黑名單</string>
<string name="kick_out_room_by_s_admin"> 系統檢測涉嫌違規,你被請出房間</string>
<string name="sa_label_room_super_a_manager">官方管理</string>
<string name="sa_item_hide_room">隱藏房間</string>
<string name="kick_mic_by_s_admin">System detected suspected violation, you have been removed from the mic</string>
<string name="add_to_room_black_list_by_s_admin">System detected suspected violation, you have been added to the blacklist</string>
<string name="kick_out_room_by_s_admin">System detected suspected violation, you have been kicked out of the room</string>
<string name="sa_label_room_super_a_manager">Official Management</string>
<string name="sa_item_hide_room">Hide Room</string>
</resources>

View File

@@ -0,0 +1,672 @@
<resources>
<string name="app_name">XChat_Android_Core</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_01">安全提醒:請勿傳播任何違法、違規、低俗、暴力等不良信息,否則將麵臨賬號封禁處罰。</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_02">來Hiyoo邂逅你的專屬聲音</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_03">來Hiyoo開黑交友玩遊戲</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_04">加入家族,和你興趣相投的小夥伴一起玩耍吧~</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_05">hi,我想邀請您加入我的Hiyoo家族:</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_06">加入家族,和你興趣相投的小夥伴一起玩耍吧~</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_07">hi,我想邀請您加入我的Hiyoo群聊:</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_08">可點擊房間話題查看本房間公告</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_09">相親玩法已開啟,請點擊主持人麥位選擇主持人</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_010">新一輪的相親已開啟</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_011">已進入心動選人環節</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_012">公布心動對象</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_013">版本過舊,請下載最新版本哦</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_014">網絡錯誤</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_015">未知錯誤</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_016">用戶信息為空,請重新登錄</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_017">僅支持查看3個月內記錄</string>
<string name="xchat_android_core_channel_channelmodel_01">不是新用戶。</string>
<string name="xchat_android_core_channel_channelmodel_02">請求成功-></string>
<string name="xchat_android_core_channel_channelmodel_03">請求成功</string>
<string name="xchat_android_core_channel_channelmodel_04">請求成功-></string>
<string name="xchat_android_core_channel_channelmodel_05">請求異常 code:</string>
<string name="xchat_android_core_helper_imhelperutils_01">[圖片]</string>
<string name="xchat_android_core_helper_imhelperutils_02">[視頻]</string>
<string name="xchat_android_core_helper_imhelperutils_03">[語音消息]</string>
<string name="xchat_android_core_helper_imhelperutils_04">[位置]</string>
<string name="xchat_android_core_helper_imhelperutils_05">[文件]</string>
<string name="xchat_android_core_helper_imhelperutils_06">[通知提醒]</string>
<string name="xchat_android_core_helper_imhelperutils_07">你收到一條消息...</string>
<string name="xchat_android_core_helper_imhelperutils_08">您關註的TA上線啦快去圍觀吧~~~</string>
<string name="xchat_android_core_helper_imhelperutils_09">[禮物]</string>
<string name="xchat_android_core_helper_imhelperutils_010">[遊戲邀請]</string>
<string name="xchat_android_core_helper_imhelperutils_011">[升級信息]</string>
<string name="xchat_android_core_helper_imhelperutils_012">您收到一個</string>
<string name="xchat_android_core_helper_imhelperutils_013">紅包哦!</string>
<string name="xchat_android_core_helper_imhelperutils_014">恭喜您,獲得抽獎機會</string>
<string name="xchat_android_core_helper_imhelperutils_015">提示:</string>
<string name="xchat_android_core_helper_imhelperutils_016">[分享房間]</string>
<string name="xchat_android_core_helper_imhelperutils_017">[分享家族]</string>
<string name="xchat_android_core_helper_imhelperutils_018">[分享群組]</string>
<string name="xchat_android_core_helper_imhelperutils_019">[您收到一條分享消息]</string>
<string name="xchat_android_core_helper_imhelperutils_020">[您收到了一個群紅包]</string>
<string name="xchat_android_core_helper_imhelperutils_021">領取了你的紅包]</string>
<string name="xchat_android_core_helper_imhelperutils_022">[你領取了</string>
<string name="xchat_android_core_helper_imhelperutils_023">的紅包]</string>
<string name="xchat_android_core_helper_imhelperutils_024">領取了</string>
<string name="xchat_android_core_helper_imhelperutils_025">的紅包]</string>
<string name="xchat_android_core_helper_imhelperutils_026">[您收到一條系統消息]</string>
<string name="xchat_android_core_helper_imhelperutils_027">[您收到一條公聊大廳相關消息]</string>
<string name="xchat_android_core_helper_imhelperutils_028">[您收到一條公會消息]</string>
<string name="xchat_android_core_helper_imhelperutils_029">[簽到提醒]</string>
<string name="xchat_android_core_helper_imhelperutils_030">[簽到瓜分百萬]</string>
<string name="xchat_android_core_helper_imhelperutils_031">[聲音瓶子審核消息]</string>
<string name="xchat_android_core_helper_imhelperutils_032">[分享一條動態]</string>
<string name="xchat_android_core_helper_imhelperutils_033">[您收到一個全服紅包]</string>
<string name="xchat_android_core_helper_imhelperutils_034">[風險提示]</string>
<string name="xchat_android_core_helper_imhelperutils_035">[語音]</string>
<string name="xchat_android_core_helper_imhelperutils_036">你收到一條消息</string>
<string name="home_bean_collectionroominfo_01">輔導的房間</string>
<string name="home_bean_collectionroominfo_02">我是一只小萌新輔導輔導輔導輔導的房間</string>
<string name="home_bean_tabinfo_01">新秀</string>
<string name="home_bean_tabinfo_02">交友</string>
<string name="home_bean_tabinfo_03">娛樂</string>
<string name="home_bean_tabinfo_04">電臺</string>
<string name="home_bean_tabinfo_05">星球</string>
<string name="home_bean_tabinfo_06">音樂</string>
<string name="home_model_homemodel_01">反饋成功</string>
<string name="manager_agora_engineeventhandler_01">發生未知錯誤,請退出房間重新進入</string>
<string name="xchat_android_core_manager_imneteasemanager_01">[房間公告]</string>
<string name="xchat_android_core_manager_imneteasemanager_02">獲取用戶的信息字段為空</string>
<string name="xchat_android_core_manager_imneteasemanager_03">不在房間內或房間信息為空</string>
<string name="xchat_android_core_manager_imneteasemanager_04">收到踢人信息</string>
<string name="xchat_android_core_manager_imneteasemanager_05">消息中可能含有違規信息,請停止發送類似信息!</string>
<string name="xchat_android_core_manager_imneteasemanager_06">連接中...</string>
<string name="xchat_android_core_manager_imneteasemanager_07">聊天室狀態異常!</string>
<string name="xchat_android_core_manager_imneteasemanager_08">聊天室在線狀態變為UNLOGIN</string>
<string name="xchat_android_core_manager_imneteasemanager_09">登錄中...</string>
<string name="xchat_android_core_manager_imneteasemanager_010">雲信聊天室已登錄成功</string>
<string name="xchat_android_core_manager_imneteasemanager_011">重連聊天室事</string>
<string name="xchat_android_core_manager_imneteasemanager_012">需要重新登錄(被踢或驗證信息錯誤)...</string>
<string name="xchat_android_core_manager_imneteasemanager_013">網絡斷開...</string>
<string name="xchat_android_core_manager_imneteasemanager_014">斷網事件</string>
<string name="xchat_android_core_manager_imneteasemanager_015">自定義消息:</string>
<string name="xchat_android_core_manager_imneteasemanager_016">禮物特效</string>
<string name="xchat_android_core_manager_imneteasemanager_017">禮物特效</string>
<string name="xchat_android_core_manager_imneteasemanager_018">PK 創建消息-> msgUuid</string>
<string name="xchat_android_core_manager_imneteasemanager_019">接受到的時間:</string>
<string name="xchat_android_core_manager_imneteasemanager_020">PK 創建消息-> attr:</string>
<string name="xchat_android_core_manager_imneteasemanager_021">PK 開始消息-> msgUuid</string>
<string name="xchat_android_core_manager_imneteasemanager_022">接受到的時間:</string>
<string name="xchat_android_core_manager_imneteasemanager_023">PK 開始消息-> attr:</string>
<string name="xchat_android_core_manager_imneteasemanager_024">PK 結果消息-> msgUuid</string>
<string name="xchat_android_core_manager_imneteasemanager_025">接受到的時間:</string>
<string name="xchat_android_core_manager_imneteasemanager_026">PK 結果消息-> attr:</string>
<string name="xchat_android_core_manager_imneteasemanager_027">暴走倒計時房間消息出錯了...</string>
<string name="xchat_android_core_manager_imneteasemanager_028">暴走倒計時:</string>
<string name="xchat_android_core_manager_imneteasemanager_029">您已隱身進入房間</string>
<string name="xchat_android_core_manager_imneteasemanager_030">您已隱身進入房間</string>
<string name="manager_trtc_trtcengineadapter_01">進入房間失敗</string>
<string name="manager_trtc_trtcengineadapter_02">進房參數為空,請檢查 enterRoom:appScene: 接口調用是否傳入有效的 param</string>
<string name="manager_trtc_trtcengineadapter_03">進房參數 sdkAppId 錯誤</string>
<string name="manager_trtc_trtcengineadapter_04">進房參數 roomId 錯誤</string>
<string name="manager_trtc_trtcengineadapter_05">進房參數 userID 不正確</string>
<string name="manager_trtc_trtcengineadapter_06">進房參數 userSig 不正確</string>
<string name="manager_trtc_trtcengineadapter_07">請求進房超時,請檢查網絡</string>
<string name="manager_trtc_trtcengineadapter_08">服務不可用。請檢查套餐包剩餘分鐘數是否大於0騰訊雲賬號是否欠費</string>
<string name="manager_trtc_trtcengineadapter_09">請求退房超時</string>
<string name="manager_trtc_trtcengineadapter_010">打開攝像頭失敗</string>
<string name="manager_trtc_trtcengineadapter_011">攝像頭設備未授權</string>
<string name="manager_trtc_trtcengineadapter_012">攝像頭參數設置出錯</string>
<string name="manager_trtc_trtcengineadapter_013">攝像頭正在被占用中</string>
<string name="manager_trtc_trtcengineadapter_014">打開麥克風失敗</string>
<string name="manager_trtc_trtcengineadapter_015">麥克風設備未授權</string>
<string name="manager_trtc_trtcengineadapter_016">麥克風設置參數失敗</string>
<string name="manager_trtc_trtcengineadapter_017">麥克風正在被占用中</string>
<string name="manager_trtc_trtcengineadapter_018">停止麥克風失敗</string>
<string name="manager_trtc_trtcengineadapter_019">打開揚聲器失敗</string>
<string name="manager_trtc_trtcengineadapter_020">揚聲器設置參數失敗</string>
<string name="manager_trtc_trtcengineadapter_021">停止揚聲器失敗</string>
<string name="manager_trtc_trtcengineadapter_022">開始錄屏失敗</string>
<string name="manager_trtc_trtcengineadapter_023">錄屏失敗</string>
<string name="manager_trtc_trtcengineadapter_024">沒有權限上行輔路</string>
<string name="manager_trtc_trtcengineadapter_025">其他用戶正在上行輔路</string>
<string name="manager_trtc_trtcengineadapter_026">視頻幀編碼失敗</string>
<string name="manager_trtc_trtcengineadapter_027">不支持的視頻分辨率</string>
<string name="manager_trtc_trtcengineadapter_028">音頻幀編碼失敗</string>
<string name="manager_trtc_trtcengineadapter_029">不支持的音頻采樣率</string>
<string name="manager_trtc_trtcengineadapter_030">設置的 pixel format 不支持</string>
<string name="manager_trtc_trtcengineadapter_031">設置的 buffer type 不支持</string>
<string name="manager_trtc_trtcengineadapter_032">旁路轉推請求超時</string>
<string name="manager_trtc_trtcengineadapter_033">雲端混流請求超時</string>
<string name="manager_trtc_trtcengineadapter_034">雲端混流回包異常</string>
<string name="manager_trtc_trtcengineadapter_035">旁路轉推回包異常</string>
<string name="manager_trtc_trtcengineadapter_036">開始向騰訊雲的直播 CDN 推流信令超時</string>
<string name="manager_trtc_trtcengineadapter_037">開始向騰訊雲的直播 CDN 推流信令異常</string>
<string name="manager_trtc_trtcengineadapter_038">停止向騰訊雲的直播 CDN 推流信令超時</string>
<string name="manager_trtc_trtcengineadapter_039">停止向騰訊雲的直播 CDN 推流信令異常</string>
<string name="manager_trtc_trtcengineadapter_040">請求連麥超時</string>
<string name="manager_trtc_trtcengineadapter_041">請求退出連麥超時</string>
<string name="manager_trtc_trtcengineadapter_042">無效參數</string>
<string name="manager_trtc_trtcengineadapter_043">當前是觀眾角色,不能請求或斷開跨房連麥,需要先 switchRole() 到主播</string>
<string name="manager_trtc_trtcengineadapter_044">不支持跨房間連麥</string>
<string name="manager_trtc_trtcengineadapter_045">達到跨房間連麥上限</string>
<string name="manager_trtc_trtcengineadapter_046">跨房間連麥重試次數耗盡</string>
<string name="manager_trtc_trtcengineadapter_047">跨房間連麥請求超時</string>
<string name="manager_trtc_trtcengineadapter_048">跨房間連麥請求格式錯誤</string>
<string name="manager_trtc_trtcengineadapter_049">跨房間連麥無簽名</string>
<string name="manager_trtc_trtcengineadapter_050">跨房間連麥簽名解密失敗</string>
<string name="manager_trtc_trtcengineadapter_051">未找到跨房間連麥簽名解密密鑰</string>
<string name="manager_trtc_trtcengineadapter_052">跨房間連麥簽名解析錯誤</string>
<string name="manager_trtc_trtcengineadapter_053">跨房間連麥簽名時間戳錯誤</string>
<string name="manager_trtc_trtcengineadapter_054">跨房間連麥簽名不匹配</string>
<string name="manager_trtc_trtcengineadapter_055">本房間無連麥</string>
<string name="manager_trtc_trtcengineadapter_056">本用戶未發起連麥</string>
<string name="manager_trtc_trtcengineadapter_057">跨房間連麥失敗</string>
<string name="manager_trtc_trtcengineadapter_058">取消跨房間連麥失敗</string>
<string name="manager_trtc_trtcengineadapter_059">被連麥房間不存在</string>
<string name="manager_trtc_trtcengineadapter_060">被連麥房間達到連麥上限</string>
<string name="manager_trtc_trtcengineadapter_061">被連麥用戶不存在</string>
<string name="manager_trtc_trtcengineadapter_062">被連麥用戶已被刪除</string>
<string name="manager_trtc_trtcengineadapter_063">被連麥用戶達到資源上限</string>
<string name="manager_trtc_trtcengineadapter_064">連麥請求序號錯亂</string>
<string name="manager_trtc_trtcengineeventhandler_01">Trtc回調onError errCode=</string>
<string name="manager_trtc_trtcengineeventhandler_02">發生未知錯誤,請退出房間重新進入</string>
<string name="xchat_android_core_retry_imretrymanager_01">房間禮物消息發送失敗, error:</string>
<string name="xchat_android_core_retry_imretrymanager_02">房間禮物消息重發失敗, error:</string>
<string name="xchat_android_core_retry_imretrymanager_03">房間禮物消息重發成功-區分重連次數:</string>
<string name="xchat_android_core_auth_authmodel_01">自動登錄成功</string>
<string name="xchat_android_core_auth_authmodel_02">登錄成功!</string>
<string name="xchat_android_core_auth_authmodel_03">未安裝facebook</string>
<string name="xchat_android_core_auth_authmodel_04">登錄出錯</string>
<string name="xchat_android_core_auth_authmodel_05">登錄取消</string>
<string name="xchat_android_core_auth_authmodel_06">未安裝Line</string>
<string name="xchat_android_core_auth_authmodel_07">登錄出錯</string>
<string name="xchat_android_core_auth_authmodel_08">取消登錄</string>
<string name="xchat_android_core_auth_authmodel_09">未安裝gmail</string>
<string name="xchat_android_core_auth_authmodel_010">登錄出錯</string>
<string name="xchat_android_core_auth_authmodel_011">取消登錄</string>
<string name="xchat_android_core_auth_authmodel_012">登錄成功!</string>
<string name="xchat_android_core_auth_authmodel_013">重置密碼成功</string>
<string name="xchat_android_core_auth_authmodel_014">獲取不到當前用戶UID</string>
<string name="xchat_android_core_auth_authmodel_015">獲取手機綁定信息成功</string>
<string name="xchat_android_core_auth_authmodel_016">獲取不到當前用戶UID</string>
<string name="xchat_android_core_auth_authmodel_017">綁定手機成功</string>
<string name="xchat_android_core_auth_authmodel_018">註冊成功</string>
<string name="xchat_android_core_auth_authmodel_019">執行logout-cleanLogInfo</string>
<string name="xchat_android_core_auth_authmodel_020">發生未知異常</string>
<string name="xchat_android_core_auth_authmodel_021">沒有ticket信息</string>
<string name="xchat_android_core_auth_authmodel_022">修改登錄密碼成功</string>
<string name="xchat_android_core_auth_authmodel_023">沒有uid</string>
<string name="xchat_android_core_auth_authmodel_024">沒有ticket信息</string>
<string name="xchat_android_core_auth_authmodel_025">設置登錄密碼成功</string>
<string name="xchat_android_core_auth_authmodel_026">被服務器禁止登錄</string>
<string name="xchat_android_core_auth_authmodel_027">用戶名或密碼錯誤</string>
<string name="xchat_android_core_auth_authmodel_028">執行im狀態-cleanLogInfo</string>
<string name="xchat_android_core_auth_authmodel_029">沒有賬戶信息</string>
<string name="xchat_android_core_auth_authmodel_030">執行imLogin方法</string>
<string name="xchat_android_core_auth_authmodel_031">登錄信息為空</string>
<string name="xchat_android_core_auth_authmodel_032">IM登錄成功</string>
<string name="xchat_android_core_auth_authmodel_033">IM登錄成功</string>
<string name="xchat_android_core_auth_authmodel_034">失敗錯誤碼:</string>
<string name="xchat_android_core_auth_authmodel_035">網絡異常,請切換網絡后重試:</string>
<string name="xchat_android_core_auth_authmodel_036">IM登錄失敗異常信息</string>
<string name="auth_exception_oldmemberexception_01">不存在對應賬號</string>
<string name="xchat_android_core_base_basemodel_01">未知錯誤!</string>
<string name="xchat_android_core_base_basemodel_02">網絡錯誤</string>
<string name="xchat_android_core_base_basemodel_03">請求超時</string>
<string name="bean_response_beanresult_01">網絡異常,請檢查你的網絡再試!</string>
<string name="bean_response_responsedata_01">用戶不存在或密碼錯誤</string>
<string name="bean_response_responsedata_02">用戶不存在或密碼錯誤</string>
<string name="bean_response_responsedata_03">用戶不存在或密碼錯誤</string>
<string name="bean_response_responsedata_04">用戶已被凍結</string>
<string name="bean_response_responsedata_05">驗證碼錯誤</string>
<string name="bean_response_responsedata_06">手機號不可用</string>
<string name="bean_response_responsedata_07">重置密碼無效</string>
<string name="bean_response_responsedata_08">昵稱不合法</string>
<string name="bean_response_responsedata_09">手機號碼已經被註冊</string>
<string name="bean_response_responsedata_010">登錄憑證失效,請重新登錄</string>
<string name="bean_response_responsedata_011">登錄憑證失效,請重新登錄</string>
<string name="bean_response_responsedata_012">登錄憑證失效,請重新登錄</string>
<string name="bean_response_responsedata_013">登錄憑證失效,請重新登錄</string>
<string name="bean_response_responsedata_014">網絡錯誤</string>
<string name="bean_response_serviceresult_01">服務器正在維護</string>
<string name="bean_response_serviceresult_02">鉆石數量不夠</string>
<string name="bean_response_serviceresult_03">短信驗證碼錯誤</string>
<string name="bean_response_serviceresult_04">該用戶不存在</string>
<string name="bean_response_serviceresult_05">房間正在運行中...</string>
<string name="bean_response_serviceresult_06">當前被競拍者正在被競拍中,還未結束</string>
<string name="bean_response_serviceresult_07">競拍價格小於當前最高價</string>
<string name="bean_response_serviceresult_08">訂單不存在</string>
<string name="bean_response_serviceresult_09">手機格式不正確</string>
<string name="bean_response_serviceresult_010">網絡異常</string>
<string name="bean_response_serviceresult_011">未知錯誤</string>
<string name="bean_response_serviceresult_012">服務器正在維護</string>
<string name="bean_response_serviceresult_013">鉆石數量不夠</string>
<string name="bean_response_serviceresult_014">短信驗證碼錯誤</string>
<string name="bean_response_serviceresult_015">服務不可用</string>
<string name="bean_response_serviceresult_016">服務端異常</string>
<string name="bean_response_serviceresult_017">未知錯誤</string>
<string name="bean_response_serviceresult_018">服務繁忙</string>
<string name="bean_response_serviceresult_019">該用戶不存在</string>
<string name="bean_response_serviceresult_020">房間正在運行中...</string>
<string name="bean_response_serviceresult_021">當前被競拍者正在被競拍中,還未結束</string>
<string name="bean_response_serviceresult_022">競拍價格小於當前最高價</string>
<string name="bean_response_serviceresult_023">訂單不存在</string>
<string name="bean_response_serviceresult_024">發送短信出錯</string>
<string name="bean_response_serviceresult_025">手機格式不正確</string>
<string name="bean_response_serviceresult_026">每周只能提現2次</string>
<string name="xchat_android_core_bean_roomnewbiemessageinfo_01">談戀愛太麻煩了,以後就麻煩你了</string>
<string name="xchat_android_core_bean_roomnewbiemessageinfo_02">我是為你而來,不在乎穿越綿綿山脈</string>
<string name="xchat_android_core_bean_roomnewbiemessageinfo_03">我想你了,是那種要見一面緊緊抱住的那種</string>
<string name="xchat_android_core_bean_roomnewbiemessageinfo_04">溫柔是寶藏,你也是</string>
<string name="xchat_android_core_bean_roomnewbiemessageinfo_05">我喜歡在你的世界亂逛,丟了也不怕</string>
<string name="bills_bean_incomeinfo_01">測試</string>
<string name="decoration_backgroud_backgroundmodel_01">購買成功.</string>
<string name="decoration_backgroud_backgroundmodel_02">贈送成功.</string>
<string name="decoration_car_carmodel_01">沒有Uid</string>
<string name="decoration_car_carmodel_02">購買座駕成功</string>
<string name="decoration_car_carmodel_03">贈送成功</string>
<string name="decoration_car_carmodel_04">贈送座駕成功</string>
<string name="decoration_headwear_headwearmodel_01">使用成功</string>
<string name="decoration_headwear_headwearmodel_02">購買成功.</string>
<string name="decoration_headwear_headwearmodel_03">購買頭飾成功</string>
<string name="decoration_headwear_headwearmodel_04">贈送成功.</string>
<string name="decoration_headwear_headwearmodel_05">贈送座駕成功</string>
<string name="decoration_headwear_headwearmodel_06">使用成功</string>
<string name="decoration_headwear_headwearmodel_07">使用成功</string>
<string name="nameplate_bean_nameplateinfo_01">天龍八部</string>
<string name="decoration_nameplate_nameplatemodel_01">使用成功</string>
<string name="yizhuan_xchat_android_core_env_01">請輸入正確的環境</string>
<string name="yizhuan_xchat_android_core_env_02">請輸入正確的環境</string>
<string name="yizhuan_xchat_android_core_env_03">請先初始化環境</string>
<string name="bean_response_rankingfamilyinfo_01">很無奈</string>
<string name="bean_response_rankingfamilyinfo_02">歡樂豆</string>
<string name="family_model_familymodel_01">用戶登錄成功後....</string>
<string name="family_model_familymodel_02">用戶登出成功後....</string>
<string name="family_model_familymodel_03">沒有UID</string>
<string name="family_model_familymodel_04">同步成功</string>
<string name="family_model_familymodel_05">找不到uid</string>
<string name="family_model_familymodel_06">沒有家族.</string>
<string name="family_model_familymodel_07">沒加入家族中...</string>
<string name="family_model_familymodel_08">沒有uid</string>
<string name="family_model_familymodel_09">獲取用戶信息出錯了..</string>
<string name="family_model_familymodel_010">已退出家族</string>
<string name="family_model_familymodel_011">找不到uid</string>
<string name="family_model_familymodel_012">沒有uid</string>
<string name="family_model_familymodel_013">沒有uid</string>
<string name="family_model_familymodel_014">獲取不到用戶信息</string>
<string name="family_model_familymodel_015">沒有uid</string>
<string name="family_model_familymodel_016">沒找到uid</string>
<string name="family_model_familymodel_017">踢出成功</string>
<string name="family_model_familymodel_018">獲取不到 uid</string>
<string name="family_model_familymodel_019">修改成功</string>
<string name="family_model_familymodel_020">找不到uid</string>
<string name="family_model_familymodel_021">找不到uid</string>
<string name="family_model_familymodel_022">找不到uid</string>
<string name="family_model_familymodel_023">沒有uid</string>
<string name="family_model_familymodel_024">加入群聊成功</string>
<string name="family_model_familymodel_025">沒有uid</string>
<string name="family_model_familymodel_026">找不到uid</string>
<string name="family_model_familymodel_027">貢獻成功!</string>
<string name="family_model_familymodel_028">找不到uid</string>
<string name="family_model_familymodel_029">沒有uid</string>
<string name="family_model_familymodel_030">沒有uid</string>
<string name="xchat_android_core_file_filemodel_01"> 為空或者該文件不存在!</string>
<string name="xchat_android_core_file_filemodel_02"> 為空或者該文件不存在!</string>
<string name="xchat_android_core_file_filemodel_03">上傳成功</string>
<string name="xchat_android_core_file_filemodel_04">七牛上傳</string>
<string name="gift_bean_giftknapinfo_01">冰淇淋</string>
<string name="im_chatterbox_chatterboxhelper_01">網絡異常</string>
<string name="im_chatterbox_chatterboxhelper_02">需要對方完成後,才能再次發起哦</string>
<string name="custom_bean_customattachparser_01">未定義的first,請現在CustomAttachParser中解析first=</string>
<string name="custom_bean_nobleattachment_01">收到貴族相關信息:%s</string>
<string name="custom_bean_roomboxprizeattachment_01">未知</string>
<string name="custom_bean_roomtipattachment_01">某某</string>
<string name="im_friend_imfriendmodel_01">沒有好友.</string>
<string name="im_friend_imfriendmodel_02">頁碼從1開始</string>
<string name="im_friend_imfriendmodel_03">每頁大小必須大於1 pageSize >= 1</string>
<string name="xchat_android_core_initial_initialmodel_01">已經請求成功了!</string>
<string name="xchat_android_core_initial_initialmodel_02">獲取不到初始化信息</string>
<string name="xchat_android_core_initial_initialmodel_03">首頁</string>
<string name="xchat_android_core_initial_initialmodel_04">論壇</string>
<string name="xchat_android_core_initial_initialmodel_05">賽事</string>
<string name="xchat_android_core_initial_initialmodel_06">消息</string>
<string name="xchat_android_core_initial_initialmodel_07">我的</string>
<string name="xchat_android_core_magic_magicmodel_01">房間信息或者收到魔法為空</string>
<string name="xchat_android_core_magic_magicmodel_02">房間信息或者收到魔法為空</string>
<string name="xchat_android_core_magic_magicmodel_03">房間信息或者收到魔法為空</string>
<string name="xchat_android_core_magic_magicmodel_04">獲取魔法列表失敗,未知錯誤</string>
<string name="xchat_android_core_magic_magicmodel_05">獲取魔法列表失敗,魔法列表信息為null</string>
<string name="xchat_android_core_magic_magicmodel_06">獲取魔法列表失敗,錯誤碼:</string>
<string name="xchat_android_core_magic_magicmodel_07">獲取魔法墻失敗,未知錯誤</string>
<string name="xchat_android_core_magic_magicmodel_08">獲取魔法墻失敗,魔法墻信息為null</string>
<string name="xchat_android_core_magic_magicmodel_09">獲取魔法墻失敗,錯誤碼:</string>
<string name="xchat_android_core_manager_avroomdatamanager_01">萌新求關註!</string>
<string name="xchat_android_core_manager_avroomdatamanager_02">你們在聊什麽呀?</string>
<string name="xchat_android_core_manager_avroomdatamanager_03">這個怎麽玩呀?</string>
<string name="xchat_android_core_manager_avroomdatamanager_04">我要上麥</string>
<string name="xchat_android_core_manager_avroomdatamanager_05">---------清除AvRoomDataManager數據完成---------</string>
<string name="xchat_android_core_manager_avroomdatamanager_06">TA已經不在房間了</string>
<string name="xchat_android_core_manager_avroomdatamanager_07">網絡異常, code = </string>
<string name="xchat_android_core_manager_basemvpmodel_01">未知錯誤!</string>
<string name="xchat_android_core_manager_basemvpmodel_02">網絡錯誤</string>
<string name="xchat_android_core_manager_basemvpmodel_03">請求超時</string>
<string name="xchat_android_core_manager_imsystemmsgmanager_01">任務一開始</string>
<string name="xchat_android_core_manager_imsystemmsgmanager_02">任務一完成</string>
<string name="xchat_android_core_manager_imsystemmsgmanager_03">任務二開始</string>
<string name="xchat_android_core_manager_imsystemmsgmanager_04">任務三開始</string>
<string name="xchat_android_core_manager_imsystemmsgmanager_05">任務四開始</string>
<string name="xchat_android_core_manager_imsystemmsgmanager_06">收徒成功</string>
<string name="xchat_android_core_manager_imsystemmsgmanager_07">收徒失敗</string>
<string name="xchat_android_core_manager_imsystemmsgmanager_08">師徒推送</string>
<string name="monsterhunting_model_monsterhuntingmodel_01">房間信息為空</string>
<string name="monsterhunting_model_monsterhuntingmodel_02">房間信息或者收到魔法為空</string>
<string name="monsterhunting_model_monsterhuntingmodel_03">全局廣播:</string>
<string name="monsterhunting_model_monsterhuntingmodel_04">廣播</string>
<string name="xchat_android_core_noble_nobledatamanager_01">下載貴族資源失敗</string>
<string name="xchat_android_core_noble_nobleprotocol_01">皇帝</string>
<string name="pay_bean_chargebean_01">600鉆石</string>
<string name="xchat_android_core_pay_paymodel_01">成功</string>
<string name="xchat_android_core_pay_paymodel_02">成功</string>
<string name="xchat_android_core_pay_paymodel_03">不需要toast提示的錯誤</string>
<string name="xchat_android_core_praise_praisemodel_01">點贊成功</string>
<string name="xchat_android_core_praise_praisemodel_02">取消點贊成功</string>
<string name="xchat_android_core_praise_praisemodel_03">成功</string>
<string name="radish_signin_signinmodel_01">分享連接獲取失敗</string>
<string name="radish_signin_signinmodel_02">分享統計接口</string>
<string name="radish_signin_signinmodel_03">分享統計接口</string>
<string name="radish_signin_signinmodel_04">補簽成功, 區分第幾次補簽:</string>
<string name="task_bean_prizeanim_01">鉆石x</string>
<string name="radish_task_taskmodel_01">領取成功</string>
<string name="xchat_android_core_recall_recallmodel_01">回歸禮已發放至我的裝扮</string>
<string name="redpacket_bean_actiondialoginfo_01">紅包小能手</string>
<string name="auction_bean_auctioninfo_01">暫無競拍描述</string>
<string name="room_bean_roominfo_01">牌照房</string>
<string name="room_bean_roominfo_02">新秀房</string>
<string name="room_bean_roominfo_03">普通房</string>
<string name="room_bean_roominfo_04">交談</string>
<string name="room_bean_roominfo_05">心動選人</string>
<string name="room_bean_roominfo_06">公布心動</string>
<string name="room_bean_roominfo_07">結束</string>
<string name="room_bean_roomrankhalfhourdatainfo_01">短發情長</string>
<string name="room_bean_roomrankhalfhourdatainfo_02">杳鳶</string>
<string name="room_bean_roomrankhalfhourdatainfo_03">稍微。</string>
<string name="room_bean_roomrankhalfhourdatainfo_04">abc123😄呃呃呃</string>
<string name="room_bean_roomsettingtabinfo_01">新秀</string>
<string name="room_bean_roomsettingtabinfo_02">邂逅</string>
<string name="room_bean_roomsettingtabinfo_03">交友</string>
<string name="room_bean_roomsettingtabinfo_04">娛樂</string>
<string name="room_bean_roomsettingtabinfo_05">音樂</string>
<string name="room_bean_roomsettingtabinfo_06">電臺</string>
<string name="room_bean_roomsettingtabinfo_07">邂逅</string>
<string name="room_bean_welcomeinfo_01">歡迎</string>
<string name="room_dragonball_dragonballmodel_01">清除桌球成功。</string>
<string name="giftvalue_helper_giftvalueformat_01">9999萬+</string>
<string name="giftvalue_helper_giftvalueformat_02"></string>
<string name="room_model_avroommodel_01">退出房間 RoomInfo = null 沒有房間信息</string>
<string name="room_model_avroommodel_02">開房</string>
<string name="room_model_avroommodel_03">用戶在麥上</string>
<string name="room_model_avroommodel_04">在房間內停留時長</string>
<string name="room_model_avroommodel_05">quitUserRoom 通知服務端退出房間成功:</string>
<string name="room_model_avroommodel_06">quitUserRoom 通知服務端退出房間失敗:</string>
<string name="room_model_avroommodel_07">進入房間獲取固定成員成功,人數:</string>
<string name="room_model_avroommodel_08">進入房間獲取遊客成員成功,人數:</string>
<string name="room_model_homepartyuserlistmodel_01">第%1d頁遊客在線人數:%2d</string>
<string name="room_model_homepartyuserlistmodel_02">循環處理在線順序列表耗時:</string>
<string name="room_model_roombasemodel_01">該麥位已經有人了哦~</string>
<string name="room_model_roombasemodel_02">該麥位已經有人了</string>
<string name="room_model_roombasemodel_03">上麥導致下麥失敗</string>
<string name="room_model_roombasemodel_04">上麥導致下麥失敗</string>
<string name="room_model_roombasemodel_05">該方法只能更新自己的麥序,不要更新別人的麥序信息。</string>
<string name="room_model_roombasemodel_06">更新麥序額外字段成功 code:</string>
<string name="room_model_roombasemodel_07">更新成功</string>
<string name="room_model_roombasemodel_08">更新麥序額外字段失敗 code:</string>
<string name="room_model_roombasemodel_09">更新麥序額外字段失敗 code:</string>
<string name="room_model_roombasemodel_010">更新成功</string>
<string name="room_model_roombasemodel_011">更新失敗</string>
<string name="room_model_roombasemodel_012">更新異常</string>
<string name="room_model_roombasemodel_013">錯誤碼:</string>
<string name="room_model_roombasemodel_014">的房間</string>
<string name="room_model_roomcontributelistmodel_01">當前房間信息為null</string>
<string name="room_model_roomsettingmodel_01">邀請成功</string>
<string name="room_model_roomsettingmodel_02">開啟成功</string>
<string name="room_model_roomsettingmodel_03">關閉成功</string>
<string name="pk_model_pkmodel_01">沒有房間信息</string>
<string name="pk_model_pkmodel_02">無當前登錄賬戶uid</string>
<string name="pk_model_pkmodel_03">開啟pk模式成功</string>
<string name="pk_model_pkmodel_04">沒有房間信息</string>
<string name="pk_model_pkmodel_05">無當前登錄賬戶uid</string>
<string name="pk_model_pkmodel_06">關閉pk模式成功</string>
<string name="pk_model_pkmodel_07">沒有房間信息</string>
<string name="pk_model_pkmodel_08">無當前登錄賬戶uid</string>
<string name="pk_model_pkmodel_09">沒有房間信息</string>
<string name="pk_model_pkmodel_010">無當前登錄賬戶uid</string>
<string name="pk_model_pkmodel_011">沒有房間信息</string>
<string name="pk_model_pkmodel_012">無當前登錄賬戶uid</string>
<string name="pk_model_pkmodel_013">無數據</string>
<string name="pk_model_pkmodel_014">沒有房間信息</string>
<string name="pk_model_pkmodel_015">無當前登錄賬戶uid</string>
<string name="pk_model_pkmodel_016">創建PK成功</string>
<string name="pk_model_pkmodel_017">沒有房間信息</string>
<string name="pk_model_pkmodel_018">PK沒有創建或者PK狀態異常</string>
<string name="pk_model_pkmodel_019">PK還沒準備好</string>
<string name="pk_model_pkmodel_020">開始PK成功</string>
<string name="pk_model_pkmodel_021">沒有創建PK</string>
<string name="pk_model_pkmodel_022">邀請上麥成功</string>
<string name="pk_model_pkmodel_023">PK結束已經發送過來。</string>
<string name="pk_model_pkmodel_024">沒有原來的PK信息</string>
<string name="pk_model_pkmodel_025">PK還沒準備好</string>
<string name="pk_model_pkmodel_026">成功</string>
<string name="pk_model_pkmodel_027">PK還沒準備好</string>
<string name="pk_model_pkmodel_028">沒有創建PK</string>
<string name="queue_bean_consumeinfo_01">呆萌小熊貓</string>
<string name="queue_bean_consumeinfo_02">周冬雨的凝視</string>
<string name="queue_bean_consumeinfo_03">豆子一號</string>
<string name="queue_bean_consumeinfo_04">納尼</string>
<string name="queue_bean_consumeinfo_05">清涼小西瓜</string>
<string name="queue_bean_consumeinfo_06">🐬□詩涵</string>
<string name="xchat_android_core_settings_settingsmodel_01">設置不提醒用戶出錯code=</string>
<string name="xchat_android_core_share_sharemodel_01">分享成功</string>
<string name="xchat_android_core_share_sharemodel_02">分享失敗,請重試</string>
<string name="xchat_android_core_share_sharemodel_03">分享取消</string>
<string name="team_bean_teammemberinfo_01">群主</string>
<string name="team_bean_teammemberinfo_02">管理員</string>
<string name="team_bean_teammemberinfo_03">普通成員</string>
<string name="team_model_teammodel_01">創建成功。</string>
<string name="team_model_teammodel_02">刪除成功。</string>
<string name="team_model_teammodel_03">推出群組成功。</string>
<string name="team_model_teammodel_04">添加成功。</string>
<string name="team_model_teammodel_05">設置成功。</string>
<string name="team_model_teammodel_06">無家族信息.</string>
<string name="team_model_teammodel_07">設置成功。</string>
<string name="team_model_teammodel_08">設置成功。</string>
<string name="team_model_teammodel_09">設置成功。</string>
<string name="team_model_teammodel_010">設置成功。</string>
<string name="user_bean_livetaginfo_01">王者</string>
<string name="user_bean_userdetailinfo_01">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_02">棒棒糖</string>
<string name="user_bean_userdetailinfo_03">人生不如意之事 十之八九\n放下才是解脫</string>
<string name="user_bean_userdetailinfo_04">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_05">努力,才能保證你的價值🌹🌷💐🥀🍂🍁🌼🌸🌺🍃🌾🌱🌾🎍🌵🌵🌿🍀🌳🌳💐🌻🌷🌻</string>
<string name="user_bean_userdetailinfo_06">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_07">盤他</string>
<string name="user_bean_userdetailinfo_08">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_09">鐵汁,奧力給,沒毛病吧?!</string>
<string name="user_bean_userdetailinfo_010">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_011">上熱門🦆</string>
<string name="user_bean_userdetailinfo_012">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_013">棒棒糖</string>
<string name="user_bean_userdetailinfo_014">人生不如意之事 十之八九\n放下才是解脫</string>
<string name="user_bean_userdetailinfo_015">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_016">努力,才能保證你的價值🌹🌷💐🥀🍂🍁🌼🌸🌺🍃🌾🌱🌾🎍🌵🌵🌿🍀🌳🌳💐🌻🌷🌻</string>
<string name="user_bean_userdetailinfo_017">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_018">盤他</string>
<string name="user_bean_userdetailinfo_019">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_020">鐵汁,奧力給,沒毛病吧?!</string>
<string name="user_bean_userdetailinfo_021">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_022">上熱門🦆</string>
<string name="user_bean_userdetailinfo_023">大幽魂上衣</string>
<string name="xchat_android_core_user_usermodel_01">沒有當前登錄的uid</string>
<string name="xchat_android_core_user_usermodel_02">沒有當前登錄的uid</string>
<string name="xchat_android_core_user_usermodel_03">服務器返回的userInfo字段為空</string>
<string name="xchat_android_core_user_usermodel_04">uid不合法</string>
<string name="xchat_android_core_user_usermodel_05">服務器返回的userInfo字段為空</string>
<string name="xchat_android_core_user_usermodel_06">服務器返回的userInfo字段為空</string>
<string name="xchat_android_core_user_usermodel_07">沒有找到用戶信息</string>
<string name="xchat_android_core_user_usermodel_08">用戶uid為空</string>
<string name="xchat_android_core_user_usermodel_09">重置成功</string>
<string name="xchat_android_core_user_usermodel_010">設置成功</string>
<string name="xchat_android_core_utils_asynctaskscanmusicfile_01">i音樂/歌曲/</string>
<string name="xchat_android_core_utils_logutils_01">ClassName:%s \nMethodName:%s \nMethodLine:%d \n當前是第%d個 \n---------------------------- \n </string>
<string name="utils_net_beanobserver_01">網絡異常</string>
<string name="utils_net_beanobserver_02">網絡錯誤</string>
<string name="utils_net_beanobserver_03">網絡異常,請檢查您的網絡再試~</string>
<string name="utils_net_beanobserver_04">數據解析異常</string>
<string name="utils_net_beanobserver_05">參數錯誤</string>
<string name="utils_net_errorconsumer_01">服務器內部錯誤</string>
<string name="utils_net_errorconsumer_02">網絡錯誤,請稍後再試...</string>
<string name="utils_net_errorconsumer_03">網絡錯誤,請稍後再試...</string>
<string name="utils_net_rxextension_01">成功情況下接口返回data字段可以為空不適合使用此方法脫掉外層。</string>
<string name="utils_net_rxextension_02">未知錯誤</string>
<string name="utils_net_rxextension_03">成功</string>
<string name="utils_net_rxextension_04">未知錯誤</string>
<string name="utils_net_rxextension_05">網絡異常,請檢查您的網絡再試...</string>
<string name="utils_net_rxextension_06">網絡異常,請檢查你的網絡再試</string>
<string name="utils_net_rxhelper_01">成功情況下接口返回data字段可以為空不適合使用此方法脫掉外層。</string>
<string name="utils_net_rxhelper_02">成功情況下接口返回data字段可以為空不適合使用此方法脫掉外層。</string>
<string name="utils_net_rxhelper_03">接口返回的data字段為空了且NullHandle.createT沒有返回T對象</string>
<string name="utils_net_rxhelper_04">成功</string>
<string name="utils_net_rxhelper_05">網絡異常,請稍後再試!</string>
<string name="utils_net_rxhelper_06">網絡錯誤</string>
<string name="xchat_android_core_utils_oldhttperrorhandleutil_01">Hiyoo開小差中~請稍後再試</string>
<string name="xchat_android_core_utils_oldhttperrorhandleutil_02">網絡異常,請檢查您的網絡再試!</string>
<string name="xchat_android_core_utils_starutils_01"></string>
<string name="xchat_android_core_utils_starutils_02"></string>
<string name="xchat_android_core_utils_starutils_03"></string>
<string name="xchat_android_core_utils_starutils_04"></string>
<string name="xchat_android_core_utils_starutils_05"></string>
<string name="xchat_android_core_utils_starutils_06"></string>
<string name="xchat_android_core_utils_starutils_07"></string>
<string name="xchat_android_core_utils_starutils_08"></string>
<string name="xchat_android_core_utils_starutils_09"></string>
<string name="xchat_android_core_utils_starutils_010"></string>
<string name="xchat_android_core_utils_starutils_011"></string>
<string name="xchat_android_core_utils_starutils_012"></string>
<string name="xchat_android_core_utils_starutils_013">水瓶座</string>
<string name="xchat_android_core_utils_starutils_014">雙魚座</string>
<string name="xchat_android_core_utils_starutils_015">白羊座</string>
<string name="xchat_android_core_utils_starutils_016">金牛座</string>
<string name="xchat_android_core_utils_starutils_017">雙子座</string>
<string name="xchat_android_core_utils_starutils_018">巨蟹座</string>
<string name="xchat_android_core_utils_starutils_019">獅子座</string>
<string name="xchat_android_core_utils_starutils_020">處女座</string>
<string name="xchat_android_core_utils_starutils_021">天秤座</string>
<string name="xchat_android_core_utils_starutils_022">天蠍座</string>
<string name="xchat_android_core_utils_starutils_023">射手座</string>
<string name="xchat_android_core_utils_starutils_024">魔羯座</string>
<string name="xchat_android_core_utils_starutils_025">小時</string>
<string name="xchat_android_core_utils_starutils_026"></string>
<string name="xchat_android_core_utils_stringutils_01">分鐘前</string>
<string name="xchat_android_core_utils_stringutils_02">小時前</string>
<string name="xchat_android_core_utils_stringutils_03">分鐘前</string>
<string name="xchat_android_core_utils_stringutils_04">小時前</string>
<string name="xchat_android_core_utils_stringutils_05">昨天</string>
<string name="xchat_android_core_utils_stringutils_06">前天</string>
<string name="xchat_android_core_utils_stringutils_07">天前</string>
<string name="xchat_android_core_utils_stringutils_08">周一</string>
<string name="xchat_android_core_utils_stringutils_09">周二</string>
<string name="xchat_android_core_utils_stringutils_010">周三</string>
<string name="xchat_android_core_utils_stringutils_011">周四</string>
<string name="xchat_android_core_utils_stringutils_012">周五</string>
<string name="xchat_android_core_utils_stringutils_013">周六</string>
<string name="xchat_android_core_utils_stringutils_014">周日</string>
<string name="web_bean_webjsbeaninfo_01">常見問題</string>
<string name="xchat_android_core_withdraw_withdrawmodel_01">綁定成功</string>
<string name="bank_card_bean_bankcardlistresp_01">中國光大銀行</string>
<string name="bank_card_bean_bankcardlistresp_02">儲蓄卡</string>
<string name="community_download_downloadmodel_01">下載失敗</string>
<string name="community_download_downloadmodel_02">下載失敗</string>
<string name="community_dynamic_dynamicdetailmodel_01">回復評論</string>
<string name="community_dynamic_dynamicmodel_01">話題客態頁</string>
<string name="community_dynamic_dynamicmodel_02">個人主頁</string>
<string name="community_dynamic_dynamicmodel_03">動態詳情</string>
<string name="community_dynamic_dynamicmodel_04">動態廣場</string>
<string name="community_dynamic_dynamicmodel_05">點贊動態-區分-</string>
<string name="community_dynamic_dynamicmodel_06">點贊動態的次數,區分話題-</string>
<string name="community_dynamic_dynamicmodel_07">點贊動態的次數,區分-</string>
<string name="community_dynamic_dynamicmodel_08">點贊</string>
<string name="community_dynamic_dynamicmodel_09">取消贊</string>
<string name="module_hall_hall_hallmodel_01">公會成員啟動應用</string>
<string name="module_hall_hall_hallmodel_02">發送成功,請耐心等待</string>
<string name="module_hall_hall_hallmodel_03">移除廳成員成功</string>
<string name="module_hall_hall_hallmodel_04">您的申請已提交</string>
<string name="module_hall_hall_hallmodel_05">邀請成功</string>
<string name="module_hall_secretcode_secretcodemodel_01">加入廳成功</string>
<string name="module_hall_team_hteammodel_01">操作成功</string>
<string name="module_hall_team_hteammodel_02">操作成功</string>
<string name="module_hall_team_hteammodel_03">設置管理員成功</string>
<string name="module_hall_team_hteammodel_04">取消管理員成功</string>
<string name="module_hall_team_hteammodel_05">禁言成功</string>
<string name="module_hall_team_hteammodel_06">取消禁言成功</string>
<string name="module_hall_team_hteammodel_07">踢出成功</string>
<string name="module_hall_team_hteammodel_08">添加成功</string>
<string name="module_hall_team_hteammodel_09">解散群聊成功</string>
<string name="module_hall_team_hteammodel_010">退出群聊成功</string>
<string name="module_hall_team_hteammodel_011">加入群聊成功</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_01">小決絕</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_02">伯爵</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_03">白金Lv5</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_04">初出茅廬LV3</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_05">高階石頭</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_06">小決絕</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_07">伯爵</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_08">白金Lv5</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_09">初出茅廬LV3</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_010">高階石頭</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_011">伯爵</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_012">白金Lv5</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_013">初出茅廬LV3</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_014">高階石頭</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_015">伯爵</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_016">白金Lv5</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_017">初出茅廬LV3</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_018">高階石頭</string>
<string name="mentoring_relationship_bean_mentoringuserinfo_01">白金Lv5</string>
<string name="mentoring_relationship_bean_mentoringuserinfo_02">初出茅廬LV3</string>
<string name="mentoring_relationship_bean_mentoringuserinfo_03">高階石頭</string>
<string name="miniworld_model_miniworldmodel_01">我加入的</string>
<string name="miniworld_model_miniworldmodel_02">推薦</string>
<string name="miniworld_model_miniworldmodel_03">更改成功</string>
<string name="miniworld_model_miniworldmodel_04">網絡錯誤</string>
<string name="miniworld_model_miniworldmodel_05">網絡錯誤</string>
<string name="miniworld_model_miniworldmodel_06">成功</string>
<string name="miniworld_model_miniworldmodel_07">網絡錯誤</string>
<string name="miniworld_model_miniworldmodel_08">成功</string>
<string name="miniworld_model_miniworldmodel_09">網絡錯誤</string>
<string name="miniworld_model_miniworldmodel_010">成功</string>
<string name="miniworld_model_miniworldmodel_011">網絡錯誤</string>
<string name="music_model_sharemusiclistmodel_01">該資源已經廢棄了哦!試試別的吧</string>
<string name="music_model_sharemusiclistmodel_02">該共享音樂應該在本地</string>
<string name="music_model_sharemusiclistmodel_03">數據庫插入失敗</string>
<string name="public_chat_hall_bean_aitfriendsinfo_01">小明</string>
<string name="public_chat_hall_bean_aitfriendsinfo_02">小紅</string>
<string name="public_chat_hall_bean_publicchathallmessage_01">笨ww</string>
<string name="public_chat_hall_bean_publicchathallmessage_02">笨ww</string>
<string name="public_chat_hall_manager_publicchathalldatamanager_01">自定義消息:</string>
<string name="public_chat_hall_model_publicchathallmodel_01">成功</string>
<string name="public_chat_hall_model_publicchathallmodel_02">失敗</string>
<string name="public_chat_hall_model_publicchathallmodel_03">失敗</string>
<string name="xchat_android_core_code_codemodel_01">驗證碼已發送到您的手機,請註意查收</string>
<string name="xchat_android_core_code_codemodel_02">網絡錯誤</string>
<string name="xchat_android_core_code_codetype_01">非登錄態重置密碼</string>
<string name="xchat_android_core_code_codetype_02">登錄態重置密碼</string>
<string name="xchat_android_core_super_admin_saconstant_01">超管不能操作</string>
<string name="treasure_box_model_boxmodel_01">當前房間信息為空.</string>
<string name="treasure_box_model_boxmodel_02">余額不足</string>
<string name="treasure_box_model_radishmodel_01">當前房間信息為空.</string>
<string name="upgrade_model_upgrademodel_01">下載失敗</string>
<string name="upgrade_model_upgrademodel_02">下載失敗</string>
<string name="upgrade_model_upgrademodel_03">MD5驗證不通過</string>
<string name="upgrade_model_upgrademodel_04">沒有新版本下載信息</string>
<string name="upgrade_model_upgrademodel_05">正在下載中...</string>
<string name="upgrade_model_upgrademodel_06">下載中...</string>
<string name="upgrade_model_upgrademodel_07">已是最新版本</string>
<string name="not_install_app">未安裝該應用</string>
<string name="wechat_share_title">HABU-Making new friends,join HABU right now. </string>
<string name="wechat_share_content">Find and join the best groups,talk with strangers</string>
<string name="data_parsing_exception">數據解析異常</string>
<string name="parameter_error">參數錯誤</string>
</resources>

View File

@@ -0,0 +1,672 @@
<resources>
<string name="app_name">XChat_Android_Core</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_01">安全提醒:請勿傳播任何違法、違規、低俗、暴力等不良信息,否則將麵臨賬號封禁處罰。</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_02">來Hiyoo邂逅你的專屬聲音</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_03">來Hiyoo開黑交友玩遊戲</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_04">加入家族,和你興趣相投的小夥伴一起玩耍吧~</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_05">hi,我想邀請您加入我的Hiyoo家族:</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_06">加入家族,和你興趣相投的小夥伴一起玩耍吧~</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_07">hi,我想邀請您加入我的Hiyoo群聊:</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_08">可點擊房間話題查看本房間公告</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_09">相親玩法已開啟,請點擊主持人麥位選擇主持人</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_010">新一輪的相親已開啟</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_011">已進入心動選人環節</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_012">公布心動對象</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_013">版本過舊,請下載最新版本哦</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_014">網絡錯誤</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_015">未知錯誤</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_016">用戶信息為空,請重新登錄</string>
<string name="yizhuan_xchat_android_constants_xchatconstants_017">僅支持查看3個月內記錄</string>
<string name="xchat_android_core_channel_channelmodel_01">不是新用戶。</string>
<string name="xchat_android_core_channel_channelmodel_02">請求成功-></string>
<string name="xchat_android_core_channel_channelmodel_03">請求成功</string>
<string name="xchat_android_core_channel_channelmodel_04">請求成功-></string>
<string name="xchat_android_core_channel_channelmodel_05">請求異常 code:</string>
<string name="xchat_android_core_helper_imhelperutils_01">[圖片]</string>
<string name="xchat_android_core_helper_imhelperutils_02">[視頻]</string>
<string name="xchat_android_core_helper_imhelperutils_03">[語音消息]</string>
<string name="xchat_android_core_helper_imhelperutils_04">[位置]</string>
<string name="xchat_android_core_helper_imhelperutils_05">[文件]</string>
<string name="xchat_android_core_helper_imhelperutils_06">[通知提醒]</string>
<string name="xchat_android_core_helper_imhelperutils_07">你收到一條消息...</string>
<string name="xchat_android_core_helper_imhelperutils_08">您關註的TA上線啦快去圍觀吧~~~</string>
<string name="xchat_android_core_helper_imhelperutils_09">[禮物]</string>
<string name="xchat_android_core_helper_imhelperutils_010">[遊戲邀請]</string>
<string name="xchat_android_core_helper_imhelperutils_011">[升級信息]</string>
<string name="xchat_android_core_helper_imhelperutils_012">您收到一個</string>
<string name="xchat_android_core_helper_imhelperutils_013">紅包哦!</string>
<string name="xchat_android_core_helper_imhelperutils_014">恭喜您,獲得抽獎機會</string>
<string name="xchat_android_core_helper_imhelperutils_015">提示:</string>
<string name="xchat_android_core_helper_imhelperutils_016">[分享房間]</string>
<string name="xchat_android_core_helper_imhelperutils_017">[分享家族]</string>
<string name="xchat_android_core_helper_imhelperutils_018">[分享群組]</string>
<string name="xchat_android_core_helper_imhelperutils_019">[您收到一條分享消息]</string>
<string name="xchat_android_core_helper_imhelperutils_020">[您收到了一個群紅包]</string>
<string name="xchat_android_core_helper_imhelperutils_021">領取了你的紅包]</string>
<string name="xchat_android_core_helper_imhelperutils_022">[你領取了</string>
<string name="xchat_android_core_helper_imhelperutils_023">的紅包]</string>
<string name="xchat_android_core_helper_imhelperutils_024">領取了</string>
<string name="xchat_android_core_helper_imhelperutils_025">的紅包]</string>
<string name="xchat_android_core_helper_imhelperutils_026">[您收到一條系統消息]</string>
<string name="xchat_android_core_helper_imhelperutils_027">[您收到一條公聊大廳相關消息]</string>
<string name="xchat_android_core_helper_imhelperutils_028">[您收到一條公會消息]</string>
<string name="xchat_android_core_helper_imhelperutils_029">[簽到提醒]</string>
<string name="xchat_android_core_helper_imhelperutils_030">[簽到瓜分百萬]</string>
<string name="xchat_android_core_helper_imhelperutils_031">[聲音瓶子審核消息]</string>
<string name="xchat_android_core_helper_imhelperutils_032">[分享一條動態]</string>
<string name="xchat_android_core_helper_imhelperutils_033">[您收到一個全服紅包]</string>
<string name="xchat_android_core_helper_imhelperutils_034">[風險提示]</string>
<string name="xchat_android_core_helper_imhelperutils_035">[語音]</string>
<string name="xchat_android_core_helper_imhelperutils_036">你收到一條消息</string>
<string name="home_bean_collectionroominfo_01">輔導的房間</string>
<string name="home_bean_collectionroominfo_02">我是一只小萌新輔導輔導輔導輔導的房間</string>
<string name="home_bean_tabinfo_01">新秀</string>
<string name="home_bean_tabinfo_02">交友</string>
<string name="home_bean_tabinfo_03">娛樂</string>
<string name="home_bean_tabinfo_04">電臺</string>
<string name="home_bean_tabinfo_05">星球</string>
<string name="home_bean_tabinfo_06">音樂</string>
<string name="home_model_homemodel_01">反饋成功</string>
<string name="manager_agora_engineeventhandler_01">發生未知錯誤,請退出房間重新進入</string>
<string name="xchat_android_core_manager_imneteasemanager_01">[房間公告]</string>
<string name="xchat_android_core_manager_imneteasemanager_02">獲取用戶的信息字段為空</string>
<string name="xchat_android_core_manager_imneteasemanager_03">不在房間內或房間信息為空</string>
<string name="xchat_android_core_manager_imneteasemanager_04">收到踢人信息</string>
<string name="xchat_android_core_manager_imneteasemanager_05">消息中可能含有違規信息,請停止發送類似信息!</string>
<string name="xchat_android_core_manager_imneteasemanager_06">連接中...</string>
<string name="xchat_android_core_manager_imneteasemanager_07">聊天室狀態異常!</string>
<string name="xchat_android_core_manager_imneteasemanager_08">聊天室在線狀態變為UNLOGIN</string>
<string name="xchat_android_core_manager_imneteasemanager_09">登錄中...</string>
<string name="xchat_android_core_manager_imneteasemanager_010">雲信聊天室已登錄成功</string>
<string name="xchat_android_core_manager_imneteasemanager_011">重連聊天室事</string>
<string name="xchat_android_core_manager_imneteasemanager_012">需要重新登錄(被踢或驗證信息錯誤)...</string>
<string name="xchat_android_core_manager_imneteasemanager_013">網絡斷開...</string>
<string name="xchat_android_core_manager_imneteasemanager_014">斷網事件</string>
<string name="xchat_android_core_manager_imneteasemanager_015">自定義消息:</string>
<string name="xchat_android_core_manager_imneteasemanager_016">禮物特效</string>
<string name="xchat_android_core_manager_imneteasemanager_017">禮物特效</string>
<string name="xchat_android_core_manager_imneteasemanager_018">PK 創建消息-> msgUuid</string>
<string name="xchat_android_core_manager_imneteasemanager_019">接受到的時間:</string>
<string name="xchat_android_core_manager_imneteasemanager_020">PK 創建消息-> attr:</string>
<string name="xchat_android_core_manager_imneteasemanager_021">PK 開始消息-> msgUuid</string>
<string name="xchat_android_core_manager_imneteasemanager_022">接受到的時間:</string>
<string name="xchat_android_core_manager_imneteasemanager_023">PK 開始消息-> attr:</string>
<string name="xchat_android_core_manager_imneteasemanager_024">PK 結果消息-> msgUuid</string>
<string name="xchat_android_core_manager_imneteasemanager_025">接受到的時間:</string>
<string name="xchat_android_core_manager_imneteasemanager_026">PK 結果消息-> attr:</string>
<string name="xchat_android_core_manager_imneteasemanager_027">暴走倒計時房間消息出錯了...</string>
<string name="xchat_android_core_manager_imneteasemanager_028">暴走倒計時:</string>
<string name="xchat_android_core_manager_imneteasemanager_029">您已隱身進入房間</string>
<string name="xchat_android_core_manager_imneteasemanager_030">您已隱身進入房間</string>
<string name="manager_trtc_trtcengineadapter_01">進入房間失敗</string>
<string name="manager_trtc_trtcengineadapter_02">進房參數為空,請檢查 enterRoom:appScene: 接口調用是否傳入有效的 param</string>
<string name="manager_trtc_trtcengineadapter_03">進房參數 sdkAppId 錯誤</string>
<string name="manager_trtc_trtcengineadapter_04">進房參數 roomId 錯誤</string>
<string name="manager_trtc_trtcengineadapter_05">進房參數 userID 不正確</string>
<string name="manager_trtc_trtcengineadapter_06">進房參數 userSig 不正確</string>
<string name="manager_trtc_trtcengineadapter_07">請求進房超時,請檢查網絡</string>
<string name="manager_trtc_trtcengineadapter_08">服務不可用。請檢查套餐包剩餘分鐘數是否大於0騰訊雲賬號是否欠費</string>
<string name="manager_trtc_trtcengineadapter_09">請求退房超時</string>
<string name="manager_trtc_trtcengineadapter_010">打開攝像頭失敗</string>
<string name="manager_trtc_trtcengineadapter_011">攝像頭設備未授權</string>
<string name="manager_trtc_trtcengineadapter_012">攝像頭參數設置出錯</string>
<string name="manager_trtc_trtcengineadapter_013">攝像頭正在被占用中</string>
<string name="manager_trtc_trtcengineadapter_014">打開麥克風失敗</string>
<string name="manager_trtc_trtcengineadapter_015">麥克風設備未授權</string>
<string name="manager_trtc_trtcengineadapter_016">麥克風設置參數失敗</string>
<string name="manager_trtc_trtcengineadapter_017">麥克風正在被占用中</string>
<string name="manager_trtc_trtcengineadapter_018">停止麥克風失敗</string>
<string name="manager_trtc_trtcengineadapter_019">打開揚聲器失敗</string>
<string name="manager_trtc_trtcengineadapter_020">揚聲器設置參數失敗</string>
<string name="manager_trtc_trtcengineadapter_021">停止揚聲器失敗</string>
<string name="manager_trtc_trtcengineadapter_022">開始錄屏失敗</string>
<string name="manager_trtc_trtcengineadapter_023">錄屏失敗</string>
<string name="manager_trtc_trtcengineadapter_024">沒有權限上行輔路</string>
<string name="manager_trtc_trtcengineadapter_025">其他用戶正在上行輔路</string>
<string name="manager_trtc_trtcengineadapter_026">視頻幀編碼失敗</string>
<string name="manager_trtc_trtcengineadapter_027">不支持的視頻分辨率</string>
<string name="manager_trtc_trtcengineadapter_028">音頻幀編碼失敗</string>
<string name="manager_trtc_trtcengineadapter_029">不支持的音頻采樣率</string>
<string name="manager_trtc_trtcengineadapter_030">設置的 pixel format 不支持</string>
<string name="manager_trtc_trtcengineadapter_031">設置的 buffer type 不支持</string>
<string name="manager_trtc_trtcengineadapter_032">旁路轉推請求超時</string>
<string name="manager_trtc_trtcengineadapter_033">雲端混流請求超時</string>
<string name="manager_trtc_trtcengineadapter_034">雲端混流回包異常</string>
<string name="manager_trtc_trtcengineadapter_035">旁路轉推回包異常</string>
<string name="manager_trtc_trtcengineadapter_036">開始向騰訊雲的直播 CDN 推流信令超時</string>
<string name="manager_trtc_trtcengineadapter_037">開始向騰訊雲的直播 CDN 推流信令異常</string>
<string name="manager_trtc_trtcengineadapter_038">停止向騰訊雲的直播 CDN 推流信令超時</string>
<string name="manager_trtc_trtcengineadapter_039">停止向騰訊雲的直播 CDN 推流信令異常</string>
<string name="manager_trtc_trtcengineadapter_040">請求連麥超時</string>
<string name="manager_trtc_trtcengineadapter_041">請求退出連麥超時</string>
<string name="manager_trtc_trtcengineadapter_042">無效參數</string>
<string name="manager_trtc_trtcengineadapter_043">當前是觀眾角色,不能請求或斷開跨房連麥,需要先 switchRole() 到主播</string>
<string name="manager_trtc_trtcengineadapter_044">不支持跨房間連麥</string>
<string name="manager_trtc_trtcengineadapter_045">達到跨房間連麥上限</string>
<string name="manager_trtc_trtcengineadapter_046">跨房間連麥重試次數耗盡</string>
<string name="manager_trtc_trtcengineadapter_047">跨房間連麥請求超時</string>
<string name="manager_trtc_trtcengineadapter_048">跨房間連麥請求格式錯誤</string>
<string name="manager_trtc_trtcengineadapter_049">跨房間連麥無簽名</string>
<string name="manager_trtc_trtcengineadapter_050">跨房間連麥簽名解密失敗</string>
<string name="manager_trtc_trtcengineadapter_051">未找到跨房間連麥簽名解密密鑰</string>
<string name="manager_trtc_trtcengineadapter_052">跨房間連麥簽名解析錯誤</string>
<string name="manager_trtc_trtcengineadapter_053">跨房間連麥簽名時間戳錯誤</string>
<string name="manager_trtc_trtcengineadapter_054">跨房間連麥簽名不匹配</string>
<string name="manager_trtc_trtcengineadapter_055">本房間無連麥</string>
<string name="manager_trtc_trtcengineadapter_056">本用戶未發起連麥</string>
<string name="manager_trtc_trtcengineadapter_057">跨房間連麥失敗</string>
<string name="manager_trtc_trtcengineadapter_058">取消跨房間連麥失敗</string>
<string name="manager_trtc_trtcengineadapter_059">被連麥房間不存在</string>
<string name="manager_trtc_trtcengineadapter_060">被連麥房間達到連麥上限</string>
<string name="manager_trtc_trtcengineadapter_061">被連麥用戶不存在</string>
<string name="manager_trtc_trtcengineadapter_062">被連麥用戶已被刪除</string>
<string name="manager_trtc_trtcengineadapter_063">被連麥用戶達到資源上限</string>
<string name="manager_trtc_trtcengineadapter_064">連麥請求序號錯亂</string>
<string name="manager_trtc_trtcengineeventhandler_01">Trtc回調onError errCode=</string>
<string name="manager_trtc_trtcengineeventhandler_02">發生未知錯誤,請退出房間重新進入</string>
<string name="xchat_android_core_retry_imretrymanager_01">房間禮物消息發送失敗, error:</string>
<string name="xchat_android_core_retry_imretrymanager_02">房間禮物消息重發失敗, error:</string>
<string name="xchat_android_core_retry_imretrymanager_03">房間禮物消息重發成功-區分重連次數:</string>
<string name="xchat_android_core_auth_authmodel_01">自動登錄成功</string>
<string name="xchat_android_core_auth_authmodel_02">登錄成功!</string>
<string name="xchat_android_core_auth_authmodel_03">未安裝facebook</string>
<string name="xchat_android_core_auth_authmodel_04">登錄出錯</string>
<string name="xchat_android_core_auth_authmodel_05">登錄取消</string>
<string name="xchat_android_core_auth_authmodel_06">未安裝Line</string>
<string name="xchat_android_core_auth_authmodel_07">登錄出錯</string>
<string name="xchat_android_core_auth_authmodel_08">取消登錄</string>
<string name="xchat_android_core_auth_authmodel_09">未安裝gmail</string>
<string name="xchat_android_core_auth_authmodel_010">登錄出錯</string>
<string name="xchat_android_core_auth_authmodel_011">取消登錄</string>
<string name="xchat_android_core_auth_authmodel_012">登錄成功!</string>
<string name="xchat_android_core_auth_authmodel_013">重置密碼成功</string>
<string name="xchat_android_core_auth_authmodel_014">獲取不到當前用戶UID</string>
<string name="xchat_android_core_auth_authmodel_015">獲取手機綁定信息成功</string>
<string name="xchat_android_core_auth_authmodel_016">獲取不到當前用戶UID</string>
<string name="xchat_android_core_auth_authmodel_017">綁定手機成功</string>
<string name="xchat_android_core_auth_authmodel_018">註冊成功</string>
<string name="xchat_android_core_auth_authmodel_019">執行logout-cleanLogInfo</string>
<string name="xchat_android_core_auth_authmodel_020">發生未知異常</string>
<string name="xchat_android_core_auth_authmodel_021">沒有ticket信息</string>
<string name="xchat_android_core_auth_authmodel_022">修改登錄密碼成功</string>
<string name="xchat_android_core_auth_authmodel_023">沒有uid</string>
<string name="xchat_android_core_auth_authmodel_024">沒有ticket信息</string>
<string name="xchat_android_core_auth_authmodel_025">設置登錄密碼成功</string>
<string name="xchat_android_core_auth_authmodel_026">被服務器禁止登錄</string>
<string name="xchat_android_core_auth_authmodel_027">用戶名或密碼錯誤</string>
<string name="xchat_android_core_auth_authmodel_028">執行im狀態-cleanLogInfo</string>
<string name="xchat_android_core_auth_authmodel_029">沒有賬戶信息</string>
<string name="xchat_android_core_auth_authmodel_030">執行imLogin方法</string>
<string name="xchat_android_core_auth_authmodel_031">登錄信息為空</string>
<string name="xchat_android_core_auth_authmodel_032">IM登錄成功</string>
<string name="xchat_android_core_auth_authmodel_033">IM登錄成功</string>
<string name="xchat_android_core_auth_authmodel_034">失敗錯誤碼:</string>
<string name="xchat_android_core_auth_authmodel_035">網絡異常,請切換網絡后重試:</string>
<string name="xchat_android_core_auth_authmodel_036">IM登錄失敗異常信息</string>
<string name="auth_exception_oldmemberexception_01">不存在對應賬號</string>
<string name="xchat_android_core_base_basemodel_01">未知錯誤!</string>
<string name="xchat_android_core_base_basemodel_02">網絡錯誤</string>
<string name="xchat_android_core_base_basemodel_03">請求超時</string>
<string name="bean_response_beanresult_01">網絡異常,請檢查你的網絡再試!</string>
<string name="bean_response_responsedata_01">用戶不存在或密碼錯誤</string>
<string name="bean_response_responsedata_02">用戶不存在或密碼錯誤</string>
<string name="bean_response_responsedata_03">用戶不存在或密碼錯誤</string>
<string name="bean_response_responsedata_04">用戶已被凍結</string>
<string name="bean_response_responsedata_05">驗證碼錯誤</string>
<string name="bean_response_responsedata_06">手機號不可用</string>
<string name="bean_response_responsedata_07">重置密碼無效</string>
<string name="bean_response_responsedata_08">昵稱不合法</string>
<string name="bean_response_responsedata_09">手機號碼已經被註冊</string>
<string name="bean_response_responsedata_010">登錄憑證失效,請重新登錄</string>
<string name="bean_response_responsedata_011">登錄憑證失效,請重新登錄</string>
<string name="bean_response_responsedata_012">登錄憑證失效,請重新登錄</string>
<string name="bean_response_responsedata_013">登錄憑證失效,請重新登錄</string>
<string name="bean_response_responsedata_014">網絡錯誤</string>
<string name="bean_response_serviceresult_01">服務器正在維護</string>
<string name="bean_response_serviceresult_02">鉆石數量不夠</string>
<string name="bean_response_serviceresult_03">短信驗證碼錯誤</string>
<string name="bean_response_serviceresult_04">該用戶不存在</string>
<string name="bean_response_serviceresult_05">房間正在運行中...</string>
<string name="bean_response_serviceresult_06">當前被競拍者正在被競拍中,還未結束</string>
<string name="bean_response_serviceresult_07">競拍價格小於當前最高價</string>
<string name="bean_response_serviceresult_08">訂單不存在</string>
<string name="bean_response_serviceresult_09">手機格式不正確</string>
<string name="bean_response_serviceresult_010">網絡異常</string>
<string name="bean_response_serviceresult_011">未知錯誤</string>
<string name="bean_response_serviceresult_012">服務器正在維護</string>
<string name="bean_response_serviceresult_013">鉆石數量不夠</string>
<string name="bean_response_serviceresult_014">短信驗證碼錯誤</string>
<string name="bean_response_serviceresult_015">服務不可用</string>
<string name="bean_response_serviceresult_016">服務端異常</string>
<string name="bean_response_serviceresult_017">未知錯誤</string>
<string name="bean_response_serviceresult_018">服務繁忙</string>
<string name="bean_response_serviceresult_019">該用戶不存在</string>
<string name="bean_response_serviceresult_020">房間正在運行中...</string>
<string name="bean_response_serviceresult_021">當前被競拍者正在被競拍中,還未結束</string>
<string name="bean_response_serviceresult_022">競拍價格小於當前最高價</string>
<string name="bean_response_serviceresult_023">訂單不存在</string>
<string name="bean_response_serviceresult_024">發送短信出錯</string>
<string name="bean_response_serviceresult_025">手機格式不正確</string>
<string name="bean_response_serviceresult_026">每周只能提現2次</string>
<string name="xchat_android_core_bean_roomnewbiemessageinfo_01">談戀愛太麻煩了,以後就麻煩你了</string>
<string name="xchat_android_core_bean_roomnewbiemessageinfo_02">我是為你而來,不在乎穿越綿綿山脈</string>
<string name="xchat_android_core_bean_roomnewbiemessageinfo_03">我想你了,是那種要見一面緊緊抱住的那種</string>
<string name="xchat_android_core_bean_roomnewbiemessageinfo_04">溫柔是寶藏,你也是</string>
<string name="xchat_android_core_bean_roomnewbiemessageinfo_05">我喜歡在你的世界亂逛,丟了也不怕</string>
<string name="bills_bean_incomeinfo_01">測試</string>
<string name="decoration_backgroud_backgroundmodel_01">購買成功.</string>
<string name="decoration_backgroud_backgroundmodel_02">贈送成功.</string>
<string name="decoration_car_carmodel_01">沒有Uid</string>
<string name="decoration_car_carmodel_02">購買座駕成功</string>
<string name="decoration_car_carmodel_03">贈送成功</string>
<string name="decoration_car_carmodel_04">贈送座駕成功</string>
<string name="decoration_headwear_headwearmodel_01">使用成功</string>
<string name="decoration_headwear_headwearmodel_02">購買成功.</string>
<string name="decoration_headwear_headwearmodel_03">購買頭飾成功</string>
<string name="decoration_headwear_headwearmodel_04">贈送成功.</string>
<string name="decoration_headwear_headwearmodel_05">贈送座駕成功</string>
<string name="decoration_headwear_headwearmodel_06">使用成功</string>
<string name="decoration_headwear_headwearmodel_07">使用成功</string>
<string name="nameplate_bean_nameplateinfo_01">天龍八部</string>
<string name="decoration_nameplate_nameplatemodel_01">使用成功</string>
<string name="yizhuan_xchat_android_core_env_01">請輸入正確的環境</string>
<string name="yizhuan_xchat_android_core_env_02">請輸入正確的環境</string>
<string name="yizhuan_xchat_android_core_env_03">請先初始化環境</string>
<string name="bean_response_rankingfamilyinfo_01">很無奈</string>
<string name="bean_response_rankingfamilyinfo_02">歡樂豆</string>
<string name="family_model_familymodel_01">用戶登錄成功後....</string>
<string name="family_model_familymodel_02">用戶登出成功後....</string>
<string name="family_model_familymodel_03">沒有UID</string>
<string name="family_model_familymodel_04">同步成功</string>
<string name="family_model_familymodel_05">找不到uid</string>
<string name="family_model_familymodel_06">沒有家族.</string>
<string name="family_model_familymodel_07">沒加入家族中...</string>
<string name="family_model_familymodel_08">沒有uid</string>
<string name="family_model_familymodel_09">獲取用戶信息出錯了..</string>
<string name="family_model_familymodel_010">已退出家族</string>
<string name="family_model_familymodel_011">找不到uid</string>
<string name="family_model_familymodel_012">沒有uid</string>
<string name="family_model_familymodel_013">沒有uid</string>
<string name="family_model_familymodel_014">獲取不到用戶信息</string>
<string name="family_model_familymodel_015">沒有uid</string>
<string name="family_model_familymodel_016">沒找到uid</string>
<string name="family_model_familymodel_017">踢出成功</string>
<string name="family_model_familymodel_018">獲取不到 uid</string>
<string name="family_model_familymodel_019">修改成功</string>
<string name="family_model_familymodel_020">找不到uid</string>
<string name="family_model_familymodel_021">找不到uid</string>
<string name="family_model_familymodel_022">找不到uid</string>
<string name="family_model_familymodel_023">沒有uid</string>
<string name="family_model_familymodel_024">加入群聊成功</string>
<string name="family_model_familymodel_025">沒有uid</string>
<string name="family_model_familymodel_026">找不到uid</string>
<string name="family_model_familymodel_027">貢獻成功!</string>
<string name="family_model_familymodel_028">找不到uid</string>
<string name="family_model_familymodel_029">沒有uid</string>
<string name="family_model_familymodel_030">沒有uid</string>
<string name="xchat_android_core_file_filemodel_01"> 為空或者該文件不存在!</string>
<string name="xchat_android_core_file_filemodel_02"> 為空或者該文件不存在!</string>
<string name="xchat_android_core_file_filemodel_03">上傳成功</string>
<string name="xchat_android_core_file_filemodel_04">七牛上傳</string>
<string name="gift_bean_giftknapinfo_01">冰淇淋</string>
<string name="im_chatterbox_chatterboxhelper_01">網絡異常</string>
<string name="im_chatterbox_chatterboxhelper_02">需要對方完成後,才能再次發起哦</string>
<string name="custom_bean_customattachparser_01">未定義的first,請現在CustomAttachParser中解析first=</string>
<string name="custom_bean_nobleattachment_01">收到貴族相關信息:%s</string>
<string name="custom_bean_roomboxprizeattachment_01">未知</string>
<string name="custom_bean_roomtipattachment_01">某某</string>
<string name="im_friend_imfriendmodel_01">沒有好友.</string>
<string name="im_friend_imfriendmodel_02">頁碼從1開始</string>
<string name="im_friend_imfriendmodel_03">每頁大小必須大於1 pageSize >= 1</string>
<string name="xchat_android_core_initial_initialmodel_01">已經請求成功了!</string>
<string name="xchat_android_core_initial_initialmodel_02">獲取不到初始化信息</string>
<string name="xchat_android_core_initial_initialmodel_03">首頁</string>
<string name="xchat_android_core_initial_initialmodel_04">論壇</string>
<string name="xchat_android_core_initial_initialmodel_05">賽事</string>
<string name="xchat_android_core_initial_initialmodel_06">消息</string>
<string name="xchat_android_core_initial_initialmodel_07">我的</string>
<string name="xchat_android_core_magic_magicmodel_01">房間信息或者收到魔法為空</string>
<string name="xchat_android_core_magic_magicmodel_02">房間信息或者收到魔法為空</string>
<string name="xchat_android_core_magic_magicmodel_03">房間信息或者收到魔法為空</string>
<string name="xchat_android_core_magic_magicmodel_04">獲取魔法列表失敗,未知錯誤</string>
<string name="xchat_android_core_magic_magicmodel_05">獲取魔法列表失敗,魔法列表信息為null</string>
<string name="xchat_android_core_magic_magicmodel_06">獲取魔法列表失敗,錯誤碼:</string>
<string name="xchat_android_core_magic_magicmodel_07">獲取魔法墻失敗,未知錯誤</string>
<string name="xchat_android_core_magic_magicmodel_08">獲取魔法墻失敗,魔法墻信息為null</string>
<string name="xchat_android_core_magic_magicmodel_09">獲取魔法墻失敗,錯誤碼:</string>
<string name="xchat_android_core_manager_avroomdatamanager_01">萌新求關註!</string>
<string name="xchat_android_core_manager_avroomdatamanager_02">你們在聊什麽呀?</string>
<string name="xchat_android_core_manager_avroomdatamanager_03">這個怎麽玩呀?</string>
<string name="xchat_android_core_manager_avroomdatamanager_04">我要上麥</string>
<string name="xchat_android_core_manager_avroomdatamanager_05">---------清除AvRoomDataManager數據完成---------</string>
<string name="xchat_android_core_manager_avroomdatamanager_06">TA已經不在房間了</string>
<string name="xchat_android_core_manager_avroomdatamanager_07">網絡異常, code = </string>
<string name="xchat_android_core_manager_basemvpmodel_01">未知錯誤!</string>
<string name="xchat_android_core_manager_basemvpmodel_02">網絡錯誤</string>
<string name="xchat_android_core_manager_basemvpmodel_03">請求超時</string>
<string name="xchat_android_core_manager_imsystemmsgmanager_01">任務一開始</string>
<string name="xchat_android_core_manager_imsystemmsgmanager_02">任務一完成</string>
<string name="xchat_android_core_manager_imsystemmsgmanager_03">任務二開始</string>
<string name="xchat_android_core_manager_imsystemmsgmanager_04">任務三開始</string>
<string name="xchat_android_core_manager_imsystemmsgmanager_05">任務四開始</string>
<string name="xchat_android_core_manager_imsystemmsgmanager_06">收徒成功</string>
<string name="xchat_android_core_manager_imsystemmsgmanager_07">收徒失敗</string>
<string name="xchat_android_core_manager_imsystemmsgmanager_08">師徒推送</string>
<string name="monsterhunting_model_monsterhuntingmodel_01">房間信息為空</string>
<string name="monsterhunting_model_monsterhuntingmodel_02">房間信息或者收到魔法為空</string>
<string name="monsterhunting_model_monsterhuntingmodel_03">全局廣播:</string>
<string name="monsterhunting_model_monsterhuntingmodel_04">廣播</string>
<string name="xchat_android_core_noble_nobledatamanager_01">下載貴族資源失敗</string>
<string name="xchat_android_core_noble_nobleprotocol_01">皇帝</string>
<string name="pay_bean_chargebean_01">600鉆石</string>
<string name="xchat_android_core_pay_paymodel_01">成功</string>
<string name="xchat_android_core_pay_paymodel_02">成功</string>
<string name="xchat_android_core_pay_paymodel_03">不需要toast提示的錯誤</string>
<string name="xchat_android_core_praise_praisemodel_01">點贊成功</string>
<string name="xchat_android_core_praise_praisemodel_02">取消點贊成功</string>
<string name="xchat_android_core_praise_praisemodel_03">成功</string>
<string name="radish_signin_signinmodel_01">分享連接獲取失敗</string>
<string name="radish_signin_signinmodel_02">分享統計接口</string>
<string name="radish_signin_signinmodel_03">分享統計接口</string>
<string name="radish_signin_signinmodel_04">補簽成功, 區分第幾次補簽:</string>
<string name="task_bean_prizeanim_01">鉆石x</string>
<string name="radish_task_taskmodel_01">領取成功</string>
<string name="xchat_android_core_recall_recallmodel_01">回歸禮已發放至我的裝扮</string>
<string name="redpacket_bean_actiondialoginfo_01">紅包小能手</string>
<string name="auction_bean_auctioninfo_01">暫無競拍描述</string>
<string name="room_bean_roominfo_01">牌照房</string>
<string name="room_bean_roominfo_02">新秀房</string>
<string name="room_bean_roominfo_03">普通房</string>
<string name="room_bean_roominfo_04">交談</string>
<string name="room_bean_roominfo_05">心動選人</string>
<string name="room_bean_roominfo_06">公布心動</string>
<string name="room_bean_roominfo_07">結束</string>
<string name="room_bean_roomrankhalfhourdatainfo_01">短發情長</string>
<string name="room_bean_roomrankhalfhourdatainfo_02">杳鳶</string>
<string name="room_bean_roomrankhalfhourdatainfo_03">稍微。</string>
<string name="room_bean_roomrankhalfhourdatainfo_04">abc123😄呃呃呃</string>
<string name="room_bean_roomsettingtabinfo_01">新秀</string>
<string name="room_bean_roomsettingtabinfo_02">邂逅</string>
<string name="room_bean_roomsettingtabinfo_03">交友</string>
<string name="room_bean_roomsettingtabinfo_04">娛樂</string>
<string name="room_bean_roomsettingtabinfo_05">音樂</string>
<string name="room_bean_roomsettingtabinfo_06">電臺</string>
<string name="room_bean_roomsettingtabinfo_07">邂逅</string>
<string name="room_bean_welcomeinfo_01">歡迎</string>
<string name="room_dragonball_dragonballmodel_01">清除桌球成功。</string>
<string name="giftvalue_helper_giftvalueformat_01">9999萬+</string>
<string name="giftvalue_helper_giftvalueformat_02"></string>
<string name="room_model_avroommodel_01">退出房間 RoomInfo = null 沒有房間信息</string>
<string name="room_model_avroommodel_02">開房</string>
<string name="room_model_avroommodel_03">用戶在麥上</string>
<string name="room_model_avroommodel_04">在房間內停留時長</string>
<string name="room_model_avroommodel_05">quitUserRoom 通知服務端退出房間成功:</string>
<string name="room_model_avroommodel_06">quitUserRoom 通知服務端退出房間失敗:</string>
<string name="room_model_avroommodel_07">進入房間獲取固定成員成功,人數:</string>
<string name="room_model_avroommodel_08">進入房間獲取遊客成員成功,人數:</string>
<string name="room_model_homepartyuserlistmodel_01">第%1d頁遊客在線人數:%2d</string>
<string name="room_model_homepartyuserlistmodel_02">循環處理在線順序列表耗時:</string>
<string name="room_model_roombasemodel_01">該麥位已經有人了哦~</string>
<string name="room_model_roombasemodel_02">該麥位已經有人了</string>
<string name="room_model_roombasemodel_03">上麥導致下麥失敗</string>
<string name="room_model_roombasemodel_04">上麥導致下麥失敗</string>
<string name="room_model_roombasemodel_05">該方法只能更新自己的麥序,不要更新別人的麥序信息。</string>
<string name="room_model_roombasemodel_06">更新麥序額外字段成功 code:</string>
<string name="room_model_roombasemodel_07">更新成功</string>
<string name="room_model_roombasemodel_08">更新麥序額外字段失敗 code:</string>
<string name="room_model_roombasemodel_09">更新麥序額外字段失敗 code:</string>
<string name="room_model_roombasemodel_010">更新成功</string>
<string name="room_model_roombasemodel_011">更新失敗</string>
<string name="room_model_roombasemodel_012">更新異常</string>
<string name="room_model_roombasemodel_013">錯誤碼:</string>
<string name="room_model_roombasemodel_014">的房間</string>
<string name="room_model_roomcontributelistmodel_01">當前房間信息為null</string>
<string name="room_model_roomsettingmodel_01">邀請成功</string>
<string name="room_model_roomsettingmodel_02">開啟成功</string>
<string name="room_model_roomsettingmodel_03">關閉成功</string>
<string name="pk_model_pkmodel_01">沒有房間信息</string>
<string name="pk_model_pkmodel_02">無當前登錄賬戶uid</string>
<string name="pk_model_pkmodel_03">開啟pk模式成功</string>
<string name="pk_model_pkmodel_04">沒有房間信息</string>
<string name="pk_model_pkmodel_05">無當前登錄賬戶uid</string>
<string name="pk_model_pkmodel_06">關閉pk模式成功</string>
<string name="pk_model_pkmodel_07">沒有房間信息</string>
<string name="pk_model_pkmodel_08">無當前登錄賬戶uid</string>
<string name="pk_model_pkmodel_09">沒有房間信息</string>
<string name="pk_model_pkmodel_010">無當前登錄賬戶uid</string>
<string name="pk_model_pkmodel_011">沒有房間信息</string>
<string name="pk_model_pkmodel_012">無當前登錄賬戶uid</string>
<string name="pk_model_pkmodel_013">無數據</string>
<string name="pk_model_pkmodel_014">沒有房間信息</string>
<string name="pk_model_pkmodel_015">無當前登錄賬戶uid</string>
<string name="pk_model_pkmodel_016">創建PK成功</string>
<string name="pk_model_pkmodel_017">沒有房間信息</string>
<string name="pk_model_pkmodel_018">PK沒有創建或者PK狀態異常</string>
<string name="pk_model_pkmodel_019">PK還沒準備好</string>
<string name="pk_model_pkmodel_020">開始PK成功</string>
<string name="pk_model_pkmodel_021">沒有創建PK</string>
<string name="pk_model_pkmodel_022">邀請上麥成功</string>
<string name="pk_model_pkmodel_023">PK結束已經發送過來。</string>
<string name="pk_model_pkmodel_024">沒有原來的PK信息</string>
<string name="pk_model_pkmodel_025">PK還沒準備好</string>
<string name="pk_model_pkmodel_026">成功</string>
<string name="pk_model_pkmodel_027">PK還沒準備好</string>
<string name="pk_model_pkmodel_028">沒有創建PK</string>
<string name="queue_bean_consumeinfo_01">呆萌小熊貓</string>
<string name="queue_bean_consumeinfo_02">周冬雨的凝視</string>
<string name="queue_bean_consumeinfo_03">豆子一號</string>
<string name="queue_bean_consumeinfo_04">納尼</string>
<string name="queue_bean_consumeinfo_05">清涼小西瓜</string>
<string name="queue_bean_consumeinfo_06">🐬□詩涵</string>
<string name="xchat_android_core_settings_settingsmodel_01">設置不提醒用戶出錯code=</string>
<string name="xchat_android_core_share_sharemodel_01">分享成功</string>
<string name="xchat_android_core_share_sharemodel_02">分享失敗,請重試</string>
<string name="xchat_android_core_share_sharemodel_03">分享取消</string>
<string name="team_bean_teammemberinfo_01">群主</string>
<string name="team_bean_teammemberinfo_02">管理員</string>
<string name="team_bean_teammemberinfo_03">普通成員</string>
<string name="team_model_teammodel_01">創建成功。</string>
<string name="team_model_teammodel_02">刪除成功。</string>
<string name="team_model_teammodel_03">推出群組成功。</string>
<string name="team_model_teammodel_04">添加成功。</string>
<string name="team_model_teammodel_05">設置成功。</string>
<string name="team_model_teammodel_06">無家族信息.</string>
<string name="team_model_teammodel_07">設置成功。</string>
<string name="team_model_teammodel_08">設置成功。</string>
<string name="team_model_teammodel_09">設置成功。</string>
<string name="team_model_teammodel_010">設置成功。</string>
<string name="user_bean_livetaginfo_01">王者</string>
<string name="user_bean_userdetailinfo_01">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_02">棒棒糖</string>
<string name="user_bean_userdetailinfo_03">人生不如意之事 十之八九\n放下才是解脫</string>
<string name="user_bean_userdetailinfo_04">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_05">努力,才能保證你的價值🌹🌷💐🥀🍂🍁🌼🌸🌺🍃🌾🌱🌾🎍🌵🌵🌿🍀🌳🌳💐🌻🌷🌻</string>
<string name="user_bean_userdetailinfo_06">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_07">盤他</string>
<string name="user_bean_userdetailinfo_08">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_09">鐵汁,奧力給,沒毛病吧?!</string>
<string name="user_bean_userdetailinfo_010">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_011">上熱門🦆</string>
<string name="user_bean_userdetailinfo_012">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_013">棒棒糖</string>
<string name="user_bean_userdetailinfo_014">人生不如意之事 十之八九\n放下才是解脫</string>
<string name="user_bean_userdetailinfo_015">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_016">努力,才能保證你的價值🌹🌷💐🥀🍂🍁🌼🌸🌺🍃🌾🌱🌾🎍🌵🌵🌿🍀🌳🌳💐🌻🌷🌻</string>
<string name="user_bean_userdetailinfo_017">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_018">盤他</string>
<string name="user_bean_userdetailinfo_019">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_020">鐵汁,奧力給,沒毛病吧?!</string>
<string name="user_bean_userdetailinfo_021">大幽魂上衣</string>
<string name="user_bean_userdetailinfo_022">上熱門🦆</string>
<string name="user_bean_userdetailinfo_023">大幽魂上衣</string>
<string name="xchat_android_core_user_usermodel_01">沒有當前登錄的uid</string>
<string name="xchat_android_core_user_usermodel_02">沒有當前登錄的uid</string>
<string name="xchat_android_core_user_usermodel_03">服務器返回的userInfo字段為空</string>
<string name="xchat_android_core_user_usermodel_04">uid不合法</string>
<string name="xchat_android_core_user_usermodel_05">服務器返回的userInfo字段為空</string>
<string name="xchat_android_core_user_usermodel_06">服務器返回的userInfo字段為空</string>
<string name="xchat_android_core_user_usermodel_07">沒有找到用戶信息</string>
<string name="xchat_android_core_user_usermodel_08">用戶uid為空</string>
<string name="xchat_android_core_user_usermodel_09">重置成功</string>
<string name="xchat_android_core_user_usermodel_010">設置成功</string>
<string name="xchat_android_core_utils_asynctaskscanmusicfile_01">i音樂/歌曲/</string>
<string name="xchat_android_core_utils_logutils_01">ClassName:%s \nMethodName:%s \nMethodLine:%d \n當前是第%d個 \n---------------------------- \n </string>
<string name="utils_net_beanobserver_01">網絡異常</string>
<string name="utils_net_beanobserver_02">網絡錯誤</string>
<string name="utils_net_beanobserver_03">網絡異常,請檢查您的網絡再試~</string>
<string name="utils_net_beanobserver_04">數據解析異常</string>
<string name="utils_net_beanobserver_05">參數錯誤</string>
<string name="utils_net_errorconsumer_01">服務器內部錯誤</string>
<string name="utils_net_errorconsumer_02">網絡錯誤,請稍後再試...</string>
<string name="utils_net_errorconsumer_03">網絡錯誤,請稍後再試...</string>
<string name="utils_net_rxextension_01">成功情況下接口返回data字段可以為空不適合使用此方法脫掉外層。</string>
<string name="utils_net_rxextension_02">未知錯誤</string>
<string name="utils_net_rxextension_03">成功</string>
<string name="utils_net_rxextension_04">未知錯誤</string>
<string name="utils_net_rxextension_05">網絡異常,請檢查您的網絡再試...</string>
<string name="utils_net_rxextension_06">網絡異常,請檢查你的網絡再試</string>
<string name="utils_net_rxhelper_01">成功情況下接口返回data字段可以為空不適合使用此方法脫掉外層。</string>
<string name="utils_net_rxhelper_02">成功情況下接口返回data字段可以為空不適合使用此方法脫掉外層。</string>
<string name="utils_net_rxhelper_03">接口返回的data字段為空了且NullHandle.createT沒有返回T對象</string>
<string name="utils_net_rxhelper_04">成功</string>
<string name="utils_net_rxhelper_05">網絡異常,請稍後再試!</string>
<string name="utils_net_rxhelper_06">網絡錯誤</string>
<string name="xchat_android_core_utils_oldhttperrorhandleutil_01">Hiyoo開小差中~請稍後再試</string>
<string name="xchat_android_core_utils_oldhttperrorhandleutil_02">網絡異常,請檢查您的網絡再試!</string>
<string name="xchat_android_core_utils_starutils_01"></string>
<string name="xchat_android_core_utils_starutils_02"></string>
<string name="xchat_android_core_utils_starutils_03"></string>
<string name="xchat_android_core_utils_starutils_04"></string>
<string name="xchat_android_core_utils_starutils_05"></string>
<string name="xchat_android_core_utils_starutils_06"></string>
<string name="xchat_android_core_utils_starutils_07"></string>
<string name="xchat_android_core_utils_starutils_08"></string>
<string name="xchat_android_core_utils_starutils_09"></string>
<string name="xchat_android_core_utils_starutils_010"></string>
<string name="xchat_android_core_utils_starutils_011"></string>
<string name="xchat_android_core_utils_starutils_012"></string>
<string name="xchat_android_core_utils_starutils_013">水瓶座</string>
<string name="xchat_android_core_utils_starutils_014">雙魚座</string>
<string name="xchat_android_core_utils_starutils_015">白羊座</string>
<string name="xchat_android_core_utils_starutils_016">金牛座</string>
<string name="xchat_android_core_utils_starutils_017">雙子座</string>
<string name="xchat_android_core_utils_starutils_018">巨蟹座</string>
<string name="xchat_android_core_utils_starutils_019">獅子座</string>
<string name="xchat_android_core_utils_starutils_020">處女座</string>
<string name="xchat_android_core_utils_starutils_021">天秤座</string>
<string name="xchat_android_core_utils_starutils_022">天蠍座</string>
<string name="xchat_android_core_utils_starutils_023">射手座</string>
<string name="xchat_android_core_utils_starutils_024">魔羯座</string>
<string name="xchat_android_core_utils_starutils_025">小時</string>
<string name="xchat_android_core_utils_starutils_026"></string>
<string name="xchat_android_core_utils_stringutils_01">分鐘前</string>
<string name="xchat_android_core_utils_stringutils_02">小時前</string>
<string name="xchat_android_core_utils_stringutils_03">分鐘前</string>
<string name="xchat_android_core_utils_stringutils_04">小時前</string>
<string name="xchat_android_core_utils_stringutils_05">昨天</string>
<string name="xchat_android_core_utils_stringutils_06">前天</string>
<string name="xchat_android_core_utils_stringutils_07">天前</string>
<string name="xchat_android_core_utils_stringutils_08">周一</string>
<string name="xchat_android_core_utils_stringutils_09">周二</string>
<string name="xchat_android_core_utils_stringutils_010">周三</string>
<string name="xchat_android_core_utils_stringutils_011">周四</string>
<string name="xchat_android_core_utils_stringutils_012">周五</string>
<string name="xchat_android_core_utils_stringutils_013">周六</string>
<string name="xchat_android_core_utils_stringutils_014">周日</string>
<string name="web_bean_webjsbeaninfo_01">常見問題</string>
<string name="xchat_android_core_withdraw_withdrawmodel_01">綁定成功</string>
<string name="bank_card_bean_bankcardlistresp_01">中國光大銀行</string>
<string name="bank_card_bean_bankcardlistresp_02">儲蓄卡</string>
<string name="community_download_downloadmodel_01">下載失敗</string>
<string name="community_download_downloadmodel_02">下載失敗</string>
<string name="community_dynamic_dynamicdetailmodel_01">回復評論</string>
<string name="community_dynamic_dynamicmodel_01">話題客態頁</string>
<string name="community_dynamic_dynamicmodel_02">個人主頁</string>
<string name="community_dynamic_dynamicmodel_03">動態詳情</string>
<string name="community_dynamic_dynamicmodel_04">動態廣場</string>
<string name="community_dynamic_dynamicmodel_05">點贊動態-區分-</string>
<string name="community_dynamic_dynamicmodel_06">點贊動態的次數,區分話題-</string>
<string name="community_dynamic_dynamicmodel_07">點贊動態的次數,區分-</string>
<string name="community_dynamic_dynamicmodel_08">點贊</string>
<string name="community_dynamic_dynamicmodel_09">取消贊</string>
<string name="module_hall_hall_hallmodel_01">公會成員啟動應用</string>
<string name="module_hall_hall_hallmodel_02">發送成功,請耐心等待</string>
<string name="module_hall_hall_hallmodel_03">移除廳成員成功</string>
<string name="module_hall_hall_hallmodel_04">您的申請已提交</string>
<string name="module_hall_hall_hallmodel_05">邀請成功</string>
<string name="module_hall_secretcode_secretcodemodel_01">加入廳成功</string>
<string name="module_hall_team_hteammodel_01">操作成功</string>
<string name="module_hall_team_hteammodel_02">操作成功</string>
<string name="module_hall_team_hteammodel_03">設置管理員成功</string>
<string name="module_hall_team_hteammodel_04">取消管理員成功</string>
<string name="module_hall_team_hteammodel_05">禁言成功</string>
<string name="module_hall_team_hteammodel_06">取消禁言成功</string>
<string name="module_hall_team_hteammodel_07">踢出成功</string>
<string name="module_hall_team_hteammodel_08">添加成功</string>
<string name="module_hall_team_hteammodel_09">解散群聊成功</string>
<string name="module_hall_team_hteammodel_010">退出群聊成功</string>
<string name="module_hall_team_hteammodel_011">加入群聊成功</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_01">小決絕</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_02">伯爵</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_03">白金Lv5</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_04">初出茅廬LV3</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_05">高階石頭</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_06">小決絕</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_07">伯爵</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_08">白金Lv5</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_09">初出茅廬LV3</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_010">高階石頭</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_011">伯爵</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_012">白金Lv5</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_013">初出茅廬LV3</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_014">高階石頭</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_015">伯爵</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_016">白金Lv5</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_017">初出茅廬LV3</string>
<string name="mentoring_relationship_bean_mentoringrankingdatainfo_018">高階石頭</string>
<string name="mentoring_relationship_bean_mentoringuserinfo_01">白金Lv5</string>
<string name="mentoring_relationship_bean_mentoringuserinfo_02">初出茅廬LV3</string>
<string name="mentoring_relationship_bean_mentoringuserinfo_03">高階石頭</string>
<string name="miniworld_model_miniworldmodel_01">我加入的</string>
<string name="miniworld_model_miniworldmodel_02">推薦</string>
<string name="miniworld_model_miniworldmodel_03">更改成功</string>
<string name="miniworld_model_miniworldmodel_04">網絡錯誤</string>
<string name="miniworld_model_miniworldmodel_05">網絡錯誤</string>
<string name="miniworld_model_miniworldmodel_06">成功</string>
<string name="miniworld_model_miniworldmodel_07">網絡錯誤</string>
<string name="miniworld_model_miniworldmodel_08">成功</string>
<string name="miniworld_model_miniworldmodel_09">網絡錯誤</string>
<string name="miniworld_model_miniworldmodel_010">成功</string>
<string name="miniworld_model_miniworldmodel_011">網絡錯誤</string>
<string name="music_model_sharemusiclistmodel_01">該資源已經廢棄了哦!試試別的吧</string>
<string name="music_model_sharemusiclistmodel_02">該共享音樂應該在本地</string>
<string name="music_model_sharemusiclistmodel_03">數據庫插入失敗</string>
<string name="public_chat_hall_bean_aitfriendsinfo_01">小明</string>
<string name="public_chat_hall_bean_aitfriendsinfo_02">小紅</string>
<string name="public_chat_hall_bean_publicchathallmessage_01">笨ww</string>
<string name="public_chat_hall_bean_publicchathallmessage_02">笨ww</string>
<string name="public_chat_hall_manager_publicchathalldatamanager_01">自定義消息:</string>
<string name="public_chat_hall_model_publicchathallmodel_01">成功</string>
<string name="public_chat_hall_model_publicchathallmodel_02">失敗</string>
<string name="public_chat_hall_model_publicchathallmodel_03">失敗</string>
<string name="xchat_android_core_code_codemodel_01">驗證碼已發送到您的手機,請註意查收</string>
<string name="xchat_android_core_code_codemodel_02">網絡錯誤</string>
<string name="xchat_android_core_code_codetype_01">非登錄態重置密碼</string>
<string name="xchat_android_core_code_codetype_02">登錄態重置密碼</string>
<string name="xchat_android_core_super_admin_saconstant_01">超管不能操作</string>
<string name="treasure_box_model_boxmodel_01">當前房間信息為空.</string>
<string name="treasure_box_model_boxmodel_02">余額不足</string>
<string name="treasure_box_model_radishmodel_01">當前房間信息為空.</string>
<string name="upgrade_model_upgrademodel_01">下載失敗</string>
<string name="upgrade_model_upgrademodel_02">下載失敗</string>
<string name="upgrade_model_upgrademodel_03">MD5驗證不通過</string>
<string name="upgrade_model_upgrademodel_04">沒有新版本下載信息</string>
<string name="upgrade_model_upgrademodel_05">正在下載中...</string>
<string name="upgrade_model_upgrademodel_06">下載中...</string>
<string name="upgrade_model_upgrademodel_07">已是最新版本</string>
<string name="not_install_app">未安裝該應用</string>
<string name="wechat_share_title">HABU-Making new friends,join HABU right now. </string>
<string name="wechat_share_content">Find and join the best groups,talk with strangers</string>
<string name="data_parsing_exception">數據解析異常</string>
<string name="parameter_error">參數錯誤</string>
</resources>

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,8 @@
package com.chwl.library.net.rxnet.exception
import android.util.Log
import com.chwl.library.R
import com.chwl.library.utils.ResUtil
import com.google.gson.JsonParseException
import org.json.JSONException
import retrofit2.HttpException
@@ -17,28 +19,28 @@ class ExceptionHandle {
companion object {
private const val TAG = "ExceptionHandle"
var errorMsg = "請求失敗,請稍後重試"
var errorMsg = ResUtil.getString(R.string.request_failed_again_later)
fun handleException(e: Throwable): String {
e.printStackTrace()
when (e) {
is SocketException, is SocketTimeoutException, is HttpException -> { //均视为网络错误
Log.e(TAG, "網絡連接異常: " + e.message)
errorMsg = "網絡異常,請檢查您的網絡再試~"
errorMsg = ResUtil.getString(R.string.network_abnormality_check_again)
}
is JsonParseException, is JSONException, is ParseException -> { //均视为解析错误
Log.e(TAG, "數據解析異常: " + e.message)
errorMsg = "數據解析異常"
errorMsg = ResUtil.getString(R.string.data_parsing_exception)
}
is ApiException -> {//服务器返回的错误信息
errorMsg = e.message.toString()
}
is UnknownHostException -> {
Log.e(TAG, "網絡連接異常: " + e.message)
errorMsg = "網絡異常,請檢查您的網絡再試~"
errorMsg = ResUtil.getString(R.string.network_abnormality_check_again)
}
is IllegalArgumentException -> {
errorMsg = "參數錯誤"
errorMsg = ResUtil.getString(R.string.parameter_error)
}
else -> {//未知错误
try {

View File

@@ -0,0 +1,127 @@
<!DOCTYPE resources [<!ENTITY app_name "Hiyoo" >]>
<resources>
<string name="app_name">&app_name;</string>
<string name="str_right_now">剛剛</string>
<string name="str_today">今天</string>
<string name="str_yesterday">昨天</string>
<string name="str_day_before_yesterday">前天</string>
<string name="str_short_date_format">%1$d月%2$d日</string>
<string name="str_date_format">%1$d年%2$d月%3$d日</string>
<string name="str_minutes_ago_format">%1$d分鐘前</string>
<string name="str_hours_ago_format">%1$d小時前</string>
<string name="base_factory_basemvpproxy_01">這個方法只能在getMvpPresenter()之前調用如果Presenter已經創建了則不能再更改</string>
<string name="base_factory_presentermvpfactoryimpl_01">Presenter 創建失敗,檢查是否聲明了@CreatePresenter(xxx.class)註解!!!----</string>
<string name="rxnet_interceptor_httpcacheinterceptor_01">沒有網絡,強製獲取緩存!</string>
<string name="net_rxnet_rxnet_01">請在項目中先調用RxNet.init()方法初始化!!!</string>
<string name="xchat_android_library_service_erbanservice_01">開始後臺任務......%d</string>
<string name="xchat_android_library_service_erbanservice_02">執行刪除日誌文件</string>
<string name="xchat_android_library_service_erbanservice_03">成功</string>
<string name="xchat_android_library_service_erbanservice_04">失敗</string>
<string name="xchat_android_library_service_erbanservice_05">停止後臺任務......%d</string>
<string name="xchat_android_library_threadmgr_schedulepolicy_01">單線程池並發過高執行拋棄策略</string>
<string name="xchat_android_library_threadmgr_speakpolicy_01">光暈並發過高執行拋棄策略</string>
<string name="utils_cache_stringdiskcache_01">:BufferedOutputStream執行耗時:</string>
<string name="utils_cache_stringdiskcache_02"> 豪秒</string>
<string name="utils_codec_desutils_01">text DES加密後base64</string>
<string name="utils_codec_desutils_02">未處理原文:</string>
<string name="utils_codec_desutils_03">解密後數據:</string>
<string name="utils_download_downloadmanagerutil_01">正在下載</string>
<string name="utils_download_downloadreceiver_01">已經取消下載</string>
<string name="utils_file_basicfileutils_01">遍歷到限製最大層數了</string>
<string name="utils_file_basicfileutils_02">目錄包含非標準文件</string>
<string name="utils_file_basicfileutils_03">目錄為空</string>
<string name="utils_file_storageutils_01">過濾得到的mout表信息:</string>
<string name="utils_file_storageutils_02">過濾子目錄後得到的mout信息:</string>
<string name="utils_file_storageutils_03">過濾相同目錄後得到的mout信息:</string>
<string name="utils_file_storageutils_04">[掛載點 device:%s;path:%s;size:%s;type:%s]</string>
<string name="xchat_android_library_utils_formatutils_01"></string>
<string name="xchat_android_library_utils_formatutils_02"></string>
<string name="xchat_android_library_utils_formatutils_03"></string>
<string name="xchat_android_library_utils_formatutils_04">格式化異常。</string>
<string name="xchat_android_library_utils_formatutils_05"></string>
<string name="utils_image_jximageutils_01">原圖:</string>
<string name="utils_image_jximageutils_02">原圖旋轉角度:</string>
<string name="utils_image_jximageutils_03">寬高,</string>
<string name="utils_image_jximageutils_04">壓縮前質量:</string>
<string name="utils_image_jximageutils_05">壓縮參數:</string>
<string name="utils_image_jximageutils_06">壓縮圖旋轉角度:</string>
<string name="utils_image_jximageutils_07">壓縮失敗...</string>
<string name="utils_image_jximageutils_08">壓縮圖片OOM了</string>
<string name="xchat_android_library_utils_javautil_01">parseLong錯誤</string>
<string name="xchat_android_library_utils_javautil_02">parseInt錯誤</string>
<string name="xchat_android_library_utils_javautil_03">str2double錯誤</string>
<string name="xchat_android_library_utils_javautil_04">str2double2len錯誤</string>
<string name="xchat_android_library_utils_javautil_05">str2double0len錯誤</string>
<string name="xchat_android_library_utils_javautil_06">parseFloat錯誤</string>
<string name="xchat_android_library_utils_javautil_07"></string>
<string name="xchat_android_library_utils_javautil_08"></string>
<string name="xchat_android_library_utils_javautil_09"></string>
<string name="xchat_android_library_utils_javautil_010"></string>
<string name="xchat_android_library_utils_javautil_011"></string>
<string name="xchat_android_library_utils_javautil_012"></string>
<string name="xchat_android_library_utils_javautil_013"></string>
<string name="xchat_android_library_utils_javautil_014"></string>
<string name="xchat_android_library_utils_macaddressutils_01">6.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_02">6.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_03">6.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_04">6.0以上7.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_05">6.0以上7.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_06">6.0以上7.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_07">7.0以上</string>
<string name="xchat_android_library_utils_macaddressutils_08">7.0以上1</string>
<string name="xchat_android_library_utils_macaddressutils_09">7.0以上1</string>
<string name="xchat_android_library_utils_macaddressutils_010">7.0以上1</string>
<string name="xchat_android_library_utils_macaddressutils_011">7.0以上2</string>
<string name="xchat_android_library_utils_macaddressutils_012">7.0以上2</string>
<string name="xchat_android_library_utils_macaddressutils_013">7.0以上2</string>
<string name="xchat_android_library_utils_macaddressutils_014">7.0以上3</string>
<string name="xchat_android_library_utils_macaddressutils_015">7.0以上3</string>
<string name="xchat_android_library_utils_macaddressutils_016">7.0以上3</string>
<string name="xchat_android_library_utils_macaddressutils_017">網絡異常</string>
<string name="xchat_android_library_utils_nullutils_01"> 不能為null !</string>
<string name="utils_pref_xsharedpref_01">保存obj失敗</string>
<string name="xchat_android_library_utils_telephonyutils_01">中國移動</string>
<string name="xchat_android_library_utils_telephonyutils_02">中國電信</string>
<string name="xchat_android_library_utils_telephonyutils_03">中國聯通</string>
<string name="xchat_android_library_utils_telephonyutils_04">未知</string>
<string name="xchat_android_library_utils_timeutils_01">摩羯座</string>
<string name="xchat_android_library_utils_timeutils_02">水瓶座</string>
<string name="xchat_android_library_utils_timeutils_03">水瓶座</string>
<string name="xchat_android_library_utils_timeutils_04">雙魚座</string>
<string name="xchat_android_library_utils_timeutils_05">雙魚座</string>
<string name="xchat_android_library_utils_timeutils_06">白羊座</string>
<string name="xchat_android_library_utils_timeutils_07">白羊座</string>
<string name="xchat_android_library_utils_timeutils_08">金牛座</string>
<string name="xchat_android_library_utils_timeutils_09">金牛座</string>
<string name="xchat_android_library_utils_timeutils_010">雙子座</string>
<string name="xchat_android_library_utils_timeutils_011">雙子座</string>
<string name="xchat_android_library_utils_timeutils_012">巨蟹座</string>
<string name="xchat_android_library_utils_timeutils_013">巨蟹座</string>
<string name="xchat_android_library_utils_timeutils_014">獅子座</string>
<string name="xchat_android_library_utils_timeutils_015">獅子座</string>
<string name="xchat_android_library_utils_timeutils_016">處女座</string>
<string name="xchat_android_library_utils_timeutils_017">處女座</string>
<string name="xchat_android_library_utils_timeutils_018">天秤座</string>
<string name="xchat_android_library_utils_timeutils_019">天秤座</string>
<string name="xchat_android_library_utils_timeutils_020">天蠍座</string>
<string name="xchat_android_library_utils_timeutils_021">天蠍座</string>
<string name="xchat_android_library_utils_timeutils_022">射手座</string>
<string name="xchat_android_library_utils_timeutils_023">射手座</string>
<string name="xchat_android_library_utils_timeutils_024">摩羯座</string>
<string name="xchat_android_library_utils_timeutils_025">工作時間內</string>
<string name="xchat_android_library_utils_timeutils_026">工作時間外</string>
<string name="xchat_android_library_utils_timeutils_027">工作時間內</string>
<string name="xchat_android_library_utils_timeutils_028">工作時間外</string>
<string name="xchat_android_library_utils_versionutil_01">內測版</string>
<string name="xchat_android_library_utils_ziputils_01">構建zip完整路徑成功: %s</string>
<string name="widget_xlist_familiardefaultitemdecoration_01">設置底部間距</string>
<string name="number_w">w</string>
<string name="request_failed_again_later">請求失敗,請稍後重試</string>
<string name="data_parsing_exception">數據解析異常</string>
<string name="network_abnormality_check_again">網絡異常,請檢查您的網絡再試~</string>
<string name="parameter_error">參數錯誤</string>
</resources>

View File

@@ -0,0 +1,127 @@
<!DOCTYPE resources [<!ENTITY app_name "Hiyoo" >]>
<resources>
<string name="app_name">&app_name;</string>
<string name="str_right_now">剛剛</string>
<string name="str_today">今天</string>
<string name="str_yesterday">昨天</string>
<string name="str_day_before_yesterday">前天</string>
<string name="str_short_date_format">%1$d月%2$d日</string>
<string name="str_date_format">%1$d年%2$d月%3$d日</string>
<string name="str_minutes_ago_format">%1$d分鐘前</string>
<string name="str_hours_ago_format">%1$d小時前</string>
<string name="base_factory_basemvpproxy_01">這個方法只能在getMvpPresenter()之前調用如果Presenter已經創建了則不能再更改</string>
<string name="base_factory_presentermvpfactoryimpl_01">Presenter 創建失敗,檢查是否聲明了@CreatePresenter(xxx.class)註解!!!----</string>
<string name="rxnet_interceptor_httpcacheinterceptor_01">沒有網絡,強製獲取緩存!</string>
<string name="net_rxnet_rxnet_01">請在項目中先調用RxNet.init()方法初始化!!!</string>
<string name="xchat_android_library_service_erbanservice_01">開始後臺任務......%d</string>
<string name="xchat_android_library_service_erbanservice_02">執行刪除日誌文件</string>
<string name="xchat_android_library_service_erbanservice_03">成功</string>
<string name="xchat_android_library_service_erbanservice_04">失敗</string>
<string name="xchat_android_library_service_erbanservice_05">停止後臺任務......%d</string>
<string name="xchat_android_library_threadmgr_schedulepolicy_01">單線程池並發過高執行拋棄策略</string>
<string name="xchat_android_library_threadmgr_speakpolicy_01">光暈並發過高執行拋棄策略</string>
<string name="utils_cache_stringdiskcache_01">:BufferedOutputStream執行耗時:</string>
<string name="utils_cache_stringdiskcache_02"> 豪秒</string>
<string name="utils_codec_desutils_01">text DES加密後base64</string>
<string name="utils_codec_desutils_02">未處理原文:</string>
<string name="utils_codec_desutils_03">解密後數據:</string>
<string name="utils_download_downloadmanagerutil_01">正在下載</string>
<string name="utils_download_downloadreceiver_01">已經取消下載</string>
<string name="utils_file_basicfileutils_01">遍歷到限製最大層數了</string>
<string name="utils_file_basicfileutils_02">目錄包含非標準文件</string>
<string name="utils_file_basicfileutils_03">目錄為空</string>
<string name="utils_file_storageutils_01">過濾得到的mout表信息:</string>
<string name="utils_file_storageutils_02">過濾子目錄後得到的mout信息:</string>
<string name="utils_file_storageutils_03">過濾相同目錄後得到的mout信息:</string>
<string name="utils_file_storageutils_04">[掛載點 device:%s;path:%s;size:%s;type:%s]</string>
<string name="xchat_android_library_utils_formatutils_01"></string>
<string name="xchat_android_library_utils_formatutils_02"></string>
<string name="xchat_android_library_utils_formatutils_03"></string>
<string name="xchat_android_library_utils_formatutils_04">格式化異常。</string>
<string name="xchat_android_library_utils_formatutils_05"></string>
<string name="utils_image_jximageutils_01">原圖:</string>
<string name="utils_image_jximageutils_02">原圖旋轉角度:</string>
<string name="utils_image_jximageutils_03">寬高,</string>
<string name="utils_image_jximageutils_04">壓縮前質量:</string>
<string name="utils_image_jximageutils_05">壓縮參數:</string>
<string name="utils_image_jximageutils_06">壓縮圖旋轉角度:</string>
<string name="utils_image_jximageutils_07">壓縮失敗...</string>
<string name="utils_image_jximageutils_08">壓縮圖片OOM了</string>
<string name="xchat_android_library_utils_javautil_01">parseLong錯誤</string>
<string name="xchat_android_library_utils_javautil_02">parseInt錯誤</string>
<string name="xchat_android_library_utils_javautil_03">str2double錯誤</string>
<string name="xchat_android_library_utils_javautil_04">str2double2len錯誤</string>
<string name="xchat_android_library_utils_javautil_05">str2double0len錯誤</string>
<string name="xchat_android_library_utils_javautil_06">parseFloat錯誤</string>
<string name="xchat_android_library_utils_javautil_07"></string>
<string name="xchat_android_library_utils_javautil_08"></string>
<string name="xchat_android_library_utils_javautil_09"></string>
<string name="xchat_android_library_utils_javautil_010"></string>
<string name="xchat_android_library_utils_javautil_011"></string>
<string name="xchat_android_library_utils_javautil_012"></string>
<string name="xchat_android_library_utils_javautil_013"></string>
<string name="xchat_android_library_utils_javautil_014"></string>
<string name="xchat_android_library_utils_macaddressutils_01">6.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_02">6.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_03">6.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_04">6.0以上7.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_05">6.0以上7.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_06">6.0以上7.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_07">7.0以上</string>
<string name="xchat_android_library_utils_macaddressutils_08">7.0以上1</string>
<string name="xchat_android_library_utils_macaddressutils_09">7.0以上1</string>
<string name="xchat_android_library_utils_macaddressutils_010">7.0以上1</string>
<string name="xchat_android_library_utils_macaddressutils_011">7.0以上2</string>
<string name="xchat_android_library_utils_macaddressutils_012">7.0以上2</string>
<string name="xchat_android_library_utils_macaddressutils_013">7.0以上2</string>
<string name="xchat_android_library_utils_macaddressutils_014">7.0以上3</string>
<string name="xchat_android_library_utils_macaddressutils_015">7.0以上3</string>
<string name="xchat_android_library_utils_macaddressutils_016">7.0以上3</string>
<string name="xchat_android_library_utils_macaddressutils_017">網絡異常</string>
<string name="xchat_android_library_utils_nullutils_01"> 不能為null !</string>
<string name="utils_pref_xsharedpref_01">保存obj失敗</string>
<string name="xchat_android_library_utils_telephonyutils_01">中國移動</string>
<string name="xchat_android_library_utils_telephonyutils_02">中國電信</string>
<string name="xchat_android_library_utils_telephonyutils_03">中國聯通</string>
<string name="xchat_android_library_utils_telephonyutils_04">未知</string>
<string name="xchat_android_library_utils_timeutils_01">摩羯座</string>
<string name="xchat_android_library_utils_timeutils_02">水瓶座</string>
<string name="xchat_android_library_utils_timeutils_03">水瓶座</string>
<string name="xchat_android_library_utils_timeutils_04">雙魚座</string>
<string name="xchat_android_library_utils_timeutils_05">雙魚座</string>
<string name="xchat_android_library_utils_timeutils_06">白羊座</string>
<string name="xchat_android_library_utils_timeutils_07">白羊座</string>
<string name="xchat_android_library_utils_timeutils_08">金牛座</string>
<string name="xchat_android_library_utils_timeutils_09">金牛座</string>
<string name="xchat_android_library_utils_timeutils_010">雙子座</string>
<string name="xchat_android_library_utils_timeutils_011">雙子座</string>
<string name="xchat_android_library_utils_timeutils_012">巨蟹座</string>
<string name="xchat_android_library_utils_timeutils_013">巨蟹座</string>
<string name="xchat_android_library_utils_timeutils_014">獅子座</string>
<string name="xchat_android_library_utils_timeutils_015">獅子座</string>
<string name="xchat_android_library_utils_timeutils_016">處女座</string>
<string name="xchat_android_library_utils_timeutils_017">處女座</string>
<string name="xchat_android_library_utils_timeutils_018">天秤座</string>
<string name="xchat_android_library_utils_timeutils_019">天秤座</string>
<string name="xchat_android_library_utils_timeutils_020">天蠍座</string>
<string name="xchat_android_library_utils_timeutils_021">天蠍座</string>
<string name="xchat_android_library_utils_timeutils_022">射手座</string>
<string name="xchat_android_library_utils_timeutils_023">射手座</string>
<string name="xchat_android_library_utils_timeutils_024">摩羯座</string>
<string name="xchat_android_library_utils_timeutils_025">工作時間內</string>
<string name="xchat_android_library_utils_timeutils_026">工作時間外</string>
<string name="xchat_android_library_utils_timeutils_027">工作時間內</string>
<string name="xchat_android_library_utils_timeutils_028">工作時間外</string>
<string name="xchat_android_library_utils_versionutil_01">內測版</string>
<string name="xchat_android_library_utils_ziputils_01">構建zip完整路徑成功: %s</string>
<string name="widget_xlist_familiardefaultitemdecoration_01">設置底部間距</string>
<string name="number_w">w</string>
<string name="request_failed_again_later">請求失敗,請稍後重試</string>
<string name="data_parsing_exception">數據解析異常</string>
<string name="network_abnormality_check_again">網絡異常,請檢查您的網絡再試~</string>
<string name="parameter_error">參數錯誤</string>
</resources>

View File

@@ -1,121 +1,126 @@
<!DOCTYPE resources [<!ENTITY app_name "Hiyoo" >]>
<!DOCTYPE resources [<!ENTITY app_name "Hiyoo">]>
<resources>
<string name="app_name">&app_name;</string>
<string name="str_right_now">剛剛</string>
<string name="str_today">今天</string>
<string name="str_yesterday">昨天</string>
<string name="str_day_before_yesterday">前天</string>
<string name="str_short_date_format">%1$d月%2$d日</string>
<string name="str_date_format">%1$d年%2$d月%3$d日</string>
<string name="str_minutes_ago_format">%1$d分鐘前</string>
<string name="str_hours_ago_format">%1$d小時前</string>
<string name="base_factory_basemvpproxy_01">這個方法只能在getMvpPresenter()之前調用如果Presenter已經創建了則不能再更改</string>
<string name="base_factory_presentermvpfactoryimpl_01">Presenter 創建失敗,檢查是否聲明了@CreatePresenter(xxx.class)註解!!!----</string>
<string name="rxnet_interceptor_httpcacheinterceptor_01">沒有網絡,強製獲取緩存!</string>
<string name="net_rxnet_rxnet_01">請在項目中先調用RxNet.init()方法初始化!!!</string>
<string name="xchat_android_library_service_erbanservice_01">開始後臺任務......%d</string>
<string name="xchat_android_library_service_erbanservice_02">執行刪除日誌文件</string>
<string name="xchat_android_library_service_erbanservice_03">成功</string>
<string name="xchat_android_library_service_erbanservice_04">失敗</string>
<string name="xchat_android_library_service_erbanservice_05">停止後臺任務......%d</string>
<string name="xchat_android_library_threadmgr_schedulepolicy_01">單線程池並發過高執行拋棄策略</string>
<string name="xchat_android_library_threadmgr_speakpolicy_01">光暈並發過高執行拋棄策略</string>
<string name="utils_cache_stringdiskcache_01">:BufferedOutputStream執行耗時:</string>
<string name="utils_cache_stringdiskcache_02"> 豪秒</string>
<string name="utils_codec_desutils_01">text DES加密後base64</string>
<string name="utils_codec_desutils_02">未處理原文:</string>
<string name="utils_codec_desutils_03">解密後數據:</string>
<string name="utils_download_downloadmanagerutil_01">正在下載</string>
<string name="utils_download_downloadreceiver_01">已經取消下載</string>
<string name="utils_file_basicfileutils_01">遍歷到限製最大層數了</string>
<string name="utils_file_basicfileutils_02">目錄包含非標準文件</string>
<string name="utils_file_basicfileutils_03">目錄為空</string>
<string name="utils_file_storageutils_01">過濾得到的mout表信息:</string>
<string name="utils_file_storageutils_02">過濾子目錄後得到的mout信息:</string>
<string name="utils_file_storageutils_03">過濾相同目錄後得到的mout信息:</string>
<string name="utils_file_storageutils_04">[掛載點 device:%s;path:%s;size:%s;type:%s]</string>
<string name="xchat_android_library_utils_formatutils_01"></string>
<string name="xchat_android_library_utils_formatutils_02"></string>
<string name="xchat_android_library_utils_formatutils_03"></string>
<string name="xchat_android_library_utils_formatutils_04">格式化異常。</string>
<string name="xchat_android_library_utils_formatutils_05"></string>
<string name="utils_image_jximageutils_01">原圖:</string>
<string name="utils_image_jximageutils_02">原圖旋轉角度:</string>
<string name="utils_image_jximageutils_03">寬高,</string>
<string name="utils_image_jximageutils_04">壓縮前質量:</string>
<string name="utils_image_jximageutils_05">壓縮參數:</string>
<string name="utils_image_jximageutils_06">壓縮圖旋轉角度:</string>
<string name="utils_image_jximageutils_07">壓縮失敗...</string>
<string name="utils_image_jximageutils_08">壓縮圖片OOM</string>
<string name="xchat_android_library_utils_javautil_01">parseLong錯誤</string>
<string name="xchat_android_library_utils_javautil_02">parseInt錯誤</string>
<string name="xchat_android_library_utils_javautil_03">str2double錯誤</string>
<string name="xchat_android_library_utils_javautil_04">str2double2len錯誤</string>
<string name="xchat_android_library_utils_javautil_05">str2double0len錯誤</string>
<string name="xchat_android_library_utils_javautil_06">parseFloat錯誤</string>
<string name="xchat_android_library_utils_javautil_07"></string>
<string name="xchat_android_library_utils_javautil_08"></string>
<string name="xchat_android_library_utils_javautil_09"></string>
<string name="xchat_android_library_utils_javautil_010"></string>
<string name="xchat_android_library_utils_javautil_011"></string>
<string name="xchat_android_library_utils_javautil_012"></string>
<string name="xchat_android_library_utils_javautil_013"></string>
<string name="xchat_android_library_utils_javautil_014"></string>
<string name="xchat_android_library_utils_macaddressutils_01">6.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_02">6.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_03">6.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_04">6.0以上7.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_05">6.0以上7.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_06">6.0以上7.0以下</string>
<string name="xchat_android_library_utils_macaddressutils_07">7.0以上</string>
<string name="xchat_android_library_utils_macaddressutils_08">7.0以上1</string>
<string name="xchat_android_library_utils_macaddressutils_09">7.0以上1</string>
<string name="xchat_android_library_utils_macaddressutils_010">7.0以上1</string>
<string name="xchat_android_library_utils_macaddressutils_011">7.0以上2</string>
<string name="xchat_android_library_utils_macaddressutils_012">7.0以上2</string>
<string name="xchat_android_library_utils_macaddressutils_013">7.0以上2</string>
<string name="xchat_android_library_utils_macaddressutils_014">7.0以上3</string>
<string name="xchat_android_library_utils_macaddressutils_015">7.0以上3</string>
<string name="xchat_android_library_utils_macaddressutils_016">7.0以上3</string>
<string name="xchat_android_library_utils_macaddressutils_017">網絡異常</string>
<string name="xchat_android_library_utils_nullutils_01"> 不能為null !</string>
<string name="utils_pref_xsharedpref_01">保存obj失敗</string>
<string name="xchat_android_library_utils_telephonyutils_01">中國移動</string>
<string name="xchat_android_library_utils_telephonyutils_02">中國電信</string>
<string name="xchat_android_library_utils_telephonyutils_03">中國聯通</string>
<string name="xchat_android_library_utils_telephonyutils_04">未知</string>
<string name="xchat_android_library_utils_timeutils_01">摩羯座</string>
<string name="xchat_android_library_utils_timeutils_02">水瓶座</string>
<string name="xchat_android_library_utils_timeutils_03">水瓶座</string>
<string name="xchat_android_library_utils_timeutils_04">雙魚座</string>
<string name="xchat_android_library_utils_timeutils_05">雙魚座</string>
<string name="xchat_android_library_utils_timeutils_06">白羊座</string>
<string name="xchat_android_library_utils_timeutils_07">白羊座</string>
<string name="xchat_android_library_utils_timeutils_08">金牛座</string>
<string name="xchat_android_library_utils_timeutils_09">金牛座</string>
<string name="xchat_android_library_utils_timeutils_010">雙子座</string>
<string name="xchat_android_library_utils_timeutils_011">雙子座</string>
<string name="xchat_android_library_utils_timeutils_012">巨蟹座</string>
<string name="xchat_android_library_utils_timeutils_013">巨蟹座</string>
<string name="xchat_android_library_utils_timeutils_014">獅子座</string>
<string name="xchat_android_library_utils_timeutils_015">獅子座</string>
<string name="xchat_android_library_utils_timeutils_016">處女座</string>
<string name="xchat_android_library_utils_timeutils_017">處女座</string>
<string name="xchat_android_library_utils_timeutils_018">天秤座</string>
<string name="xchat_android_library_utils_timeutils_019">天秤座</string>
<string name="xchat_android_library_utils_timeutils_020">天蠍座</string>
<string name="xchat_android_library_utils_timeutils_021">天蠍座</string>
<string name="xchat_android_library_utils_timeutils_022">射手座</string>
<string name="xchat_android_library_utils_timeutils_023">射手座</string>
<string name="xchat_android_library_utils_timeutils_024">摩羯座</string>
<string name="xchat_android_library_utils_timeutils_025">工作時間內</string>
<string name="xchat_android_library_utils_timeutils_026">工作時間外</string>
<string name="xchat_android_library_utils_timeutils_027">工作時間內</string>
<string name="xchat_android_library_utils_timeutils_028">工作時間外</string>
<string name="xchat_android_library_utils_versionutil_01">內測版</string>
<string name="xchat_android_library_utils_ziputils_01">構建zip完整路徑成功: %s</string>
<string name="widget_xlist_familiardefaultitemdecoration_01">設置底部間距</string>
<string name="str_right_now">Just now</string>
<string name="str_today">Today</string>
<string name="str_yesterday">Yesterday</string>
<string name="str_day_before_yesterday">Day before yesterday</string>
<string name="str_short_date_format">%1$d Month %2$d Day</string>
<string name="str_date_format">%1$d Year %2$d Month %3$d Day</string>
<string name="str_minutes_ago_format">%1$d Minutes ago</string>
<string name="str_hours_ago_format">%1$d Hours ago</string>
<string name="base_factory_basemvpproxy_01">This method can only be called before getMvpPresenter(), if the Presenter has already been created, it cannot be changed!!!</string>
<string name="base_factory_presentermvpfactoryimpl_01">Presenter creation failed, check if @CreatePresenter(xxx.class) annotation is declared!!!----</string>
<string name="rxnet_interceptor_httpcacheinterceptor_01">No network, forcing cache access!</string>
<string name="net_rxnet_rxnet_01">Please call RxNet.init() method to initialize in the project!!!</string>
<string name="xchat_android_library_service_erbanservice_01">Starting background task...%d</string>
<string name="xchat_android_library_service_erbanservice_02">Executing delete log files</string>
<string name="xchat_android_library_service_erbanservice_03">Success</string>
<string name="xchat_android_library_service_erbanservice_04">Failure</string>
<string name="xchat_android_library_service_erbanservice_05">Stopping background task...%d</string>
<string name="xchat_android_library_threadmgr_schedulepolicy_01">Single thread pool concurrent too high execution abandonment strategy</string>
<string name="xchat_android_library_threadmgr_speakpolicy_01">Glare parallelism is too high to execute abandonment strategy</string>
<string name="utils_cache_stringdiskcache_01">:BufferedOutputStream execution time consuming:</string>
<string name="utils_cache_stringdiskcache_02"> milliseconds</string>
<string name="utils_codec_desutils_01">text DES encryption after base64:</string>
<string name="utils_codec_desutils_02">Unprocessed plaintext:</string>
<string name="utils_codec_desutils_03">Decrypted data:</string>
<string name="utils_download_downloadmanagerutil_01">Downloading</string>
<string name="utils_download_downloadreceiver_01">Download cancelled</string>
<string name="utils_file_basicfileutils_01">Traversal to the limit maximum number of layers</string>
<string name="utils_file_basicfileutils_02">Directory contains non-standard files</string>
<string name="utils_file_basicfileutils_03">The directory is empty</string>
<string name="utils_file_storageutils_01">Filter to get mout table information:</string>
<string name="utils_file_storageutils_02">Filter out mout information after subdirectory:</string>
<string name="utils_file_storageutils_03">Filter out mout information after the same directory:</string>
<string name="utils_file_storageutils_04">[Mount point device:%s;path:%s;size:%s;type:%s]</string>
<string name="xchat_android_library_utils_formatutils_01">Ten thousand</string>
<string name="xchat_android_library_utils_formatutils_02">Billion</string>
<string name="xchat_android_library_utils_formatutils_03">Trillion</string>
<string name="xchat_android_library_utils_formatutils_04">Formatting exception.</string>
<string name="xchat_android_library_utils_formatutils_05">Ten thousand</string>
<string name="utils_image_jximageutils_01">Original:</string>
<string name="utils_image_jximageutils_02">Original rotation angle:</string>
<string name="utils_image_jximageutils_03">Width and height,</string>
<string name="utils_image_jximageutils_04">Quality before compression:</string>
<string name="utils_image_jximageutils_05">Compression parameters:</string>
<string name="utils_image_jximageutils_06">Compression image rotation angle:</string>
<string name="utils_image_jximageutils_07">Compression failed...</string>
<string name="utils_image_jximageutils_08">Compression image OOM</string>
<string name="xchat_android_library_utils_javautil_01">parseLong error</string>
<string name="xchat_android_library_utils_javautil_02">parseInt error</string>
<string name="xchat_android_library_utils_javautil_03">str2double error</string>
<string name="xchat_android_library_utils_javautil_04">str2double2len error</string>
<string name="xchat_android_library_utils_javautil_05">str2double0len error</string>
<string name="xchat_android_library_utils_javautil_06">parseFloat error</string>
<string name="xchat_android_library_utils_javautil_07">One</string>
<string name="xchat_android_library_utils_javautil_08">Two</string>
<string name="xchat_android_library_utils_javautil_09">Three</string>
<string name="xchat_android_library_utils_javautil_010">Four</string>
<string name="xchat_android_library_utils_javautil_011">Five</string>
<string name="xchat_android_library_utils_javautil_012">Six</string>
<string name="xchat_android_library_utils_javautil_013">Seven</string>
<string name="xchat_android_library_utils_javautil_014">Day</string>
<string name="xchat_android_library_utils_macaddressutils_01">Below 6.0</string>
<string name="xchat_android_library_utils_macaddressutils_02">Below 6.0</string>
<string name="xchat_android_library_utils_macaddressutils_03">Below 6.0</string>
<string name="xchat_android_library_utils_macaddressutils_04">Above 6.0 and below 7.0</string>
<string name="xchat_android_library_utils_macaddressutils_05">Above 6.0 and below 7.0</string>
<string name="xchat_android_library_utils_macaddressutils_06">Above 6.0 and below 7.0</string>
<string name="xchat_android_library_utils_macaddressutils_07">Above 7.0</string>
<string name="xchat_android_library_utils_macaddressutils_08">Above 7.0 1</string>
<string name="xchat_android_library_utils_macaddressutils_09">7.0 and above 1</string>
<string name="xchat_android_library_utils_macaddressutils_010">7.0 and above 1</string>
<string name="xchat_android_library_utils_macaddressutils_011">7.0 and above 2</string>
<string name="xchat_android_library_utils_macaddressutils_012">7.0 and above 2</string>
<string name="xchat_android_library_utils_macaddressutils_013">7.0 and above 2</string>
<string name="xchat_android_library_utils_macaddressutils_014">7.0 and above 3</string>
<string name="xchat_android_library_utils_macaddressutils_015">7.0 and above 3</string>
<string name="xchat_android_library_utils_macaddressutils_016">7.0 and above 3</string>
<string name="xchat_android_library_utils_macaddressutils_017">Network exception</string>
<string name="xchat_android_library_utils_nullutils_01">Cannot be null!</string>
<string name="utils_pref_xsharedpref_01">Failed to save obj</string>
<string name="xchat_android_library_utils_telephonyutils_01">China Mobile</string>
<string name="xchat_android_library_utils_telephonyutils_02">China Telecom</string>
<string name="xchat_android_library_utils_telephonyutils_03">China Unicom</string>
<string name="xchat_android_library_utils_telephonyutils_04">Unknown</string>
<string name="xchat_android_library_utils_timeutils_01">Capricorn</string>
<string name="xchat_android_library_utils_timeutils_02">Aquarius</string>
<string name="xchat_android_library_utils_timeutils_03">Aquarius</string>
<string name="xchat_android_library_utils_timeutils_04">Pisces</string>
<string name="xchat_android_library_utils_timeutils_05">Pisces</string>
<string name="xchat_android_library_utils_timeutils_06">Aries</string>
<string name="xchat_android_library_utils_timeutils_07">Aries</string>
<string name="xchat_android_library_utils_timeutils_08">Taurus</string>
<string name="xchat_android_library_utils_timeutils_09">Taurus</string>
<string name="xchat_android_library_utils_timeutils_010">Gemini</string>
<string name="xchat_android_library_utils_timeutils_011">Gemini</string>
<string name="xchat_android_library_utils_timeutils_012">Cancer</string>
<string name="xchat_android_library_utils_timeutils_013">Cancer</string>
<string name="xchat_android_library_utils_timeutils_014">Leo</string>
<string name="xchat_android_library_utils_timeutils_015">Leo</string>
<string name="xchat_android_library_utils_timeutils_016">Virgo</string>
<string name="xchat_android_library_utils_timeutils_017">Virgo</string>
<string name="xchat_android_library_utils_timeutils_018">Libra</string>
<string name="xchat_android_library_utils_timeutils_019">Libra</string>
<string name="xchat_android_library_utils_timeutils_020">Scorpio</string>
<string name="xchat_android_library_utils_timeutils_021">Scorpio</string>
<string name="xchat_android_library_utils_timeutils_022">Sagittarius</string>
<string name="xchat_android_library_utils_timeutils_023">Sagittarius</string>
<string name="xchat_android_library_utils_timeutils_024">Capricorn</string>
<string name="xchat_android_library_utils_timeutils_025">During working hours</string>
<string name="xchat_android_library_utils_timeutils_026">After working hours</string>
<string name="xchat_android_library_utils_timeutils_027">During working hours</string>
<string name="xchat_android_library_utils_timeutils_028">After working hours</string>
<string name="xchat_android_library_utils_versionutil_01">Beta version</string>
<string name="xchat_android_library_utils_ziputils_01">Built zip full path successfully: %s</string>
<string name="widget_xlist_familiardefaultitemdecoration_01">Set bottom spacing</string>
<string name="number_w">w</string>
<string name="request_failed_again_later">Request failed, please try again later</string>
<string name="data_parsing_exception">Data parsing exception</string>
<string name="network_abnormality_check_again">Network abnormality, please check your network and try again</string>
<string name="parameter_error">Parameter error</string>
</resources>

View File

@@ -0,0 +1,7 @@
<resources>
<string name="text_bitmap_too_large">上傳失敗,圖片太大啦~</string>
<string name="text_bitmap_too_small">上傳圖片不能小於20kb</string>
<string name="yizhuan_xchat_android_core_env_01">請輸入正確的環境</string>
<string name="yizhuan_xchat_android_core_env_02">請輸入正確的環境</string>
<string name="yizhuan_xchat_android_core_env_03">請先初始化環境</string>
</resources>

View File

@@ -0,0 +1,7 @@
<resources>
<string name="text_bitmap_too_large">上傳失敗,圖片太大啦~</string>
<string name="text_bitmap_too_small">上傳圖片不能小於20kb</string>
<string name="yizhuan_xchat_android_core_env_01">請輸入正確的環境</string>
<string name="yizhuan_xchat_android_core_env_02">請輸入正確的環境</string>
<string name="yizhuan_xchat_android_core_env_03">請先初始化環境</string>
</resources>

View File

@@ -1,7 +1,7 @@
<resources>
<string name="text_bitmap_too_large">上傳失敗,圖片太大啦~</string>
<string name="text_bitmap_too_small">上傳圖片不能小於20kb</string>
<string name="yizhuan_xchat_android_core_env_01">請輸入正確的環境</string>
<string name="yizhuan_xchat_android_core_env_02">請輸入正確的環境</string>
<string name="yizhuan_xchat_android_core_env_03">請先初始化環境</string>
<string name="text_bitmap_too_large">Upload failed, image is too large.</string>
<string name="text_bitmap_too_small">Uploaded image cannot be smaller than 20kb.</string>
<string name="yizhuan_xchat_android_core_env_01">Please enter the correct environment.</string>
<string name="yizhuan_xchat_android_core_env_02">Please enter the correct environment.</string>
<string name="yizhuan_xchat_android_core_env_03">Please initialize the environment first.</string>
</resources>

View File

@@ -0,0 +1,7 @@
<resources>
<string name="rationale_ask">如果沒有請求的權限,此應用程式可能無法正常工作。</string>
<string name="rationale_ask_again">如果沒有請求的權限,此應用程式可能無法正常工作,打開應用設置頁面以修改應用權限。</string>
<string name="title_settings_dialog">所需權限</string>
<string name="sure">確定</string>
<string name="cancel">取消</string>
</resources>

View File

@@ -0,0 +1,7 @@
<resources>
<string name="rationale_ask">如果沒有請求的權限,此應用程式可能無法正常工作。</string>
<string name="rationale_ask_again">如果沒有請求的權限,此應用程式可能無法正常工作,打開應用設置頁面以修改應用權限。</string>
<string name="title_settings_dialog">所需權限</string>
<string name="sure">確定</string>
<string name="cancel">取消</string>
</resources>

View File

@@ -1,7 +1,7 @@
<resources>
<string name="rationale_ask">如果沒有請求的權限,此應用程式可能無法正常工作。</string>
<string name="rationale_ask_again">如果沒有請求的權限,此應用程式可能無法正常工作,打開應用設置頁面以修改應用權限。</string>
<string name="title_settings_dialog">所需權限</string>
<string name="sure">確定</string>
<string name="cancel">取消</string>
<string name="rationale_ask">If permission is not granted, this application may not function properly.</string>
<string name="rationale_ask_again">If permission is not granted, this application may not function properly. Open the application settings page to modify application permissions.</string>
<string name="title_settings_dialog">Required Permissions</string>
<string name="sure">OK</string>
<string name="cancel">Cancel</string>
</resources>

View File

@@ -0,0 +1,79 @@
<resources>
<string name="selector_folder_all_easy_photos">所有圖片</string>
<string name="selector_folder_all_video_photo_easy_photos">圖片和視頻</string>
<string name="selector_folder_video_easy_photos">所有視頻</string>
<string name="selector_easy_photos">選擇</string>
<!--http://stackoverflow.com/questions/17502824/whats-wrong-with-this-format-string-->
<string name="selector_action_done_easy_photos">完成(%1$d/%2$d)</string>
<string name="selector_preview_easy_photos">預覽</string>
<string name="selector_reach_max_hint_easy_photos">超出最大選擇數</string>
<string name="selector_reach_max_image_hint_easy_photos">最多只能選擇%d張圖片</string>
<string name="selector_reach_max_video_hint_easy_photos">最多只能選擇%d個視頻</string>
<string name="selector_single_type_hint_easy_photos">需要選擇同種類型的文件</string>
<string name="msg_no_camera_easy_photos">無法啟動相機!</string>
<string name="camera_temp_file_error_easy_photos">圖片錯誤</string>
<string name="selector_permission_error_easy_photos">權限錯誤,無法正常工作!</string>
<string name="selector_image_size_error_easy_photos">圖片的寬度必須大於%1$d,高度必須大於%2$d</string>
<string name="selector_image_type_error_easy_photos">不支持此圖片格式</string>
<string name="edit_easy_photos">編輯</string>
<string name="empty_easy_photos">清空</string>
<string name="no_photos_easy_photos">沒有符合要求的圖片,拍一張吧</string>
<string name="no_videos_easy_photos">沒有符合要求的視頻</string>
<string name="permissions_again_easy_photos">請點擊並允許相關權限</string>
<string name="permissions_die_easy_photos">請點擊並在設置中允許相關權限</string>
<string name="original_easy_photos">原圖</string>
<string name="preview_current_number_easy_photos">%1$d/%2$d</string>
<string name="done_easy_photos">完成</string>
<string name="cancel_easy_photos">取消</string>
<string name="template_easy_photos">模板</string>
<string name="text_sticker_easy_photos">文字</string>
<string name="text_sticker_date_easy_photos">日期</string>
<string name="text_sticker_hint_easy_photos">雙擊編輯</string>
<string name="text_sticker_hint_name_easy_photos">自定義</string>
<string name="picture_selection_easy_photos">圖片選擇</string>
<string name="video_selection_easy_photos">視頻選擇</string>
<string name="puzzle_easy_photos">拼一張</string>
<string name="select_puzzle_photos">請選擇2 \- 9張照片</string>
<string name="gif_easy_photos">動圖</string>
<string name="video_easy_photos">視頻</string>
<string name="give_application_storage_permission">請給予應用存儲權限,以正常保存圖片。</string>
</resources>

View File

@@ -0,0 +1,79 @@
<resources>
<string name="selector_folder_all_easy_photos">所有圖片</string>
<string name="selector_folder_all_video_photo_easy_photos">圖片和視頻</string>
<string name="selector_folder_video_easy_photos">所有視頻</string>
<string name="selector_easy_photos">選擇</string>
<!--http://stackoverflow.com/questions/17502824/whats-wrong-with-this-format-string-->
<string name="selector_action_done_easy_photos">完成(%1$d/%2$d)</string>
<string name="selector_preview_easy_photos">預覽</string>
<string name="selector_reach_max_hint_easy_photos">超出最大選擇數</string>
<string name="selector_reach_max_image_hint_easy_photos">最多只能選擇%d張圖片</string>
<string name="selector_reach_max_video_hint_easy_photos">最多只能選擇%d個視頻</string>
<string name="selector_single_type_hint_easy_photos">需要選擇同種類型的文件</string>
<string name="msg_no_camera_easy_photos">無法啟動相機!</string>
<string name="camera_temp_file_error_easy_photos">圖片錯誤</string>
<string name="selector_permission_error_easy_photos">權限錯誤,無法正常工作!</string>
<string name="selector_image_size_error_easy_photos">圖片的寬度必須大於%1$d,高度必須大於%2$d</string>
<string name="selector_image_type_error_easy_photos">不支持此圖片格式</string>
<string name="edit_easy_photos">編輯</string>
<string name="empty_easy_photos">清空</string>
<string name="no_photos_easy_photos">沒有符合要求的圖片,拍一張吧</string>
<string name="no_videos_easy_photos">沒有符合要求的視頻</string>
<string name="permissions_again_easy_photos">請點擊並允許相關權限</string>
<string name="permissions_die_easy_photos">請點擊並在設置中允許相關權限</string>
<string name="original_easy_photos">原圖</string>
<string name="preview_current_number_easy_photos">%1$d/%2$d</string>
<string name="done_easy_photos">完成</string>
<string name="cancel_easy_photos">取消</string>
<string name="template_easy_photos">模板</string>
<string name="text_sticker_easy_photos">文字</string>
<string name="text_sticker_date_easy_photos">日期</string>
<string name="text_sticker_hint_easy_photos">雙擊編輯</string>
<string name="text_sticker_hint_name_easy_photos">自定義</string>
<string name="picture_selection_easy_photos">圖片選擇</string>
<string name="video_selection_easy_photos">視頻選擇</string>
<string name="puzzle_easy_photos">拼一張</string>
<string name="select_puzzle_photos">請選擇2 \- 9張照片</string>
<string name="gif_easy_photos">動圖</string>
<string name="video_easy_photos">視頻</string>
<string name="give_application_storage_permission">請給予應用存儲權限,以正常保存圖片。</string>
</resources>

View File

@@ -1,79 +1,39 @@
<resources>
<string name="selector_folder_all_easy_photos">所有圖片</string>
<string name="selector_folder_all_video_photo_easy_photos">圖片和視頻</string>
<string name="selector_folder_video_easy_photos">所有視頻</string>
<string name="selector_easy_photos">選擇</string>
<!--http://stackoverflow.com/questions/17502824/whats-wrong-with-this-format-string-->
<string name="selector_action_done_easy_photos">完成(%1$d/%2$d)</string>
<string name="selector_preview_easy_photos">預覽</string>
<string name="selector_reach_max_hint_easy_photos">超出最大選擇數</string>
<string name="selector_reach_max_image_hint_easy_photos">最多只能選擇%d張圖片</string>
<string name="selector_reach_max_video_hint_easy_photos">最多只能選擇%d個視頻</string>
<string name="selector_single_type_hint_easy_photos">需要選擇同種類型的文件</string>
<string name="msg_no_camera_easy_photos">無法啟動相機!</string>
<string name="camera_temp_file_error_easy_photos">圖片錯誤</string>
<string name="selector_permission_error_easy_photos">權限錯誤,無法正常工作!</string>
<string name="selector_image_size_error_easy_photos">圖片的寬度必須大於%1$d,高度必須大於%2$d</string>
<string name="selector_image_type_error_easy_photos">不支持此圖片格式</string>
<string name="edit_easy_photos">編輯</string>
<string name="empty_easy_photos">清空</string>
<string name="no_photos_easy_photos">沒有符合要求的圖片,拍一張吧</string>
<string name="no_videos_easy_photos">沒有符合要求的視頻</string>
<string name="permissions_again_easy_photos">請點擊並允許相關權限</string>
<string name="permissions_die_easy_photos">請點擊並在設置中允許相關權限</string>
<string name="original_easy_photos">原圖</string>
<string name="selector_folder_all_easy_photos">All Photos</string>
<string name="selector_folder_all_video_photo_easy_photos">Photos and Videos</string>
<string name="selector_folder_video_easy_photos">All Videos</string>
<string name="selector_easy_photos">Select</string>
<string name="selector_action_done_easy_photos">Done (%1$d/%2$d)</string>
<string name="selector_preview_easy_photos">Preview</string>
<string name="selector_reach_max_hint_easy_photos">Exceeds maximum selection limit</string>
<string name="selector_reach_max_image_hint_easy_photos">You can select up to %d images</string>
<string name="selector_reach_max_video_hint_easy_photos">You can select up to %d videos</string>
<string name="selector_single_type_hint_easy_photos">Please select files of the same type</string>
<string name="msg_no_camera_easy_photos">Failed to start camera!</string>
<string name="camera_temp_file_error_easy_photos">Image error</string>
<string name="selector_permission_error_easy_photos">Permission error, unable to function properly!</string>
<string name="selector_image_size_error_easy_photos">Image width must be greater than %1$d and height must be greater than %2$d</string>
<string name="selector_image_type_error_easy_photos">Unsupported image format</string>
<string name="edit_easy_photos">Edit</string>
<string name="empty_easy_photos">Empty</string>
<string name="no_photos_easy_photos">No photos found, take some photos</string>
<string name="no_videos_easy_photos">No videos found</string>
<string name="permissions_again_easy_photos">Please click and allow relevant permissions</string>
<string name="permissions_die_easy_photos">Please click and allow relevant permissions in settings</string>
<string name="original_easy_photos">Original</string>
<string name="preview_current_number_easy_photos">%1$d/%2$d</string>
<string name="done_easy_photos">完成</string>
<string name="cancel_easy_photos">取消</string>
<string name="template_easy_photos">模板</string>
<string name="text_sticker_easy_photos">文字</string>
<string name="text_sticker_date_easy_photos">日期</string>
<string name="text_sticker_hint_easy_photos">雙擊編輯</string>
<string name="text_sticker_hint_name_easy_photos">自定義</string>
<string name="picture_selection_easy_photos">圖片選擇</string>
<string name="video_selection_easy_photos">視頻選擇</string>
<string name="puzzle_easy_photos">拼一張</string>
<string name="select_puzzle_photos">請選擇2 \- 9張照片</string>
<string name="gif_easy_photos">動圖</string>
<string name="video_easy_photos">視頻</string>
<string name="give_application_storage_permission">請給予應用存儲權限,以正常保存圖片。</string>
<string name="done_easy_photos">Done</string>
<string name="cancel_easy_photos">Cancel</string>
<string name="template_easy_photos">Template</string>
<string name="text_sticker_easy_photos">Text</string>
<string name="text_sticker_date_easy_photos">Date</string>
<string name="text_sticker_hint_easy_photos">Double tap to edit</string>
<string name="text_sticker_hint_name_easy_photos">Custom</string>
<string name="picture_selection_easy_photos">Photo Selection</string>
<string name="video_selection_easy_photos">Video Selection</string>
<string name="puzzle_easy_photos">Create Puzzle</string>
<string name="select_puzzle_photos">Please select 2 - 9 photos</string>
<string name="gif_easy_photos">GIF</string>
<string name="video_easy_photos">Video</string>
<string name="give_application_storage_permission">Please grant the application storage permission to save images properly.</string>
</resources>

View File

@@ -0,0 +1,434 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- common -->
<string name="empty"></string>
<string name="ok">確定</string>
<string name="cancel">取消</string>
<string name="clear_empty">清空</string>
<string name="iknow">知道了</string>
<string name="search">搜索</string>
<string name="remove">移除</string>
<string name="add">添加</string>
<string name="create">新建</string>
<string name="without_content">暫無</string>
<string name="network_is_not_available">網絡連接失敗,請檢查你的網絡設置</string>
<string name="open">開啟</string>
<string name="close">關閉</string>
<string name="menu">菜單</string>
<string name="now_allow_space">不能含有空格</string>
<string name="readed">已讀</string>
<!-- session -->
<string name="input_panel_photo">圖 片</string>
<string name="input_panel_video">視 頻</string>
<string name="input_panel_location">位 置</string>
<string name="input_panel_take">拍 攝</string>
<string name="im_choose_pic">請選擇JPG PNG BMP GIF格式的圖片文件</string>
<string name="repeat_download_message">重新下載?</string>
<string name="repeat_send_has_blank">重 發</string>
<string name="repeat_send_message">重發消息?</string>
<string name="copy_has_blank">復 製</string>
<string name="delete_has_blank">刪 除</string>
<string name="voice_to_text">轉文字</string>
<string name="forward_to_person">轉發到個人</string>
<string name="forward_to_team">轉發到群組</string>
<string name="withdrawn_msg">撤 回</string>
<string name="save">保存</string>
<string name="done">完成</string>
<string name="main_msg_list_delete_chatting">刪除該聊天</string>
<string name="main_msg_list_sticky_on_top">置頂該聊天</string>
<string name="main_msg_list_clear_sticky_on_top">取消置頂</string>
<string name="save_to_device">保存到手機</string>
<string name="picture_save_fail">圖片保存失敗</string>
<string name="picture_save_to">圖片已保存到手機</string>
<string name="search_join_team">搜索加入群組</string>
<string name="file_transfer_state_downloaded">已下載</string>
<string name="file_transfer_state_undownload">未下載</string>
<string name="trans_voice_failed">語音轉化失敗</string>
<string name="team_invalid_tip">您已退出該群</string>
<string name="normal_team_invalid_tip">您已退出該討論組</string>
<string name="team_send_message_not_allow">您已不在該群,不能發送消息</string>
<string name="send">發送</string>
<string name="unsupport_title">無法顯示該內容</string>
<string name="unsupport_desc">客戶端版本不支持該內容</string>
<string name="revoke_failed">發送時間超過2分鐘的消息不能被撤回</string>
<string name="pic_and_video">圖片和視頻</string>
<string name="black_list_send_tip">消息已發送,但對方拒收</string>
<!-- 語音 -->
<string name="record_audio">按住 說話</string>
<string name="record_audio_end">松開 結束</string>
<string name="sdcard_not_exist_error">請插入SD卡</string>
<string name="recording_error">錄音失敗,請重試</string>
<string name="recording_init_failed">初始化錄音失敗</string>
<string name="recording_cancel">手指上滑,取消發送</string>
<string name="timer_default">00:00</string>
<string name="recording_cancel_tip">松開手指,取消發送</string>
<string name="recording_max_time">錄音達到最大時間,是否發送?</string>
<!-- 拍照視頻 -->
<string name="gallery_invalid">你的手機沒有圖庫程序</string>
<string name="sdcard_not_enough_head_error">SD卡被拔出或存儲空間不足無法保存頭像</string>
<string name="sdcard_not_enough_error">存儲空間不足,無法保存此次多媒體消息</string>
<string name="download_video">正在下載視頻</string>
<string name="download_video_fail">視頻下載失敗,請重試</string>
<string name="look_video_fail">無法播放該視頻</string>
<string name="look_video_fail_try_again">暫時無法播放視頻,請重試</string>
<string name="video_play">視頻播放</string>
<string name="video_record">視頻錄製</string>
<string name="video_record_symbol">REC</string>
<string name="video_record_begin">開始錄製</string>
<string name="connect_vedio_device_fail">無法連接視頻設備 ,請稍候再試</string>
<string name="capture_video_size_in_kb">視頻文件大小為: %1$dKB,</string>
<string name="capture_video_size_in_mb">視頻文件大小為: %1$.2fMB,</string>
<string name="is_send_video">是否發送該視頻?</string>
<string name="start_camera_to_record_failed">啟動攝像頭錄製視頻失敗</string>
<string name="stop_fail_maybe_stopped">停止失敗,可能已經停止</string>
<string name="video_exception">視頻文件異常</string>
<string name="im_choose_video_file_size_too_large">視頻文件過大系統限製為20MB</string>
<string name="im_choose_video">請選擇3GP MP4格式的視頻文件</string>
<string name="video_record_short">錄製視頻太短</string>
<string name="download_progress_description">%1$s%2$s/%3$s</string>
<!-- 聯系人選擇器 -->
<string name="contact_selector">聯系人選擇器</string>
<!-- team -->
<string name="team_need_authentication">需要身份驗證</string>
<string name="team_allow_anyone_join">允許任何人加入</string>
<string name="team_not_allow_anyone_join">不允許任何人申請加入</string>
<string name="team_admin_invite">管理員邀請</string>
<string name="team_everyone_invite">所有人邀請</string>
<string name="team_admin_update">管理員修改</string>
<string name="team_everyone_update">所有人修改</string>
<string name="team_invitee_need_authen">需要驗證</string>
<string name="team_invitee_not_need_authen">不需要驗證</string>
<string name="team_notify_mute">不提醒任何消息</string>
<string name="team_notify_all">提醒所有消息</string>
<string name="team_notify_manager">只提醒管理員消息</string>
<string name="team_nickname">群昵稱</string>
<string name="team_nickname_none">未填寫</string>
<string name="team_identity">身份</string>
<string name="remove_member">移出本群</string>
<string name="team_member_info">成員信息</string>
<string name="team_admin">管理員</string>
<string name="open_redpackage_notice">開啟全服紅包</string>
<string name="close_redpackage_notice">關閉全服紅包</string>
<string name="team_creator">群主</string>
<string name="team_member">群成員</string>
<string name="update_success">保存成功</string>
<string name="update_failed">保存失敗, code:%d</string>
<string name="no_permission">沒有權限</string>
<string name="set_team_admin">設為管理員</string>
<string name="cancel_team_admin">取消管理員</string>
<string name="team_member_remove_confirm">確定要將其移出群組麽?</string>
<string name="team_annourcement">群公告</string>
<string name="invite_member">邀請成員</string>
<string name="team_name">群名稱</string>
<string name="team_introduce">群介紹</string>
<string name="team_extension">擴展示例</string>
<string name="click_set">點擊設置</string>
<string name="create_advanced_team">創建高級群</string>
<string name="reach_team_member_capacity">成員數量不能超過%1$d</string>
<string name="team_authentication">身份驗證</string>
<string name="team_invite">邀請他人權限</string>
<string name="team_info_update">群資料修改權限</string>
<string name="team_invitee_authentication">被邀請人身份驗證</string>
<string name="create_team">創建群</string>
<string name="over_team_member_capacity">邀請失敗,成員人數上限為%1$d人</string>
<string name="over_team_capacity">創建失敗,創建群數量達到限製</string>
<string name="create_team_failed">創建失敗</string>
<string name="create_team_success">創建成功</string>
<string name="team_announce_title">標題</string>
<string name="team_announce_content">公告內容</string>
<string name="team_announce_notice">請輸入群公告標題</string>
<string name="my_team_card">我的群名片</string>
<string name="team_introduce_hint">點擊填寫群介紹</string>
<string name="team_extension_hint">點擊修改擴展內容</string>
<string name="team_announce_hint">點擊填寫群公告</string>
<string name="team_notification_config">消息提醒</string>
<string name="team_transfer_without_member">沒有可轉移的群成員</string>
<string name="team_invite_members_success">群成員邀請已發出</string>
<string name="team_invite_members_failed">群成員邀請失敗</string>
<string name="team_transfer_success">群轉移成功</string>
<string name="team_transfer_failed">群轉移失敗</string>
<string name="quit_team_success">您已退群</string>
<string name="quit_team_failed">退群失敗</string>
<string name="quit_normal_team_success">您已經退出討論組</string>
<string name="quit_normal_team_failed">退出討論組失敗</string>
<string name="dismiss_team_success">群已解散</string>
<string name="dismiss_team_failed">解散群失敗</string>
<string name="dismiss_team">解散本群</string>
<string name="transfer_team">轉讓群</string>
<string name="quit_team">退出群</string>
<string name="quit_normal_team">退出討論組</string>
<string name="team_apply_to_join">申請加入</string>
<string name="advanced_team">高級群</string>
<string name="normal_team">討論組</string>
<string name="team_name_toast">群名稱不能為空</string>
<string name="not_allow_empty">不能為空</string>
<string name="chat_setting">聊天信息</string>
<string name="team_settings_name">設置名稱</string>
<string name="normal_team_name">討論組名稱</string>
<string name="remove_member_success">移除成員成功</string>
<string name="remove_member_failed">移除成員失敗</string>
<string name="invite_member_success">邀請成員成功</string>
<string name="invite_member_failed">邀請成員失敗</string>
<string name="team_create_notice">請添加群成員</string>
<string name="team_settings_set_name">取個名字吧</string>
<string name="team_not_exist">該群不存在</string>
<string name="normal_team_not_exist">該討論組不存在</string>
<string name="mute_msg">設置禁言</string>
<string name="set_head_image">設置頭像</string>
<string name="team_update_cancel">取消更新</string>
<string name="team_update_failed">群頭像設置失敗</string>
<string name="reach_capacity">人數已達上限</string>
<!-- 消息搜索 -->
<string name="message_search_no_result">無結果</string>
<string name="message_search_title">查看聊天內容</string>
<!-- image picker -->
<string name="picker_image_preview">預覽</string>
<string name="picker_image_send">發送</string>
<string name="picker_image_folder">相冊</string>
<string name="picker_image_album_loading">相冊加載中…</string>
<string name="picker_image_album_empty">相冊中沒有圖片!</string>
<string name="picker_image_folder_info">共%d張</string>
<string name="picker_image_exceed_max_image_select">最多選擇%d張圖片</string>
<string name="picker_image_send_select">完成(%d</string>
<string name="picker_image_preview_original">發送原圖</string>
<string name="picker_image_preview_original_select">發送原圖(%s</string>
<string name="picker_image_error">獲取圖片出錯</string>
<string name="image_compressed_size">該原始圖片大小為: %1$s,</string>
<string name="unknow_size">未知大小</string>
<string name="is_send_image">是否發送該原始圖片?</string>
<string name="multi_image_compressed_size">原始圖片總大小為: %1$s,</string>
<string name="is_send_multi_image">是否發送這些原始圖片?</string>
<string name="waitfor_image_local">正在打開相冊,請稍候\u2026</string>
<string name="recapture">重拍</string>
<string name="image_show_error">圖片顯示異常</string>
<string name="memory_out">內存不足</string>
<string name="choose_from_photo_album">從手機相冊選擇</string>
<string name="choose">選取</string>
<string name="edit">編輯</string>
<string name="crop">裁剪</string>
<!-- 消息類型 -->
<string name="msg_type_image">圖片</string>
<string name="msg_type_audio">語音</string>
<!-- 查看大圖 -->
<string name="download_picture_fail">圖片下載失敗</string>
<string name="look_up_original_photo_format">查看原圖(%s</string>
<!--全文檢索-->
<string name="fts_enable">全文檢索(FTS4)</string>
<string name="fts_prefix_hit">前綴匹配高亮檢索結果</string>
<string name="msg_search">全文檢索</string>
<string name="msg_search_limit">全文檢索顯示條數</string>
<string name="message_hint">請輸入消息</string>
<string name="layout_nim_advanced_team_announce_list_item_01">3月6日 10:13</string>
<string name="layout_nim_advanced_team_info_activity_01"></string>
<string name="layout_nim_advanced_team_info_activity_02">創建</string>
<string name="layout_nim_contacts_select_01">確定(0)</string>
<string name="layout_nim_contact_loading_frame_01">加載中...</string>
<string name="layout_nim_mass_message_activity_01">帳號/群組id</string>
<string name="layout_nim_mass_message_activity_02">時間間隔(ms):</string>
<string name="layout_nim_message_fragment_01">語音派對</string>
<string name="layout_nim_message_item_robot_01">繼續對話</string>
<string name="layout_nim_voice_trans_layout_01">取消</string>
<string name="api_wrapper_messagerevoketip_01"></string>
<string name="api_wrapper_messagerevoketip_02">對方</string>
<string name="api_wrapper_messagerevoketip_03">撤回了一條消息</string>
<string name="api_wrapper_messagerevoketip_04"></string>
<string name="api_wrapper_messagerevoketip_05">管理員 </string>
<string name="api_wrapper_messagerevoketip_06">群主 </string>
<string name="api_wrapper_messagerevoketip_07">撤回了一條成員消息</string>
<string name="api_wrapper_messagerevoketip_08">撤回了一條消息</string>
<string name="ait_selector_aitcontactselectoractivity_01">選擇提醒的人</string>
<string name="ait_selector_aitcontactselectoractivity_02">機器人</string>
<string name="ait_selector_aitcontactselectoractivity_03">群成員</string>
<string name="chatroom_fragment_chatroommessagefragment_01">用戶被禁言</string>
<string name="chatroom_fragment_chatroommessagefragment_02">用戶被禁言</string>
<string name="chatroom_fragment_chatroommessagefragment_03">全體禁言</string>
<string name="chatroom_fragment_chatroommessagefragment_04">全體禁言</string>
<string name="chatroom_fragment_chatroommessagefragment_05">消息發送失敗code:</string>
<string name="chatroom_fragment_chatroommessagefragment_06">消息發送失敗code:</string>
<string name="chatroom_fragment_chatroommessagefragment_07">消息發送失敗!</string>
<string name="chatroom_fragment_chatroommessagefragment_08">消息發送失敗!</string>
<string name="chatroom_helper_chatroomnotificationhelper_01">歡迎</string>
<string name="chatroom_helper_chatroomnotificationhelper_02">進入直播間</string>
<string name="chatroom_helper_chatroomnotificationhelper_03">離開了直播間</string>
<string name="chatroom_helper_chatroomnotificationhelper_04">被管理員拉入黑名單</string>
<string name="chatroom_helper_chatroomnotificationhelper_05">被管理員解除拉黑</string>
<string name="chatroom_helper_chatroomnotificationhelper_06">被管理員禁言</string>
<string name="chatroom_helper_chatroomnotificationhelper_07">被管理員解除禁言</string>
<string name="chatroom_helper_chatroomnotificationhelper_08">被任命管理員身份</string>
<string name="chatroom_helper_chatroomnotificationhelper_09">被解除管理員身份</string>
<string name="chatroom_helper_chatroomnotificationhelper_010">被設為普通成員</string>
<string name="chatroom_helper_chatroomnotificationhelper_011">被取消普通成員</string>
<string name="chatroom_helper_chatroomnotificationhelper_012">直播間被關閉</string>
<string name="chatroom_helper_chatroomnotificationhelper_013">直播間信息已更新</string>
<string name="chatroom_helper_chatroomnotificationhelper_014">被踢出直播間</string>
<string name="chatroom_helper_chatroomnotificationhelper_015">被臨時禁言</string>
<string name="chatroom_helper_chatroomnotificationhelper_016">被解除臨時禁言</string>
<string name="chatroom_helper_chatroomnotificationhelper_017">更新了自己的角色信息</string>
<string name="chatroom_helper_chatroomnotificationhelper_018">麥序隊列中有變更</string>
<string name="chatroom_helper_chatroomnotificationhelper_019">全體禁言,管理員可發言</string>
<string name="chatroom_helper_chatroomnotificationhelper_020">解除全體禁言</string>
<string name="chatroom_helper_chatroomnotificationhelper_021">批量變更</string>
<string name="chatroom_helper_chatroomnotificationhelper_022"></string>
<string name="chatroom_module_chatroommsglistpanel_01">路徑錯誤</string>
<string name="chatroom_module_chatroommsglistpanel_02">路徑錯誤</string>
<string name="business_contact_contactsfragment_01">共有好友</string>
<string name="business_contact_contactsfragment_02"></string>
<string name="core_viewholder_msgholder_01">%d條相關聊天記錄</string>
<string name="selector_activity_contactselectactivity_01">聯系人選擇器</string>
<string name="selector_activity_contactselectactivity_02">最多選擇</string>
<string name="selector_activity_contactselectactivity_03"></string>
<string name="selector_activity_contactselectactivity_04">至少選擇</string>
<string name="selector_activity_contactselectactivity_05"></string>
<string name="business_recent_teammemberaithelper_01">[有人@你] </string>
<string name="business_recent_teammemberaithelper_02">(\\[有人@你\\])</string>
<string name="elements_element_imageelement_01">屬性名</string>
<string name="elements_element_imageelement_02">屬性值</string>
<string name="elements_element_imageelement_03">圖片寬度</string>
<string name="elements_element_imageelement_04">圖片高度</string>
<string name="elements_element_textelement_01">百分比 | 指定像素</string>
<string name="session_activity_p2pmessageactivity_01">對方正在輸入...</string>
<string name="session_activity_p2pmessageactivity_02">對方正在輸入...</string>
<string name="session_activity_teammessageactivity_01">獲取群組信息失敗!</string>
<string name="session_activity_teammessageactivity_02">獲取群組信息失敗!</string>
<string name="session_activity_teammessageactivity_03">人)</string>
<string name="session_activity_teammessageactivity_04">群聊</string>
<string name="session_activity_voicetrans_01">正在轉換</string>
<string name="session_activity_voicetrans_02">參數錯誤</string>
<string name="session_activity_watchmessagepictureactivity_01">圖片</string>
<string name="session_activity_watchmessagepictureactivity_02">圖片發送於%s</string>
<string name="session_activity_watchvideoactivity_01">視頻發送於%s</string>
<string name="session_activity_watchvideoactivity_02">大小: </string>
<string name="session_activity_watchvideoactivity_03">大小: </string>
<string name="session_activity_watchvideoactivity_04">,時長: </string>
<string name="session_activity_watchvideoactivity_05"></string>
<string name="session_adapter_mediaadapter_01">yyyy年MM月</string>
<string name="session_fragment_messagefragment_01">發送失敗Hiyoo提醒您文明用語~</string>
<string name="session_fragment_messagefragment_02">發送失敗Hiyoo提醒您文明用語~</string>
<string name="session_helper_teamnotificationhelper_01">邀請 </string>
<string name="session_helper_teamnotificationhelper_02"> 加入群</string>
<string name="session_helper_teamnotificationhelper_03"> 加入討論組</string>
<string name="session_helper_teamnotificationhelper_04"> 已被移出群</string>
<string name="session_helper_teamnotificationhelper_05"> 已被移出討論組</string>
<string name="session_helper_teamnotificationhelper_06"> 離開了群</string>
<string name="session_helper_teamnotificationhelper_07"> 離開了討論組</string>
<string name="session_helper_teamnotificationhelper_08"> 解散了群</string>
<string name="session_helper_teamnotificationhelper_09">群名稱被更新為 </string>
<string name="session_helper_teamnotificationhelper_010">群介紹被更新為 </string>
<string name="session_helper_teamnotificationhelper_011">未設置</string>
<string name="session_helper_teamnotificationhelper_012">群身份驗證權限更新為</string>
<string name="session_helper_teamnotificationhelper_013">群擴展字段被更新為 </string>
<string name="session_helper_teamnotificationhelper_014">群擴展字段(服務器)被更新為 </string>
<string name="session_helper_teamnotificationhelper_015">群頭像已更新</string>
<string name="session_helper_teamnotificationhelper_016">群邀請他人權限被更新為 </string>
<string name="session_helper_teamnotificationhelper_017">群資料修改權限被更新為 </string>
<string name="session_helper_teamnotificationhelper_018">群被邀請人身份驗證權限被更新為 </string>
<string name="session_helper_teamnotificationhelper_019">群擴展字段修改權限被更新為 </string>
<string name="session_helper_teamnotificationhelper_020">取消群全員禁言</string>
<string name="session_helper_teamnotificationhelper_021">群全員禁言</string>
<string name="session_helper_teamnotificationhelper_022"></string>
<string name="session_helper_teamnotificationhelper_023">被更新為 </string>
<string name="session_helper_teamnotificationhelper_024">未知通知</string>
<string name="session_helper_teamnotificationhelper_025">管理員通過用戶 </string>
<string name="session_helper_teamnotificationhelper_026"> 的入群申請</string>
<string name="session_helper_teamnotificationhelper_027"> 將群轉移給 </string>
<string name="session_helper_teamnotificationhelper_028"> 被任命為管理員</string>
<string name="session_helper_teamnotificationhelper_029"> 被撤銷管理員身份</string>
<string name="session_helper_teamnotificationhelper_030"> 接受了 </string>
<string name="session_helper_teamnotificationhelper_031"> 的入群邀請</string>
<string name="session_helper_teamnotificationhelper_032">被管理員</string>
<string name="session_helper_teamnotificationhelper_033">禁言</string>
<string name="session_helper_teamnotificationhelper_034">解除禁言</string>
<string name="session_helper_videomessagehelper_01">拍攝視頻</string>
<string name="session_helper_videomessagehelper_02">從相冊中選擇視頻</string>
<string name="module_input_inputpanel_01">禁言中,快找管理員解除禁言吧!</string>
<string name="module_input_inputpanel_02">等級不夠</string>
<string name="module_input_inputpanel_03">等級不夠</string>
<string name="module_input_inputpanel_04">等級不夠</string>
<string name="module_input_inputpanel_05">貼圖消息</string>
<string name="module_input_inputpanel_06">暫未達到可發起私聊等級</string>
<string name="module_input_inputpanel_07">請輸入消息</string>
<string name="module_list_messagelistpanelex_01">路徑錯誤</string>
<string name="module_list_messagelistpanelex_02">路徑錯誤</string>
<string name="module_list_messagelistpanelex_03">切換成揚聲器播放</string>
<string name="module_list_messagelistpanelex_04">切換成聽筒播放</string>
<string name="module_list_messagelistpanelex_05">選擇轉發的人</string>
<string name="module_list_messagelistpanelex_06">選擇轉發的群</string>
<string name="module_list_messagelistpanelex_07">該類型不支持轉發</string>
<string name="module_list_messagelistpanelex_08">該類型不支持轉發</string>
<string name="session_viewholder_msgviewholdernotification_01">群公告:</string>
<string name="session_viewholder_msgviewholdertip_01">提示:</string>
<string name="viewholder_robot_robotlinkview_01">[復雜按鈕模板觸發消息]</string>
<string name="team_activity_advancedteaminfoactivity_01">共%d人</string>
<string name="team_activity_advancedteaminfoactivity_02">共%d人</string>
<string name="team_activity_advancedteaminfoactivity_03">選擇群轉移的對象</string>
<string name="team_activity_advancedteaminfoactivity_04">添加群成員成功</string>
<string name="team_activity_advancedteaminfoactivity_05">添加群成員成功</string>
<string name="team_activity_advancedteaminfoactivity_06">成員不存在</string>
<string name="team_activity_advancedteaminfoactivity_07">成員不存在</string>
<string name="team_activity_advancedteaminfoactivity_08">該成員已被禁言,請先取消禁言</string>
<string name="team_activity_advancedteaminfoactivity_09">該成員已被禁言,請先取消禁言</string>
<string name="team_activity_advancedteaminfoactivity_010">共%d人</string>
<string name="team_activity_advancedteammemberinfoactivity_01">群禁言成功</string>
<string name="team_activity_advancedteammemberinfoactivity_02">群禁言成功</string>
<string name="team_activity_advancedteammemberinfoactivity_03">取消群禁言成功</string>
<string name="team_activity_advancedteammemberinfoactivity_04">取消群禁言成功</string>
<string name="team_activity_normalteaminfoactivity_01">開啟消息提醒</string>
<string name="team_activity_normalteaminfoactivity_02">開啟消息提醒</string>
<string name="team_activity_normalteaminfoactivity_03">關閉消息提醒</string>
<string name="team_activity_normalteaminfoactivity_04">關閉消息提醒</string>
<string name="team_activity_normalteaminfoactivity_05">獲取成員列表失敗</string>
<string name="team_activity_normalteaminfoactivity_06">獲取成員列表失敗</string>
<string name="team_activity_normalteaminfoactivity_07">邀請成員</string>
<string name="team_helper_teamhelper_01">好友:</string>
<string name="team_helper_teamhelper_02">所在群組數量達到上限,邀請失敗</string>
<string name="team_helper_teamhelper_03"></string>
<string name="team_helper_teamhelper_04"></string>
<string name="business_uinfo_userinfohelper_01">我的電腦</string>
<string name="ui_ptr2_pulltorefreshlayout_01">松開刷新</string>
<string name="ui_ptr2_pulltorefreshlayout_02">下拉刷新</string>
<string name="util_sys_timeutil_01">上午</string>
<string name="util_sys_timeutil_02">下午</string>
<string name="util_sys_timeutil_03">今天</string>
<string name="util_sys_timeutil_04">昨天</string>
<string name="util_sys_timeutil_05">前天</string>
<string name="util_sys_timeutil_06">淩晨 </string>
<string name="util_sys_timeutil_07">上午 </string>
<string name="util_sys_timeutil_08">下午 </string>
<string name="util_sys_timeutil_09">晚上 </string>
<string name="util_sys_timeutil_010">星期日</string>
<string name="util_sys_timeutil_011">星期一</string>
<string name="util_sys_timeutil_012">星期二</string>
<string name="util_sys_timeutil_013">星期三</string>
<string name="util_sys_timeutil_014">星期四</string>
<string name="util_sys_timeutil_015">星期五</string>
<string name="util_sys_timeutil_016">星期六</string>
<string name="util_sys_timeutil_017"></string>
<string name="util_sys_timeutil_018">小時</string>
<string name="util_sys_timeutil_019"></string>
<string name="util_sys_timeutil_020"></string>
<string name="util_sys_timeutil_021"></string>
<string name="util_sys_timeutil_022">小時</string>
<string name="util_sys_timeutil_023"></string>
<string name="util_sys_timeutil_024"></string>
<string name="impl_customization_defaultrecentcustomization_01">[圖片]</string>
<string name="impl_customization_defaultrecentcustomization_02">[視頻]</string>
<string name="impl_customization_defaultrecentcustomization_03">[語音消息]</string>
<string name="impl_customization_defaultrecentcustomization_04">[位置]</string>
<string name="impl_customization_defaultrecentcustomization_05">[文件]</string>
<string name="impl_customization_defaultrecentcustomization_06">[通知提醒]</string>
<string name="impl_customization_defaultrecentcustomization_07">[機器人消息]</string>
<string name="impl_customization_defaultrecentcustomization_08">[自定義消息] </string>
<string name="xchat_android_core_file_filemodel_01"> 為空或者該文件不存在!</string>
</resources>

View File

@@ -0,0 +1,434 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- common -->
<string name="empty"></string>
<string name="ok">確定</string>
<string name="cancel">取消</string>
<string name="clear_empty">清空</string>
<string name="iknow">知道了</string>
<string name="search">搜索</string>
<string name="remove">移除</string>
<string name="add">添加</string>
<string name="create">新建</string>
<string name="without_content">暫無</string>
<string name="network_is_not_available">網絡連接失敗,請檢查你的網絡設置</string>
<string name="open">開啟</string>
<string name="close">關閉</string>
<string name="menu">菜單</string>
<string name="now_allow_space">不能含有空格</string>
<string name="readed">已讀</string>
<!-- session -->
<string name="input_panel_photo">圖 片</string>
<string name="input_panel_video">視 頻</string>
<string name="input_panel_location">位 置</string>
<string name="input_panel_take">拍 攝</string>
<string name="im_choose_pic">請選擇JPG PNG BMP GIF格式的圖片文件</string>
<string name="repeat_download_message">重新下載?</string>
<string name="repeat_send_has_blank">重 發</string>
<string name="repeat_send_message">重發消息?</string>
<string name="copy_has_blank">復 製</string>
<string name="delete_has_blank">刪 除</string>
<string name="voice_to_text">轉文字</string>
<string name="forward_to_person">轉發到個人</string>
<string name="forward_to_team">轉發到群組</string>
<string name="withdrawn_msg">撤 回</string>
<string name="save">保存</string>
<string name="done">完成</string>
<string name="main_msg_list_delete_chatting">刪除該聊天</string>
<string name="main_msg_list_sticky_on_top">置頂該聊天</string>
<string name="main_msg_list_clear_sticky_on_top">取消置頂</string>
<string name="save_to_device">保存到手機</string>
<string name="picture_save_fail">圖片保存失敗</string>
<string name="picture_save_to">圖片已保存到手機</string>
<string name="search_join_team">搜索加入群組</string>
<string name="file_transfer_state_downloaded">已下載</string>
<string name="file_transfer_state_undownload">未下載</string>
<string name="trans_voice_failed">語音轉化失敗</string>
<string name="team_invalid_tip">您已退出該群</string>
<string name="normal_team_invalid_tip">您已退出該討論組</string>
<string name="team_send_message_not_allow">您已不在該群,不能發送消息</string>
<string name="send">發送</string>
<string name="unsupport_title">無法顯示該內容</string>
<string name="unsupport_desc">客戶端版本不支持該內容</string>
<string name="revoke_failed">發送時間超過2分鐘的消息不能被撤回</string>
<string name="pic_and_video">圖片和視頻</string>
<string name="black_list_send_tip">消息已發送,但對方拒收</string>
<!-- 語音 -->
<string name="record_audio">按住 說話</string>
<string name="record_audio_end">松開 結束</string>
<string name="sdcard_not_exist_error">請插入SD卡</string>
<string name="recording_error">錄音失敗,請重試</string>
<string name="recording_init_failed">初始化錄音失敗</string>
<string name="recording_cancel">手指上滑,取消發送</string>
<string name="timer_default">00:00</string>
<string name="recording_cancel_tip">松開手指,取消發送</string>
<string name="recording_max_time">錄音達到最大時間,是否發送?</string>
<!-- 拍照視頻 -->
<string name="gallery_invalid">你的手機沒有圖庫程序</string>
<string name="sdcard_not_enough_head_error">SD卡被拔出或存儲空間不足無法保存頭像</string>
<string name="sdcard_not_enough_error">存儲空間不足,無法保存此次多媒體消息</string>
<string name="download_video">正在下載視頻</string>
<string name="download_video_fail">視頻下載失敗,請重試</string>
<string name="look_video_fail">無法播放該視頻</string>
<string name="look_video_fail_try_again">暫時無法播放視頻,請重試</string>
<string name="video_play">視頻播放</string>
<string name="video_record">視頻錄製</string>
<string name="video_record_symbol">REC</string>
<string name="video_record_begin">開始錄製</string>
<string name="connect_vedio_device_fail">無法連接視頻設備 ,請稍候再試</string>
<string name="capture_video_size_in_kb">視頻文件大小為: %1$dKB,</string>
<string name="capture_video_size_in_mb">視頻文件大小為: %1$.2fMB,</string>
<string name="is_send_video">是否發送該視頻?</string>
<string name="start_camera_to_record_failed">啟動攝像頭錄製視頻失敗</string>
<string name="stop_fail_maybe_stopped">停止失敗,可能已經停止</string>
<string name="video_exception">視頻文件異常</string>
<string name="im_choose_video_file_size_too_large">視頻文件過大系統限製為20MB</string>
<string name="im_choose_video">請選擇3GP MP4格式的視頻文件</string>
<string name="video_record_short">錄製視頻太短</string>
<string name="download_progress_description">%1$s%2$s/%3$s</string>
<!-- 聯系人選擇器 -->
<string name="contact_selector">聯系人選擇器</string>
<!-- team -->
<string name="team_need_authentication">需要身份驗證</string>
<string name="team_allow_anyone_join">允許任何人加入</string>
<string name="team_not_allow_anyone_join">不允許任何人申請加入</string>
<string name="team_admin_invite">管理員邀請</string>
<string name="team_everyone_invite">所有人邀請</string>
<string name="team_admin_update">管理員修改</string>
<string name="team_everyone_update">所有人修改</string>
<string name="team_invitee_need_authen">需要驗證</string>
<string name="team_invitee_not_need_authen">不需要驗證</string>
<string name="team_notify_mute">不提醒任何消息</string>
<string name="team_notify_all">提醒所有消息</string>
<string name="team_notify_manager">只提醒管理員消息</string>
<string name="team_nickname">群昵稱</string>
<string name="team_nickname_none">未填寫</string>
<string name="team_identity">身份</string>
<string name="remove_member">移出本群</string>
<string name="team_member_info">成員信息</string>
<string name="team_admin">管理員</string>
<string name="open_redpackage_notice">開啟全服紅包</string>
<string name="close_redpackage_notice">關閉全服紅包</string>
<string name="team_creator">群主</string>
<string name="team_member">群成員</string>
<string name="update_success">保存成功</string>
<string name="update_failed">保存失敗, code:%d</string>
<string name="no_permission">沒有權限</string>
<string name="set_team_admin">設為管理員</string>
<string name="cancel_team_admin">取消管理員</string>
<string name="team_member_remove_confirm">確定要將其移出群組麽?</string>
<string name="team_annourcement">群公告</string>
<string name="invite_member">邀請成員</string>
<string name="team_name">群名稱</string>
<string name="team_introduce">群介紹</string>
<string name="team_extension">擴展示例</string>
<string name="click_set">點擊設置</string>
<string name="create_advanced_team">創建高級群</string>
<string name="reach_team_member_capacity">成員數量不能超過%1$d</string>
<string name="team_authentication">身份驗證</string>
<string name="team_invite">邀請他人權限</string>
<string name="team_info_update">群資料修改權限</string>
<string name="team_invitee_authentication">被邀請人身份驗證</string>
<string name="create_team">創建群</string>
<string name="over_team_member_capacity">邀請失敗,成員人數上限為%1$d人</string>
<string name="over_team_capacity">創建失敗,創建群數量達到限製</string>
<string name="create_team_failed">創建失敗</string>
<string name="create_team_success">創建成功</string>
<string name="team_announce_title">標題</string>
<string name="team_announce_content">公告內容</string>
<string name="team_announce_notice">請輸入群公告標題</string>
<string name="my_team_card">我的群名片</string>
<string name="team_introduce_hint">點擊填寫群介紹</string>
<string name="team_extension_hint">點擊修改擴展內容</string>
<string name="team_announce_hint">點擊填寫群公告</string>
<string name="team_notification_config">消息提醒</string>
<string name="team_transfer_without_member">沒有可轉移的群成員</string>
<string name="team_invite_members_success">群成員邀請已發出</string>
<string name="team_invite_members_failed">群成員邀請失敗</string>
<string name="team_transfer_success">群轉移成功</string>
<string name="team_transfer_failed">群轉移失敗</string>
<string name="quit_team_success">您已退群</string>
<string name="quit_team_failed">退群失敗</string>
<string name="quit_normal_team_success">您已經退出討論組</string>
<string name="quit_normal_team_failed">退出討論組失敗</string>
<string name="dismiss_team_success">群已解散</string>
<string name="dismiss_team_failed">解散群失敗</string>
<string name="dismiss_team">解散本群</string>
<string name="transfer_team">轉讓群</string>
<string name="quit_team">退出群</string>
<string name="quit_normal_team">退出討論組</string>
<string name="team_apply_to_join">申請加入</string>
<string name="advanced_team">高級群</string>
<string name="normal_team">討論組</string>
<string name="team_name_toast">群名稱不能為空</string>
<string name="not_allow_empty">不能為空</string>
<string name="chat_setting">聊天信息</string>
<string name="team_settings_name">設置名稱</string>
<string name="normal_team_name">討論組名稱</string>
<string name="remove_member_success">移除成員成功</string>
<string name="remove_member_failed">移除成員失敗</string>
<string name="invite_member_success">邀請成員成功</string>
<string name="invite_member_failed">邀請成員失敗</string>
<string name="team_create_notice">請添加群成員</string>
<string name="team_settings_set_name">取個名字吧</string>
<string name="team_not_exist">該群不存在</string>
<string name="normal_team_not_exist">該討論組不存在</string>
<string name="mute_msg">設置禁言</string>
<string name="set_head_image">設置頭像</string>
<string name="team_update_cancel">取消更新</string>
<string name="team_update_failed">群頭像設置失敗</string>
<string name="reach_capacity">人數已達上限</string>
<!-- 消息搜索 -->
<string name="message_search_no_result">無結果</string>
<string name="message_search_title">查看聊天內容</string>
<!-- image picker -->
<string name="picker_image_preview">預覽</string>
<string name="picker_image_send">發送</string>
<string name="picker_image_folder">相冊</string>
<string name="picker_image_album_loading">相冊加載中…</string>
<string name="picker_image_album_empty">相冊中沒有圖片!</string>
<string name="picker_image_folder_info">共%d張</string>
<string name="picker_image_exceed_max_image_select">最多選擇%d張圖片</string>
<string name="picker_image_send_select">完成(%d</string>
<string name="picker_image_preview_original">發送原圖</string>
<string name="picker_image_preview_original_select">發送原圖(%s</string>
<string name="picker_image_error">獲取圖片出錯</string>
<string name="image_compressed_size">該原始圖片大小為: %1$s,</string>
<string name="unknow_size">未知大小</string>
<string name="is_send_image">是否發送該原始圖片?</string>
<string name="multi_image_compressed_size">原始圖片總大小為: %1$s,</string>
<string name="is_send_multi_image">是否發送這些原始圖片?</string>
<string name="waitfor_image_local">正在打開相冊,請稍候\u2026</string>
<string name="recapture">重拍</string>
<string name="image_show_error">圖片顯示異常</string>
<string name="memory_out">內存不足</string>
<string name="choose_from_photo_album">從手機相冊選擇</string>
<string name="choose">選取</string>
<string name="edit">編輯</string>
<string name="crop">裁剪</string>
<!-- 消息類型 -->
<string name="msg_type_image">圖片</string>
<string name="msg_type_audio">語音</string>
<!-- 查看大圖 -->
<string name="download_picture_fail">圖片下載失敗</string>
<string name="look_up_original_photo_format">查看原圖(%s</string>
<!--全文檢索-->
<string name="fts_enable">全文檢索(FTS4)</string>
<string name="fts_prefix_hit">前綴匹配高亮檢索結果</string>
<string name="msg_search">全文檢索</string>
<string name="msg_search_limit">全文檢索顯示條數</string>
<string name="message_hint">請輸入消息</string>
<string name="layout_nim_advanced_team_announce_list_item_01">3月6日 10:13</string>
<string name="layout_nim_advanced_team_info_activity_01"></string>
<string name="layout_nim_advanced_team_info_activity_02">創建</string>
<string name="layout_nim_contacts_select_01">確定(0)</string>
<string name="layout_nim_contact_loading_frame_01">加載中...</string>
<string name="layout_nim_mass_message_activity_01">帳號/群組id</string>
<string name="layout_nim_mass_message_activity_02">時間間隔(ms):</string>
<string name="layout_nim_message_fragment_01">語音派對</string>
<string name="layout_nim_message_item_robot_01">繼續對話</string>
<string name="layout_nim_voice_trans_layout_01">取消</string>
<string name="api_wrapper_messagerevoketip_01"></string>
<string name="api_wrapper_messagerevoketip_02">對方</string>
<string name="api_wrapper_messagerevoketip_03">撤回了一條消息</string>
<string name="api_wrapper_messagerevoketip_04"></string>
<string name="api_wrapper_messagerevoketip_05">管理員 </string>
<string name="api_wrapper_messagerevoketip_06">群主 </string>
<string name="api_wrapper_messagerevoketip_07">撤回了一條成員消息</string>
<string name="api_wrapper_messagerevoketip_08">撤回了一條消息</string>
<string name="ait_selector_aitcontactselectoractivity_01">選擇提醒的人</string>
<string name="ait_selector_aitcontactselectoractivity_02">機器人</string>
<string name="ait_selector_aitcontactselectoractivity_03">群成員</string>
<string name="chatroom_fragment_chatroommessagefragment_01">用戶被禁言</string>
<string name="chatroom_fragment_chatroommessagefragment_02">用戶被禁言</string>
<string name="chatroom_fragment_chatroommessagefragment_03">全體禁言</string>
<string name="chatroom_fragment_chatroommessagefragment_04">全體禁言</string>
<string name="chatroom_fragment_chatroommessagefragment_05">消息發送失敗code:</string>
<string name="chatroom_fragment_chatroommessagefragment_06">消息發送失敗code:</string>
<string name="chatroom_fragment_chatroommessagefragment_07">消息發送失敗!</string>
<string name="chatroom_fragment_chatroommessagefragment_08">消息發送失敗!</string>
<string name="chatroom_helper_chatroomnotificationhelper_01">歡迎</string>
<string name="chatroom_helper_chatroomnotificationhelper_02">進入直播間</string>
<string name="chatroom_helper_chatroomnotificationhelper_03">離開了直播間</string>
<string name="chatroom_helper_chatroomnotificationhelper_04">被管理員拉入黑名單</string>
<string name="chatroom_helper_chatroomnotificationhelper_05">被管理員解除拉黑</string>
<string name="chatroom_helper_chatroomnotificationhelper_06">被管理員禁言</string>
<string name="chatroom_helper_chatroomnotificationhelper_07">被管理員解除禁言</string>
<string name="chatroom_helper_chatroomnotificationhelper_08">被任命管理員身份</string>
<string name="chatroom_helper_chatroomnotificationhelper_09">被解除管理員身份</string>
<string name="chatroom_helper_chatroomnotificationhelper_010">被設為普通成員</string>
<string name="chatroom_helper_chatroomnotificationhelper_011">被取消普通成員</string>
<string name="chatroom_helper_chatroomnotificationhelper_012">直播間被關閉</string>
<string name="chatroom_helper_chatroomnotificationhelper_013">直播間信息已更新</string>
<string name="chatroom_helper_chatroomnotificationhelper_014">被踢出直播間</string>
<string name="chatroom_helper_chatroomnotificationhelper_015">被臨時禁言</string>
<string name="chatroom_helper_chatroomnotificationhelper_016">被解除臨時禁言</string>
<string name="chatroom_helper_chatroomnotificationhelper_017">更新了自己的角色信息</string>
<string name="chatroom_helper_chatroomnotificationhelper_018">麥序隊列中有變更</string>
<string name="chatroom_helper_chatroomnotificationhelper_019">全體禁言,管理員可發言</string>
<string name="chatroom_helper_chatroomnotificationhelper_020">解除全體禁言</string>
<string name="chatroom_helper_chatroomnotificationhelper_021">批量變更</string>
<string name="chatroom_helper_chatroomnotificationhelper_022"></string>
<string name="chatroom_module_chatroommsglistpanel_01">路徑錯誤</string>
<string name="chatroom_module_chatroommsglistpanel_02">路徑錯誤</string>
<string name="business_contact_contactsfragment_01">共有好友</string>
<string name="business_contact_contactsfragment_02"></string>
<string name="core_viewholder_msgholder_01">%d條相關聊天記錄</string>
<string name="selector_activity_contactselectactivity_01">聯系人選擇器</string>
<string name="selector_activity_contactselectactivity_02">最多選擇</string>
<string name="selector_activity_contactselectactivity_03"></string>
<string name="selector_activity_contactselectactivity_04">至少選擇</string>
<string name="selector_activity_contactselectactivity_05"></string>
<string name="business_recent_teammemberaithelper_01">[有人@你] </string>
<string name="business_recent_teammemberaithelper_02">(\\[有人@你\\])</string>
<string name="elements_element_imageelement_01">屬性名</string>
<string name="elements_element_imageelement_02">屬性值</string>
<string name="elements_element_imageelement_03">圖片寬度</string>
<string name="elements_element_imageelement_04">圖片高度</string>
<string name="elements_element_textelement_01">百分比 | 指定像素</string>
<string name="session_activity_p2pmessageactivity_01">對方正在輸入...</string>
<string name="session_activity_p2pmessageactivity_02">對方正在輸入...</string>
<string name="session_activity_teammessageactivity_01">獲取群組信息失敗!</string>
<string name="session_activity_teammessageactivity_02">獲取群組信息失敗!</string>
<string name="session_activity_teammessageactivity_03">人)</string>
<string name="session_activity_teammessageactivity_04">群聊</string>
<string name="session_activity_voicetrans_01">正在轉換</string>
<string name="session_activity_voicetrans_02">參數錯誤</string>
<string name="session_activity_watchmessagepictureactivity_01">圖片</string>
<string name="session_activity_watchmessagepictureactivity_02">圖片發送於%s</string>
<string name="session_activity_watchvideoactivity_01">視頻發送於%s</string>
<string name="session_activity_watchvideoactivity_02">大小: </string>
<string name="session_activity_watchvideoactivity_03">大小: </string>
<string name="session_activity_watchvideoactivity_04">,時長: </string>
<string name="session_activity_watchvideoactivity_05"></string>
<string name="session_adapter_mediaadapter_01">yyyy年MM月</string>
<string name="session_fragment_messagefragment_01">發送失敗Hiyoo提醒您文明用語~</string>
<string name="session_fragment_messagefragment_02">發送失敗Hiyoo提醒您文明用語~</string>
<string name="session_helper_teamnotificationhelper_01">邀請 </string>
<string name="session_helper_teamnotificationhelper_02"> 加入群</string>
<string name="session_helper_teamnotificationhelper_03"> 加入討論組</string>
<string name="session_helper_teamnotificationhelper_04"> 已被移出群</string>
<string name="session_helper_teamnotificationhelper_05"> 已被移出討論組</string>
<string name="session_helper_teamnotificationhelper_06"> 離開了群</string>
<string name="session_helper_teamnotificationhelper_07"> 離開了討論組</string>
<string name="session_helper_teamnotificationhelper_08"> 解散了群</string>
<string name="session_helper_teamnotificationhelper_09">群名稱被更新為 </string>
<string name="session_helper_teamnotificationhelper_010">群介紹被更新為 </string>
<string name="session_helper_teamnotificationhelper_011">未設置</string>
<string name="session_helper_teamnotificationhelper_012">群身份驗證權限更新為</string>
<string name="session_helper_teamnotificationhelper_013">群擴展字段被更新為 </string>
<string name="session_helper_teamnotificationhelper_014">群擴展字段(服務器)被更新為 </string>
<string name="session_helper_teamnotificationhelper_015">群頭像已更新</string>
<string name="session_helper_teamnotificationhelper_016">群邀請他人權限被更新為 </string>
<string name="session_helper_teamnotificationhelper_017">群資料修改權限被更新為 </string>
<string name="session_helper_teamnotificationhelper_018">群被邀請人身份驗證權限被更新為 </string>
<string name="session_helper_teamnotificationhelper_019">群擴展字段修改權限被更新為 </string>
<string name="session_helper_teamnotificationhelper_020">取消群全員禁言</string>
<string name="session_helper_teamnotificationhelper_021">群全員禁言</string>
<string name="session_helper_teamnotificationhelper_022"></string>
<string name="session_helper_teamnotificationhelper_023">被更新為 </string>
<string name="session_helper_teamnotificationhelper_024">未知通知</string>
<string name="session_helper_teamnotificationhelper_025">管理員通過用戶 </string>
<string name="session_helper_teamnotificationhelper_026"> 的入群申請</string>
<string name="session_helper_teamnotificationhelper_027"> 將群轉移給 </string>
<string name="session_helper_teamnotificationhelper_028"> 被任命為管理員</string>
<string name="session_helper_teamnotificationhelper_029"> 被撤銷管理員身份</string>
<string name="session_helper_teamnotificationhelper_030"> 接受了 </string>
<string name="session_helper_teamnotificationhelper_031"> 的入群邀請</string>
<string name="session_helper_teamnotificationhelper_032">被管理員</string>
<string name="session_helper_teamnotificationhelper_033">禁言</string>
<string name="session_helper_teamnotificationhelper_034">解除禁言</string>
<string name="session_helper_videomessagehelper_01">拍攝視頻</string>
<string name="session_helper_videomessagehelper_02">從相冊中選擇視頻</string>
<string name="module_input_inputpanel_01">禁言中,快找管理員解除禁言吧!</string>
<string name="module_input_inputpanel_02">等級不夠</string>
<string name="module_input_inputpanel_03">等級不夠</string>
<string name="module_input_inputpanel_04">等級不夠</string>
<string name="module_input_inputpanel_05">貼圖消息</string>
<string name="module_input_inputpanel_06">暫未達到可發起私聊等級</string>
<string name="module_input_inputpanel_07">請輸入消息</string>
<string name="module_list_messagelistpanelex_01">路徑錯誤</string>
<string name="module_list_messagelistpanelex_02">路徑錯誤</string>
<string name="module_list_messagelistpanelex_03">切換成揚聲器播放</string>
<string name="module_list_messagelistpanelex_04">切換成聽筒播放</string>
<string name="module_list_messagelistpanelex_05">選擇轉發的人</string>
<string name="module_list_messagelistpanelex_06">選擇轉發的群</string>
<string name="module_list_messagelistpanelex_07">該類型不支持轉發</string>
<string name="module_list_messagelistpanelex_08">該類型不支持轉發</string>
<string name="session_viewholder_msgviewholdernotification_01">群公告:</string>
<string name="session_viewholder_msgviewholdertip_01">提示:</string>
<string name="viewholder_robot_robotlinkview_01">[復雜按鈕模板觸發消息]</string>
<string name="team_activity_advancedteaminfoactivity_01">共%d人</string>
<string name="team_activity_advancedteaminfoactivity_02">共%d人</string>
<string name="team_activity_advancedteaminfoactivity_03">選擇群轉移的對象</string>
<string name="team_activity_advancedteaminfoactivity_04">添加群成員成功</string>
<string name="team_activity_advancedteaminfoactivity_05">添加群成員成功</string>
<string name="team_activity_advancedteaminfoactivity_06">成員不存在</string>
<string name="team_activity_advancedteaminfoactivity_07">成員不存在</string>
<string name="team_activity_advancedteaminfoactivity_08">該成員已被禁言,請先取消禁言</string>
<string name="team_activity_advancedteaminfoactivity_09">該成員已被禁言,請先取消禁言</string>
<string name="team_activity_advancedteaminfoactivity_010">共%d人</string>
<string name="team_activity_advancedteammemberinfoactivity_01">群禁言成功</string>
<string name="team_activity_advancedteammemberinfoactivity_02">群禁言成功</string>
<string name="team_activity_advancedteammemberinfoactivity_03">取消群禁言成功</string>
<string name="team_activity_advancedteammemberinfoactivity_04">取消群禁言成功</string>
<string name="team_activity_normalteaminfoactivity_01">開啟消息提醒</string>
<string name="team_activity_normalteaminfoactivity_02">開啟消息提醒</string>
<string name="team_activity_normalteaminfoactivity_03">關閉消息提醒</string>
<string name="team_activity_normalteaminfoactivity_04">關閉消息提醒</string>
<string name="team_activity_normalteaminfoactivity_05">獲取成員列表失敗</string>
<string name="team_activity_normalteaminfoactivity_06">獲取成員列表失敗</string>
<string name="team_activity_normalteaminfoactivity_07">邀請成員</string>
<string name="team_helper_teamhelper_01">好友:</string>
<string name="team_helper_teamhelper_02">所在群組數量達到上限,邀請失敗</string>
<string name="team_helper_teamhelper_03"></string>
<string name="team_helper_teamhelper_04"></string>
<string name="business_uinfo_userinfohelper_01">我的電腦</string>
<string name="ui_ptr2_pulltorefreshlayout_01">松開刷新</string>
<string name="ui_ptr2_pulltorefreshlayout_02">下拉刷新</string>
<string name="util_sys_timeutil_01">上午</string>
<string name="util_sys_timeutil_02">下午</string>
<string name="util_sys_timeutil_03">今天</string>
<string name="util_sys_timeutil_04">昨天</string>
<string name="util_sys_timeutil_05">前天</string>
<string name="util_sys_timeutil_06">淩晨 </string>
<string name="util_sys_timeutil_07">上午 </string>
<string name="util_sys_timeutil_08">下午 </string>
<string name="util_sys_timeutil_09">晚上 </string>
<string name="util_sys_timeutil_010">星期日</string>
<string name="util_sys_timeutil_011">星期一</string>
<string name="util_sys_timeutil_012">星期二</string>
<string name="util_sys_timeutil_013">星期三</string>
<string name="util_sys_timeutil_014">星期四</string>
<string name="util_sys_timeutil_015">星期五</string>
<string name="util_sys_timeutil_016">星期六</string>
<string name="util_sys_timeutil_017"></string>
<string name="util_sys_timeutil_018">小時</string>
<string name="util_sys_timeutil_019"></string>
<string name="util_sys_timeutil_020"></string>
<string name="util_sys_timeutil_021"></string>
<string name="util_sys_timeutil_022">小時</string>
<string name="util_sys_timeutil_023"></string>
<string name="util_sys_timeutil_024"></string>
<string name="impl_customization_defaultrecentcustomization_01">[圖片]</string>
<string name="impl_customization_defaultrecentcustomization_02">[視頻]</string>
<string name="impl_customization_defaultrecentcustomization_03">[語音消息]</string>
<string name="impl_customization_defaultrecentcustomization_04">[位置]</string>
<string name="impl_customization_defaultrecentcustomization_05">[文件]</string>
<string name="impl_customization_defaultrecentcustomization_06">[通知提醒]</string>
<string name="impl_customization_defaultrecentcustomization_07">[機器人消息]</string>
<string name="impl_customization_defaultrecentcustomization_08">[自定義消息] </string>
<string name="xchat_android_core_file_filemodel_01"> 為空或者該文件不存在!</string>
</resources>

View File

@@ -1,434 +1,435 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- common -->
<string name="empty"></string>
<string name="ok">確定</string>
<string name="cancel">取消</string>
<string name="clear_empty">清空</string>
<string name="iknow">知道了</string>
<string name="search">搜索</string>
<string name="remove">移除</string>
<string name="add">添加</string>
<string name="create">新建</string>
<string name="without_content">暫無</string>
<string name="network_is_not_available">網絡連接失敗,請檢查你的網絡設置</string>
<string name="open">開啟</string>
<string name="close">關閉</string>
<string name="menu">菜單</string>
<string name="now_allow_space">不能含有空格</string>
<string name="readed">已讀</string>
<!-- common -->
<string name="empty"></string>
<string name="ok">OK</string>
<string name="cancel">Cancel</string>
<string name="clear_empty">Clear</string>
<string name="iknow">I Know</string>
<string name="search">Search</string>
<string name="remove">Remove</string>
<string name="add">Add</string>
<string name="create">Create</string>
<string name="without_content">Empty</string>
<string name="network_is_not_available">Network connection failed, please check your network settings</string>
<string name="open">Open</string>
<string name="close">Close</string>
<string name="menu">Menu</string>
<string name="now_allow_space">Cannot contain spaces</string>
<string name="readed">Read</string>
<!-- session -->
<string name="input_panel_photo">圖 片</string>
<string name="input_panel_video">視 頻</string>
<string name="input_panel_location">位 置</string>
<string name="input_panel_take">拍 攝</string>
<string name="im_choose_pic">請選擇JPG PNG BMP GIF格式的圖片文件</string>
<string name="repeat_download_message">重新下載?</string>
<string name="repeat_send_has_blank">重 發</string>
<string name="repeat_send_message">重發消息?</string>
<string name="copy_has_blank">復 製</string>
<string name="delete_has_blank">刪 除</string>
<string name="voice_to_text">轉文字</string>
<string name="forward_to_person">轉發到個人</string>
<string name="forward_to_team">轉發到群組</string>
<string name="withdrawn_msg">撤 回</string>
<string name="save">保存</string>
<string name="done">完成</string>
<string name="main_msg_list_delete_chatting">刪除該聊天</string>
<string name="main_msg_list_sticky_on_top">置頂該聊天</string>
<string name="main_msg_list_clear_sticky_on_top">取消置頂</string>
<string name="save_to_device">保存到手機</string>
<string name="picture_save_fail">圖片保存失敗</string>
<string name="picture_save_to">圖片已保存到手機</string>
<string name="search_join_team">搜索加入群組</string>
<string name="file_transfer_state_downloaded">已下載</string>
<string name="file_transfer_state_undownload">未下載</string>
<string name="trans_voice_failed">語音轉化失敗</string>
<string name="team_invalid_tip">您已退出該群</string>
<string name="normal_team_invalid_tip">您已退出該討論組</string>
<string name="team_send_message_not_allow">您已不在該群,不能發送消息</string>
<string name="send">發送</string>
<string name="unsupport_title">無法顯示該內容</string>
<string name="unsupport_desc">客戶端版本不支持該內容</string>
<string name="revoke_failed">發送時間超過2分鐘的消息不能被撤回</string>
<string name="pic_and_video">圖片和視頻</string>
<string name="black_list_send_tip">消息已發送,但對方拒收</string>
<!-- session -->
<string name="input_panel_photo">Photo</string>
<string name="input_panel_video">Video</string>
<string name="input_panel_location">Location</string>
<string name="input_panel_take">Take</string>
<string name="im_choose_pic">Please choose an image file in JPG, PNG, BMP, or GIF format</string>
<string name="repeat_download_message">Download again?</string>
<string name="repeat_send_has_blank">Resend</string>
<string name="repeat_send_message">Resend message?</string>
<string name="copy_has_blank">Copy</string>
<string name="delete_has_blank">Delete</string>
<string name="voice_to_text">Voice to Text</string>
<string name="forward_to_person">Forward to Person</string>
<string name="forward_to_team">Forward to Team</string>
<string name="withdrawn_msg">Withdraw</string>
<string name="save">Save</string>
<string name="done">Done</string>
<string name="main_msg_list_delete_chatting">Delete this chat</string>
<string name="main_msg_list_sticky_on_top">Sticky on top</string>
<string name="main_msg_list_clear_sticky_on_top">Unstick</string>
<string name="save_to_device">Save to Device</string>
<string name="picture_save_fail">Failed to save image</string>
<string name="picture_save_to">Image saved to device</string>
<string name="search_join_team">Search and join group</string>
<string name="file_transfer_state_downloaded">Downloaded</string>
<string name="file_transfer_state_undownload">Not downloaded</string>
<string name="trans_voice_failed">Voice conversion failed</string>
<string name="team_invalid_tip">You have exited this group</string>
<string name="normal_team_invalid_tip">You have exited this discussion</string>
<string name="team_send_message_not_allow">You are no longer in this group, cannot send messages</string>
<string name="send">Send</string>
<string name="unsupport_title">Cannot display content</string>
<string name="unsupport_desc">Client version does not support this content</string>
<string name="revoke_failed">Messages sent more than 2 minutes ago cannot be recalled</string>
<string name="pic_and_video">Pictures and Videos</string>
<string name="black_list_send_tip">Message sent but rejected by recipient</string>
<!-- 語音 -->
<string name="record_audio">按住 說話</string>
<string name="record_audio_end">松開 結束</string>
<string name="sdcard_not_exist_error">請插入SD卡</string>
<string name="recording_error">錄音失敗,請重試</string>
<string name="recording_init_failed">初始化錄音失敗</string>
<string name="recording_cancel">手指上滑,取消發送</string>
<string name="timer_default">00:00</string>
<string name="recording_cancel_tip">松開手指,取消發送</string>
<string name="recording_max_time">錄音達到最大時間,是否發送?</string>
<!-- Voice -->
<string name="record_audio">Hold to Talk</string>
<string name="record_audio_end">Release to End</string>
<string name="sdcard_not_exist_error">Please insert SD card</string>
<string name="recording_error">Recording failed, please try again</string>
<string name="recording_init_failed">Failed to initialize recording</string>
<string name="recording_cancel">Slide up to cancel</string>
<string name="timer_default">00:00</string>
<string name="recording_cancel_tip">Release to cancel sending</string>
<string name="recording_max_time">Recording reached maximum time, send now?</string>
<!-- 拍照視頻 -->
<string name="gallery_invalid">你的手機沒有圖庫程序</string>
<string name="sdcard_not_enough_head_error">SD卡被拔出或存儲空間不足,無法保存頭像</string>
<string name="sdcard_not_enough_error">存儲空間不足,無法保存此次多媒體消息</string>
<string name="download_video">正在下載視頻</string>
<string name="download_video_fail">視頻下載失敗,請重試</string>
<string name="look_video_fail">無法播放該視頻</string>
<string name="look_video_fail_try_again">暫時無法播放視頻,請重試</string>
<string name="video_play">視頻播放</string>
<string name="video_record">視頻錄製</string>
<string name="video_record_symbol">REC</string>
<string name="video_record_begin">開始錄製</string>
<string name="connect_vedio_device_fail">無法連接視頻設備 ,請稍候再試</string>
<string name="capture_video_size_in_kb">視頻文件大小為: %1$dKB,</string>
<string name="capture_video_size_in_mb">視頻文件大小為: %1$.2fMB,</string>
<string name="is_send_video">是否發送該視頻?</string>
<string name="start_camera_to_record_failed">啟動攝像頭錄製視頻失敗</string>
<string name="stop_fail_maybe_stopped">停止失敗,可能已經停止</string>
<string name="video_exception">視頻文件異常</string>
<string name="im_choose_video_file_size_too_large">視頻文件過大,系統限製為20MB</string>
<string name="im_choose_video">請選擇3GP MP4格式的視頻文件</string>
<string name="video_record_short">錄製視頻太短</string>
<string name="download_progress_description">%1$s%2$s/%3$s</string>
<!-- Photo & Video -->
<string name="gallery_invalid">Your phone does not have a gallery program</string>
<string name="sdcard_not_enough_head_error">SD card removed or insufficient storage, unable to save avatar</string>
<string name="sdcard_not_enough_error">Insufficient storage, unable to save multimedia messages</string>
<string name="download_video">Downloading video</string>
<string name="download_video_fail">Failed to download video, please try again</string>
<string name="look_video_fail">Unable to play this video</string>
<string name="look_video_fail_try_again">Unable to play video at the moment, please try again</string>
<string name="video_play">Video Play</string>
<string name="video_record">Video Record</string>
<string name="video_record_symbol">REC</string>
<string name="video_record_begin">Start Recording</string>
<string name="connect_vedio_device_fail">Failed to connect video device, please try again later</string>
<string name="capture_video_size_in_kb">Video file size: %1$dKB,</string>
<string name="capture_video_size_in_mb">Video file size: %1$.2fMB,</string>
<string name="is_send_video">Send this video?</string>
<string name="start_camera_to_record_failed">Failed to start camera to record video</string>
<string name="stop_fail_maybe_stopped">Failed to stop, may have already stopped</string>
<string name="video_exception">Video file exception</string>
<string name="im_choose_video_file_size_too_large">Video file is too large, limited to 20MB</string>
<string name="im_choose_video">Please select a video file in 3GP or MP4 format</string>
<string name="video_record_short">Video recording too short</string>
<string name="download_progress_description">%1$s (%2$s/%3$s)</string>
<!-- 聯系人選擇器 -->
<string name="contact_selector">聯系人選擇器</string>
<!-- Contact Selector -->
<string name="contact_selector">Contact Selector</string>
<!-- team -->
<string name="team_need_authentication">需要身份驗證</string>
<string name="team_allow_anyone_join">允許任何人加入</string>
<string name="team_not_allow_anyone_join">不允許任何人申請加入</string>
<string name="team_admin_invite">管理員邀請</string>
<string name="team_everyone_invite">所有人邀請</string>
<string name="team_admin_update">管理員修改</string>
<string name="team_everyone_update">所有人修改</string>
<string name="team_invitee_need_authen">需要驗證</string>
<string name="team_invitee_not_need_authen">不需要驗證</string>
<string name="team_notify_mute">不提醒任何消息</string>
<string name="team_notify_all">提醒所有消息</string>
<string name="team_notify_manager">只提醒管理員消息</string>
<string name="team_nickname">群昵稱</string>
<string name="team_nickname_none">未填寫</string>
<string name="team_identity">身份</string>
<string name="remove_member">移出本群</string>
<string name="team_member_info">成員信息</string>
<string name="team_admin">管理員</string>
<string name="open_redpackage_notice">開啟全服紅包</string>
<string name="close_redpackage_notice">關閉全服紅包</string>
<string name="team_creator">群主</string>
<string name="team_member">群成員</string>
<string name="update_success">保存成功</string>
<string name="update_failed">保存失敗, code:%d</string>
<string name="no_permission">沒有權限</string>
<string name="set_team_admin">設為管理員</string>
<string name="cancel_team_admin">取消管理員</string>
<string name="team_member_remove_confirm">確定要將其移出群組麽?</string>
<string name="team_annourcement">群公告</string>
<string name="invite_member">邀請成員</string>
<string name="team_name">群名稱</string>
<string name="team_introduce">群介紹</string>
<string name="team_extension">擴展示例</string>
<string name="click_set">點擊設置</string>
<string name="create_advanced_team">創建高級群</string>
<string name="reach_team_member_capacity">成員數量不能超過%1$d</string>
<string name="team_authentication">身份驗證</string>
<string name="team_invite">邀請他人權限</string>
<string name="team_info_update">群資料修改權限</string>
<string name="team_invitee_authentication">被邀請人身份驗證</string>
<string name="create_team">創建群</string>
<string name="over_team_member_capacity">邀請失敗,成員人數上限為%1$d</string>
<string name="over_team_capacity">創建失敗,創建群數量達到限製</string>
<string name="create_team_failed">創建失敗</string>
<string name="create_team_success">創建成功</string>
<string name="team_announce_title">標題</string>
<string name="team_announce_content">公告內容</string>
<string name="team_announce_notice">請輸入群公告標題</string>
<string name="my_team_card">我的群名片</string>
<string name="team_introduce_hint">點擊填寫群介紹</string>
<string name="team_extension_hint">點擊修改擴展內容</string>
<string name="team_announce_hint">點擊填寫群公告</string>
<string name="team_notification_config">消息提醒</string>
<string name="team_transfer_without_member">沒有可轉移的群成員</string>
<string name="team_invite_members_success">群成員邀請已發出</string>
<string name="team_invite_members_failed">群成員邀請失敗</string>
<string name="team_transfer_success">群轉移成功</string>
<string name="team_transfer_failed">群轉移失敗</string>
<string name="quit_team_success">您已退群</string>
<string name="quit_team_failed">退群失敗</string>
<string name="quit_normal_team_success">您已經退出討論組</string>
<string name="quit_normal_team_failed">退出討論組失敗</string>
<string name="dismiss_team_success">群已解散</string>
<string name="dismiss_team_failed">解散群失敗</string>
<string name="dismiss_team">解散本群</string>
<string name="transfer_team">轉讓群</string>
<string name="quit_team">退出群</string>
<string name="quit_normal_team">退出討論組</string>
<string name="team_apply_to_join">申請加入</string>
<string name="advanced_team">高級群</string>
<string name="normal_team">討論組</string>
<string name="team_name_toast">群名稱不能為空</string>
<string name="not_allow_empty">不能為空</string>
<string name="chat_setting">聊天信息</string>
<string name="team_settings_name">設置名稱</string>
<string name="normal_team_name">討論組名稱</string>
<string name="remove_member_success">移除成員成功</string>
<string name="remove_member_failed">移除成員失敗</string>
<string name="invite_member_success">邀請成員成功</string>
<string name="invite_member_failed">邀請成員失敗</string>
<string name="team_create_notice">請添加群成員</string>
<string name="team_settings_set_name">取個名字吧</string>
<string name="team_not_exist">該群不存在</string>
<string name="normal_team_not_exist">該討論組不存在</string>
<string name="mute_msg">設置禁言</string>
<string name="set_head_image">設置頭像</string>
<string name="team_update_cancel">取消更新</string>
<string name="team_update_failed">群頭像設置失敗</string>
<string name="reach_capacity">人數已達上限</string>
<!-- 消息搜索 -->
<string name="message_search_no_result">無結果</string>
<string name="message_search_title">查看聊天內容</string>
<!-- Team -->
<string name="team_need_authentication">Authentication Required</string>
<string name="team_allow_anyone_join">Allow Anyone to Join</string>
<string name="team_not_allow_anyone_join">Not Allow Anyone to Join</string>
<string name="team_admin_invite">Admin Invitation</string>
<string name="team_everyone_invite">Everyone Invitation</string>
<string name="team_admin_update">Admin Update</string>
<string name="team_everyone_update">Everyone Update</string>
<string name="team_invitee_need_authen">Invitee Need Authentication</string>
<string name="team_invitee_not_need_authen">Invitee Not Need Authentication</string>
<string name="team_notify_mute">Do Not Notify Any Message</string>
<string name="team_notify_all">Notify All Messages</string>
<string name="team_notify_manager">Notify Only Admin Messages</string>
<string name="team_nickname">Group Nickname</string>
<string name="team_nickname_none">Not Set</string>
<string name="team_identity">Identity</string>
<string name="remove_member">Remove from Group</string>
<string name="team_member_info">Member Information</string>
<string name="team_admin">Admin</string>
<string name="open_redpackage_notice">Open Group Red Packet</string>
<string name="close_redpackage_notice">Close Group Red Packet</string>
<string name="team_creator">Group Owner</string>
<string name="team_member">Group Member</string>
<string name="update_success">Update Successful</string>
<string name="update_failed">Update Failed, code:%d</string>
<string name="no_permission">No Permission</string>
<string name="set_team_admin">Set as Admin</string>
<string name="cancel_team_admin">Cancel Admin</string>
<string name="team_member_remove_confirm">Are you sure you want to remove this member from the group?</string>
<string name="team_annourcement">Group Announcement</string>
<string name="invite_member">Invite Member</string>
<string name="team_name">Group Name</string>
<string name="team_introduce">Group Introduction</string>
<string name="team_extension">Extension Example</string>
<string name="click_set">Click to Set</string>
<string name="create_advanced_team">Create Advanced Group</string>
<string name="reach_team_member_capacity">Member count cannot exceed %1$d</string>
<string name="team_authentication">Authentication</string>
<string name="team_invite">Invite Others Permission</string>
<string name="team_info_update">Group Information Modification Permission</string>
<string name="team_invitee_authentication">Invited Person Authentication</string>
<string name="create_team">Create Group</string>
<string name="over_team_member_capacity">Invitation failed, maximum member count is %1$d</string>
<string name="over_team_capacity">Creation failed, group creation limit reached</string>
<string name="create_team_failed">Creation Failed</string>
<string name="create_team_success">Creation Successful</string>
<string name="team_announce_title">Title</string>
<string name="team_announce_content">Announcement Content</string>
<string name="team_announce_notice">Please enter the group announcement title</string>
<string name="my_team_card">My Group Card</string>
<string name="team_introduce_hint">Click to fill in group introduction</string>
<string name="team_extension_hint">Click to modify extension content</string>
<string name="team_announce_hint">Click to fill in group announcement</string>
<string name="team_notification_config">Message Notification</string>
<string name="team_transfer_without_member">No members available for transfer</string>
<string name="team_invite_members_success">Group member invitation sent</string>
<string name="team_invite_members_failed">Group member invitation failed</string>
<string name="team_transfer_success">Group transfer successful</string>
<string name="team_transfer_failed">Group transfer failed</string>
<string name="quit_team_success">You have quit the group</string>
<string name="quit_team_failed">Failed to quit the group</string>
<string name="quit_normal_team_success">You have quit the discussion group</string>
<string name="quit_normal_team_failed">Failed to quit the discussion group</string>
<string name="dismiss_team_success">Group has been disbanded</string>
<string name="dismiss_team_failed">Failed to disband the group</string>
<string name="dismiss_team">Disband This Group</string>
<string name="transfer_team">Transfer Group</string>
<string name="quit_team">Quit Group</string>
<string name="quit_normal_team">Quit Discussion Group</string>
<string name="team_apply_to_join">Apply to Join</string>
<string name="advanced_team">Advanced Group</string>
<string name="normal_team">Discussion Group</string>
<string name="team_name_toast">Group name cannot be empty</string>
<string name="not_allow_empty">Cannot Be Empty</string>
<string name="chat_setting">Chat Information</string>
<string name="team_settings_name">Set Name</string>
<string name="normal_team_name">Discussion Group Name</string>
<string name="remove_member_success">Remove member successfully</string>
<string name="remove_member_failed">Failed to remove member</string>
<string name="invite_member_success">Invite member successfully</string>
<string name="invite_member_failed">Failed to invite member</string>
<string name="team_create_notice">Please add group members</string>
<string name="team_settings_set_name">Choose a Name</string>
<string name="team_not_exist">This group does not exist</string>
<string name="normal_team_not_exist">This discussion group does not exist</string>
<string name="mute_msg">Set Mute</string>
<string name="set_head_image">Set Avatar</string>
<string name="team_update_cancel">Update Cancelled</string>
<string name="team_update_failed">Failed to set group avatar</string>
<string name="reach_capacity">Maximum capacity reached</string>
<!-- image picker -->
<string name="picker_image_preview">預覽</string>
<string name="picker_image_send">發送</string>
<string name="picker_image_folder">相冊</string>
<string name="picker_image_album_loading">相冊加載中…</string>
<string name="picker_image_album_empty">相冊中沒有圖片!</string>
<string name="picker_image_folder_info">共%d張</string>
<string name="picker_image_exceed_max_image_select">最多選擇%d張圖片</string>
<string name="picker_image_send_select">完成(%d</string>
<string name="picker_image_preview_original">發送原圖</string>
<string name="picker_image_preview_original_select">發送原圖(%s</string>
<string name="picker_image_error">獲取圖片出錯</string>
<string name="image_compressed_size">該原始圖片大小為: %1$s,</string>
<string name="unknow_size">未知大小</string>
<string name="is_send_image">是否發送該原始圖片?</string>
<string name="multi_image_compressed_size">原始圖片總大小為: %1$s,</string>
<string name="is_send_multi_image">是否發送這些原始圖片?</string>
<string name="waitfor_image_local">正在打開相冊,請稍候\u2026</string>
<string name="recapture">重拍</string>
<string name="image_show_error">圖片顯示異常</string>
<string name="memory_out">內存不足</string>
<string name="choose_from_photo_album">從手機相冊選擇</string>
<string name="choose">選取</string>
<string name="edit">編輯</string>
<string name="crop">裁剪</string>
<!-- Message Search -->
<string name="message_search_no_result">No Results</string>
<string name="message_search_title">View Chat Content</string>
<!-- 消息類型 -->
<string name="msg_type_image">圖片</string>
<string name="msg_type_audio">語音</string>
<!-- Image Picker -->
<string name="picker_image_preview">Preview</string>
<string name="picker_image_send">Send</string>
<string name="picker_image_folder">Album</string>
<string name="picker_image_album_loading">Loading Albums…</string>
<string name="picker_image_album_empty">No Images in Album!</string>
<string name="picker_image_folder_info">Total %d images</string>
<string name="picker_image_exceed_max_image_select">Select up to %d images!</string>
<string name="picker_image_send_select">Complete (%d)</string>
<string name="picker_image_preview_original">Send Original Image</string>
<string name="picker_image_preview_original_select">Send Original Image (%s)</string>
<string name="picker_image_error">Error Getting Image</string>
<string name="image_compressed_size">Original image size: %1$s,</string>
<string name="unknow_size">Unknown Size</string>
<string name="is_send_image">Send this original image?</string>
<string name="multi_image_compressed_size">Total original image size: %1$s,</string>
<string name="is_send_multi_image">Send these original images?</string>
<string name="waitfor_image_local">Opening album, please wait…</string>
<string name="recapture">Recapture</string>
<string name="image_show_error">Error displaying image</string>
<string name="memory_out">Out of memory</string>
<string name="choose_from_photo_album">Choose from Album</string>
<string name="choose">Choose</string>
<string name="edit">Edit</string>
<string name="crop">Crop</string>
<!-- 查看大圖 -->
<string name="download_picture_fail">圖片下載失敗</string>
<string name="look_up_original_photo_format">查看原圖(%s</string>
<!-- Message Types -->
<string name="msg_type_image">Image</string>
<string name="msg_type_audio">Audio</string>
<!--全文檢索-->
<string name="fts_enable">全文檢索(FTS4)</string>
<string name="fts_prefix_hit">前綴匹配高亮檢索結果</string>
<string name="msg_search">全文檢索</string>
<string name="msg_search_limit">全文檢索顯示條數</string>
<string name="message_hint">請輸入消息</string>
<!-- View Big Picture -->
<string name="download_picture_fail">Failed to download picture</string>
<string name="look_up_original_photo_format">View Original (%s)</string>
<string name="layout_nim_advanced_team_announce_list_item_01">3月6日 10:13</string>
<string name="layout_nim_advanced_team_info_activity_01"></string>
<string name="layout_nim_advanced_team_info_activity_02">創建</string>
<string name="layout_nim_contacts_select_01">確定(0)</string>
<string name="layout_nim_contact_loading_frame_01">加載中...</string>
<string name="layout_nim_mass_message_activity_01">帳號/群組id</string>
<string name="layout_nim_mass_message_activity_02">時間間隔(ms):</string>
<string name="layout_nim_message_fragment_01">語音派對</string>
<string name="layout_nim_message_item_robot_01">繼續對話</string>
<string name="layout_nim_voice_trans_layout_01">取消</string>
<string name="api_wrapper_messagerevoketip_01"></string>
<string name="api_wrapper_messagerevoketip_02">對方</string>
<string name="api_wrapper_messagerevoketip_03">撤回了一條消息</string>
<string name="api_wrapper_messagerevoketip_04"></string>
<string name="api_wrapper_messagerevoketip_05">管理員 </string>
<string name="api_wrapper_messagerevoketip_06">群主 </string>
<string name="api_wrapper_messagerevoketip_07">撤回了一條成員消息</string>
<string name="api_wrapper_messagerevoketip_08">撤回了一條消息</string>
<string name="ait_selector_aitcontactselectoractivity_01">選擇提醒的人</string>
<string name="ait_selector_aitcontactselectoractivity_02">機器人</string>
<string name="ait_selector_aitcontactselectoractivity_03">群成員</string>
<string name="chatroom_fragment_chatroommessagefragment_01">用戶被禁言</string>
<string name="chatroom_fragment_chatroommessagefragment_02">用戶被禁言</string>
<string name="chatroom_fragment_chatroommessagefragment_03">全體禁言</string>
<string name="chatroom_fragment_chatroommessagefragment_04">全體禁言</string>
<string name="chatroom_fragment_chatroommessagefragment_05">消息發送失敗code:</string>
<string name="chatroom_fragment_chatroommessagefragment_06">消息發送失敗code:</string>
<string name="chatroom_fragment_chatroommessagefragment_07">消息發送失敗!</string>
<string name="chatroom_fragment_chatroommessagefragment_08">消息發送失敗!</string>
<string name="chatroom_helper_chatroomnotificationhelper_01">歡迎</string>
<string name="chatroom_helper_chatroomnotificationhelper_02">進入直播間</string>
<string name="chatroom_helper_chatroomnotificationhelper_03">離開了直播間</string>
<string name="chatroom_helper_chatroomnotificationhelper_04">被管理員拉入黑名單</string>
<string name="chatroom_helper_chatroomnotificationhelper_05">被管理員解除拉黑</string>
<string name="chatroom_helper_chatroomnotificationhelper_06">被管理員禁言</string>
<string name="chatroom_helper_chatroomnotificationhelper_07">被管理員解除禁言</string>
<string name="chatroom_helper_chatroomnotificationhelper_08">被任命管理員身份</string>
<string name="chatroom_helper_chatroomnotificationhelper_09">被解除管理員身份</string>
<string name="chatroom_helper_chatroomnotificationhelper_010">被設為普通成員</string>
<string name="chatroom_helper_chatroomnotificationhelper_011">被取消普通成員</string>
<string name="chatroom_helper_chatroomnotificationhelper_012">直播間被關閉</string>
<string name="chatroom_helper_chatroomnotificationhelper_013">直播間信息已更新</string>
<string name="chatroom_helper_chatroomnotificationhelper_014">被踢出直播間</string>
<string name="chatroom_helper_chatroomnotificationhelper_015">被臨時禁言</string>
<string name="chatroom_helper_chatroomnotificationhelper_016">被解除臨時禁言</string>
<string name="chatroom_helper_chatroomnotificationhelper_017">更新了自己的角色信息</string>
<string name="chatroom_helper_chatroomnotificationhelper_018">麥序隊列中有變更</string>
<string name="chatroom_helper_chatroomnotificationhelper_019">全體禁言,管理員可發言</string>
<string name="chatroom_helper_chatroomnotificationhelper_020">解除全體禁言</string>
<string name="chatroom_helper_chatroomnotificationhelper_021">批量變更</string>
<string name="chatroom_helper_chatroomnotificationhelper_022"></string>
<string name="chatroom_module_chatroommsglistpanel_01">路徑錯誤</string>
<string name="chatroom_module_chatroommsglistpanel_02">路徑錯誤</string>
<string name="business_contact_contactsfragment_01">共有好友</string>
<string name="business_contact_contactsfragment_02"></string>
<string name="core_viewholder_msgholder_01">%d條相關聊天記錄</string>
<string name="selector_activity_contactselectactivity_01">聯系人選擇器</string>
<string name="selector_activity_contactselectactivity_02">最多選擇</string>
<string name="selector_activity_contactselectactivity_03"></string>
<string name="selector_activity_contactselectactivity_04">至少選擇</string>
<string name="selector_activity_contactselectactivity_05"></string>
<string name="business_recent_teammemberaithelper_01">[有人@你] </string>
<string name="business_recent_teammemberaithelper_02">(\\[有人@你\\])</string>
<string name="elements_element_imageelement_01">屬性名</string>
<string name="elements_element_imageelement_02">屬性值</string>
<string name="elements_element_imageelement_03">圖片寬度</string>
<string name="elements_element_imageelement_04">圖片高度</string>
<string name="elements_element_textelement_01">百分比 | 指定像素</string>
<string name="session_activity_p2pmessageactivity_01">對方正在輸入...</string>
<string name="session_activity_p2pmessageactivity_02">對方正在輸入...</string>
<string name="session_activity_teammessageactivity_01">獲取群組信息失敗!</string>
<string name="session_activity_teammessageactivity_02">獲取群組信息失敗!</string>
<string name="session_activity_teammessageactivity_03">人)</string>
<string name="session_activity_teammessageactivity_04">群聊</string>
<string name="session_activity_voicetrans_01">正在轉換</string>
<string name="session_activity_voicetrans_02">參數錯誤</string>
<string name="session_activity_watchmessagepictureactivity_01">圖片</string>
<string name="session_activity_watchmessagepictureactivity_02">圖片發送於%s</string>
<string name="session_activity_watchvideoactivity_01">視頻發送於%s</string>
<string name="session_activity_watchvideoactivity_02">大小: </string>
<string name="session_activity_watchvideoactivity_03">大小: </string>
<string name="session_activity_watchvideoactivity_04">,時長: </string>
<string name="session_activity_watchvideoactivity_05"></string>
<string name="session_adapter_mediaadapter_01">yyyy年MM月</string>
<string name="session_fragment_messagefragment_01">發送失敗Hiyoo提醒您文明用語~</string>
<string name="session_fragment_messagefragment_02">發送失敗Hiyoo提醒您文明用語~</string>
<string name="session_helper_teamnotificationhelper_01">邀請 </string>
<string name="session_helper_teamnotificationhelper_02"> 加入群</string>
<string name="session_helper_teamnotificationhelper_03"> 加入討論組</string>
<string name="session_helper_teamnotificationhelper_04"> 已被移出群</string>
<string name="session_helper_teamnotificationhelper_05"> 已被移出討論組</string>
<string name="session_helper_teamnotificationhelper_06"> 離開了群</string>
<string name="session_helper_teamnotificationhelper_07"> 離開了討論組</string>
<string name="session_helper_teamnotificationhelper_08"> 解散了群</string>
<string name="session_helper_teamnotificationhelper_09">群名稱被更新為 </string>
<string name="session_helper_teamnotificationhelper_010">群介紹被更新為 </string>
<string name="session_helper_teamnotificationhelper_011">未設置</string>
<string name="session_helper_teamnotificationhelper_012">群身份驗證權限更新為</string>
<string name="session_helper_teamnotificationhelper_013">群擴展字段被更新為 </string>
<string name="session_helper_teamnotificationhelper_014">群擴展字段(服務器)被更新為 </string>
<string name="session_helper_teamnotificationhelper_015">群頭像已更新</string>
<string name="session_helper_teamnotificationhelper_016">群邀請他人權限被更新為 </string>
<string name="session_helper_teamnotificationhelper_017">群資料修改權限被更新為 </string>
<string name="session_helper_teamnotificationhelper_018">群被邀請人身份驗證權限被更新為 </string>
<string name="session_helper_teamnotificationhelper_019">群擴展字段修改權限被更新為 </string>
<string name="session_helper_teamnotificationhelper_020">取消群全員禁言</string>
<string name="session_helper_teamnotificationhelper_021">群全員禁言</string>
<string name="session_helper_teamnotificationhelper_022"></string>
<string name="session_helper_teamnotificationhelper_023">被更新為 </string>
<string name="session_helper_teamnotificationhelper_024">未知通知</string>
<string name="session_helper_teamnotificationhelper_025">管理員通過用戶 </string>
<string name="session_helper_teamnotificationhelper_026"> 的入群申請</string>
<string name="session_helper_teamnotificationhelper_027"> 將群轉移給 </string>
<string name="session_helper_teamnotificationhelper_028"> 被任命為管理員</string>
<string name="session_helper_teamnotificationhelper_029"> 被撤銷管理員身份</string>
<string name="session_helper_teamnotificationhelper_030"> 接受了 </string>
<string name="session_helper_teamnotificationhelper_031"> 的入群邀請</string>
<string name="session_helper_teamnotificationhelper_032">被管理員</string>
<string name="session_helper_teamnotificationhelper_033">禁言</string>
<string name="session_helper_teamnotificationhelper_034">解除禁言</string>
<string name="session_helper_videomessagehelper_01">拍攝視頻</string>
<string name="session_helper_videomessagehelper_02">從相冊中選擇視頻</string>
<string name="module_input_inputpanel_01">禁言中,快找管理員解除禁言吧!</string>
<string name="module_input_inputpanel_02">等級不夠</string>
<string name="module_input_inputpanel_03">等級不夠</string>
<string name="module_input_inputpanel_04">等級不夠</string>
<string name="module_input_inputpanel_05">貼圖消息</string>
<string name="module_input_inputpanel_06">暫未達到可發起私聊等級</string>
<string name="module_input_inputpanel_07">請輸入消息</string>
<string name="module_list_messagelistpanelex_01">路徑錯誤</string>
<string name="module_list_messagelistpanelex_02">路徑錯誤</string>
<string name="module_list_messagelistpanelex_03">切換成揚聲器播放</string>
<string name="module_list_messagelistpanelex_04">切換成聽筒播放</string>
<string name="module_list_messagelistpanelex_05">選擇轉發的人</string>
<string name="module_list_messagelistpanelex_06">選擇轉發的群</string>
<string name="module_list_messagelistpanelex_07">該類型不支持轉發</string>
<string name="module_list_messagelistpanelex_08">該類型不支持轉發</string>
<string name="session_viewholder_msgviewholdernotification_01">群公告:</string>
<string name="session_viewholder_msgviewholdertip_01">提示:</string>
<string name="viewholder_robot_robotlinkview_01">[復雜按鈕模板觸發消息]</string>
<string name="team_activity_advancedteaminfoactivity_01">共%d人</string>
<string name="team_activity_advancedteaminfoactivity_02">共%d人</string>
<string name="team_activity_advancedteaminfoactivity_03">選擇群轉移的對象</string>
<string name="team_activity_advancedteaminfoactivity_04">添加群成員成功</string>
<string name="team_activity_advancedteaminfoactivity_05">添加群成員成功</string>
<string name="team_activity_advancedteaminfoactivity_06">成員不存在</string>
<string name="team_activity_advancedteaminfoactivity_07">成員不存在</string>
<string name="team_activity_advancedteaminfoactivity_08">該成員已被禁言,請先取消禁言</string>
<string name="team_activity_advancedteaminfoactivity_09">該成員已被禁言,請先取消禁言</string>
<string name="team_activity_advancedteaminfoactivity_010">共%d人</string>
<string name="team_activity_advancedteammemberinfoactivity_01">群禁言成功</string>
<string name="team_activity_advancedteammemberinfoactivity_02">群禁言成功</string>
<string name="team_activity_advancedteammemberinfoactivity_03">取消群禁言成功</string>
<string name="team_activity_advancedteammemberinfoactivity_04">取消群禁言成功</string>
<string name="team_activity_normalteaminfoactivity_01">開啟消息提醒</string>
<string name="team_activity_normalteaminfoactivity_02">開啟消息提醒</string>
<string name="team_activity_normalteaminfoactivity_03">關閉消息提醒</string>
<string name="team_activity_normalteaminfoactivity_04">關閉消息提醒</string>
<string name="team_activity_normalteaminfoactivity_05">獲取成員列表失敗</string>
<string name="team_activity_normalteaminfoactivity_06">獲取成員列表失敗</string>
<string name="team_activity_normalteaminfoactivity_07">邀請成員</string>
<string name="team_helper_teamhelper_01">好友:</string>
<string name="team_helper_teamhelper_02">所在群組數量達到上限,邀請失敗</string>
<string name="team_helper_teamhelper_03"></string>
<string name="team_helper_teamhelper_04"></string>
<string name="business_uinfo_userinfohelper_01">我的電腦</string>
<string name="ui_ptr2_pulltorefreshlayout_01">松開刷新</string>
<string name="ui_ptr2_pulltorefreshlayout_02">下拉刷新</string>
<string name="util_sys_timeutil_01">上午</string>
<string name="util_sys_timeutil_02">下午</string>
<string name="util_sys_timeutil_03">今天</string>
<string name="util_sys_timeutil_04">昨天</string>
<string name="util_sys_timeutil_05">前天</string>
<string name="util_sys_timeutil_06">淩晨 </string>
<string name="util_sys_timeutil_07">上午 </string>
<string name="util_sys_timeutil_08">下午 </string>
<string name="util_sys_timeutil_09">晚上 </string>
<string name="util_sys_timeutil_010">星期日</string>
<string name="util_sys_timeutil_011">星期一</string>
<string name="util_sys_timeutil_012">星期二</string>
<string name="util_sys_timeutil_013">星期三</string>
<string name="util_sys_timeutil_014">星期四</string>
<string name="util_sys_timeutil_015">星期五</string>
<string name="util_sys_timeutil_016">星期六</string>
<string name="util_sys_timeutil_017"></string>
<string name="util_sys_timeutil_018">小時</string>
<string name="util_sys_timeutil_019"></string>
<string name="util_sys_timeutil_020"></string>
<string name="util_sys_timeutil_021"></string>
<string name="util_sys_timeutil_022">小時</string>
<string name="util_sys_timeutil_023"></string>
<string name="util_sys_timeutil_024"></string>
<string name="impl_customization_defaultrecentcustomization_01">[圖片]</string>
<string name="impl_customization_defaultrecentcustomization_02">[視頻]</string>
<string name="impl_customization_defaultrecentcustomization_03">[語音消息]</string>
<string name="impl_customization_defaultrecentcustomization_04">[位置]</string>
<string name="impl_customization_defaultrecentcustomization_05">[文件]</string>
<string name="impl_customization_defaultrecentcustomization_06">[通知提醒]</string>
<string name="impl_customization_defaultrecentcustomization_07">[機器人消息]</string>
<string name="impl_customization_defaultrecentcustomization_08">[自定義消息] </string>
<string name="xchat_android_core_file_filemodel_01"> 為空或者該文件不存在!</string>
<!-- Full Text Search -->
<string name="fts_enable">Full Text Search (FTS4)</string>
<string name="fts_prefix_hit">Prefix Match Highlighted Search Results</string>
<string name="msg_search">Full Text Search</string>
<string name="msg_search_limit">Full Text Search Display Limit</string>
<string name="message_hint">Please enter a message</string>
<string name="layout_nim_advanced_team_announce_list_item_01">March 6th 10:13</string>
<string name="layout_nim_advanced_team_info_activity_01">Created on</string>
<string name="layout_nim_advanced_team_info_activity_02">by</string>
<string name="layout_nim_contacts_select_01">Confirm (0)</string>
<string name="layout_nim_contact_loading_frame_01">Loading...</string>
<string name="layout_nim_mass_message_activity_01">Account/Group ID</string>
<string name="layout_nim_mass_message_activity_02">Time Interval (ms):</string>
<string name="layout_nim_message_fragment_01">Voice Party</string>
<string name="layout_nim_message_item_robot_01">Continue Conversation</string>
<string name="layout_nim_voice_trans_layout_01">Cancel</string>
<string name="api_wrapper_messagerevoketip_01">You</string>
<string name="api_wrapper_messagerevoketip_02">The other party</string>
<string name="api_wrapper_messagerevoketip_03">revoked a message</string>
<string name="api_wrapper_messagerevoketip_04">You</string>
<string name="api_wrapper_messagerevoketip_05">Administrator </string>
<string name="api_wrapper_messagerevoketip_06">Group owner </string>
<string name="api_wrapper_messagerevoketip_07">revoked a member message</string>
<string name="api_wrapper_messagerevoketip_08">revoked a message</string>
<string name="ait_selector_aitcontactselectoractivity_01">Select Reminder Recipients</string>
<string name="ait_selector_aitcontactselectoractivity_02">Robot</string>
<string name="ait_selector_aitcontactselectoractivity_03">Group Members</string>
<string name="chatroom_fragment_chatroommessagefragment_01">User is muted</string>
<string name="chatroom_fragment_chatroommessagefragment_02">User is muted</string>
<string name="chatroom_fragment_chatroommessagefragment_03">All Muted</string>
<string name="chatroom_fragment_chatroommessagefragment_04">All Muted</string>
<string name="chatroom_fragment_chatroommessagefragment_05">Message sending failed: code:</string>
<string name="chatroom_fragment_chatroommessagefragment_06">Message sending failed: code:</string>
<string name="chatroom_fragment_chatroommessagefragment_07">Message sending failed!</string>
<string name="chatroom_fragment_chatroommessagefragment_08">Message sending failed!</string>
<string name="chatroom_helper_chatroomnotificationhelper_01">Welcome</string>
<string name="chatroom_helper_chatroomnotificationhelper_02">entered the live broadcast room</string>
<string name="chatroom_helper_chatroomnotificationhelper_03">left the live broadcast room</string>
<string name="chatroom_helper_chatroomnotificationhelper_04">was blacklisted by administrator</string>
<string name="chatroom_helper_chatroomnotificationhelper_05">was removed from the blacklist by administrator</string>
<string name="chatroom_helper_chatroomnotificationhelper_06">was muted by administrator</string>
<string name="chatroom_helper_chatroomnotificationhelper_07">was unmuted by administrator</string>
<string name="chatroom_helper_chatroomnotificationhelper_08">was appointed as administrator</string>
<string name="chatroom_helper_chatroomnotificationhelper_09">was dismissed as administrator</string>
<string name="chatroom_helper_chatroomnotificationhelper_010">was set as a regular member</string>
<string name="chatroom_helper_chatroomnotificationhelper_011">was demoted to regular member</string>
<string name="chatroom_helper_chatroomnotificationhelper_012">live broadcast room was closed</string>
<string name="chatroom_helper_chatroomnotificationhelper_013">live broadcast room information has been updated</string>
<string name="chatroom_helper_chatroomnotificationhelper_014">was kicked out of the live broadcast room</string>
<string name="chatroom_helper_chatroomnotificationhelper_015">was temporarily muted</string>
<string name="chatroom_helper_chatroomnotificationhelper_016">was unmuted</string>
<string name="chatroom_helper_chatroomnotificationhelper_017">updated their own role information</string>
<string name="chatroom_helper_chatroomnotificationhelper_018">changes in the microphone queue</string>
<string name="chatroom_helper_chatroomnotificationhelper_019">All muted, administrators can speak</string>
<string name="chatroom_helper_chatroomnotificationhelper_020">Unmute all</string>
<string name="chatroom_helper_chatroomnotificationhelper_021">Batch Change</string>
<string name="chatroom_helper_chatroomnotificationhelper_022">You</string>
<string name="chatroom_module_chatroommsglistpanel_01">Path Error</string>
<string name="chatroom_module_chatroommsglistpanel_02">Path Error</string>
<string name="business_contact_contactsfragment_01">Total friends:</string>
<string name="business_contact_contactsfragment_02">people</string>
<string name="core_viewholder_msgholder_01">%d related chat records</string>
<string name="selector_activity_contactselectactivity_01">Contact Selector</string>
<string name="selector_activity_contactselectactivity_02">Select up to</string>
<string name="selector_activity_contactselectactivity_03">people</string>
<string name="selector_activity_contactselectactivity_04">Select at least</string>
<string name="selector_activity_contactselectactivity_05">people</string>
<string name="business_recent_teammemberaithelper_01">[Someone @ You] </string>
<string name="business_recent_teammemberaithelper_02">(\\[Someone @ You\\])</string>
<string name="elements_element_imageelement_01">Attribute Name</string>
<string name="elements_element_imageelement_02">Attribute Value</string>
<string name="elements_element_imageelement_03">Image Width</string>
<string name="elements_element_imageelement_04">Image Height</string>
<string name="elements_element_textelement_01">Percentage | Specified Pixels</string>
<string name="session_activity_p2pmessageactivity_01">The other party is typing...</string>
<string name="session_activity_p2pmessageactivity_02">The other party is typing...</string>
<string name="session_activity_teammessageactivity_01">Failed to retrieve group information!</string>
<string name="session_activity_teammessageactivity_02">Failed to retrieve group information!</string>
<string name="session_activity_teammessageactivity_03">people)</string>
<string name="session_activity_teammessageactivity_04">Group Chat</string>
<string name="session_activity_voicetrans_01">Converting</string>
<string name="session_activity_voicetrans_02">Parameter error</string>
<string name="session_activity_watchmessagepictureactivity_01">Picture</string>
<string name="session_activity_watchmessagepictureactivity_02">Picture sent at %s</string>
<string name="session_activity_watchvideoactivity_01">Video sent at %s</string>
<string name="session_activity_watchvideoactivity_02">Size: </string>
<string name="session_activity_watchvideoactivity_03">Size: </string>
<string name="session_activity_watchvideoactivity_04">, Duration: </string>
<string name="session_activity_watchvideoactivity_05"> seconds</string>
<string name="session_adapter_mediaadapter_01">yyyy-MM</string>
<string name="session_fragment_messagefragment_01">Failed to send, Hiyoo reminds you to use civilized language~</string>
<string name="session_fragment_messagefragment_02">Failed to send, Hiyoo reminds you to use civilized language~</string>
<string name="session_helper_teamnotificationhelper_01">Invited </string>
<string name="session_helper_teamnotificationhelper_02"> to join the group</string>
<string name="session_helper_teamnotificationhelper_03"> to join the discussion group</string>
<string name="session_helper_teamnotificationhelper_04"> was removed from the group</string>
<string name="session_helper_teamnotificationhelper_05"> was removed from the discussion group</string>
<string name="session_helper_teamnotificationhelper_06"> left the group</string>
<string name="session_helper_teamnotificationhelper_07"> left the discussion group</string>
<string name="session_helper_teamnotificationhelper_08"> dissolved the group</string>
<string name="session_helper_teamnotificationhelper_09">Group name was updated to </string>
<string name="session_helper_teamnotificationhelper_010">Group introduction was updated to </string>
<string name="session_helper_teamnotificationhelper_011">Not set</string>
<string name="session_helper_teamnotificationhelper_012">Group authentication permission was updated to</string>
<string name="session_helper_teamnotificationhelper_013">Group extended field was updated to </string>
<string name="session_helper_teamnotificationhelper_014">Group extended field (server) was updated to </string>
<string name="session_helper_teamnotificationhelper_015">Group avatar updated</string>
<string name="session_helper_teamnotificationhelper_016">Group invite others permission was updated to </string>
<string name="session_helper_teamnotificationhelper_017">Group data modification permission was updated to </string>
<string name="session_helper_teamnotificationhelper_018">Group invitee authentication permission was updated to </string>
<string name="session_helper_teamnotificationhelper_019">Group extended field modification permission was updated to </string>
<string name="session_helper_teamnotificationhelper_020">Unmute all in group</string>
<string name="session_helper_teamnotificationhelper_021">Mute all in group</string>
<string name="session_helper_teamnotificationhelper_022">Group </string>
<string name="session_helper_teamnotificationhelper_023"> was updated to </string>
<string name="session_helper_teamnotificationhelper_024">Unknown notification</string>
<string name="session_helper_teamnotificationhelper_025">Administrator approved </string>
<string name="session_helper_teamnotificationhelper_026"> to join the group</string>
<string name="session_helper_teamnotificationhelper_027"> transferred the group to </string>
<string name="session_helper_teamnotificationhelper_028"> was appointed as administrator</string>
<string name="session_helper_teamnotificationhelper_029"> was dismissed as administrator</string>
<string name="session_helper_teamnotificationhelper_030"> accepted </string>
<string name="session_helper_teamnotificationhelper_031"> invitation to join the group</string>
<string name="session_helper_teamnotificationhelper_032">Administrator </string>
<string name="session_helper_teamnotificationhelper_033">Muted</string>
<string name="session_helper_teamnotificationhelper_034">Unmuted</string>
<string name="session_helper_videomessagehelper_01">Take Video</string>
<string name="session_helper_videomessagehelper_02">Choose Video from Album</string>
<string name="module_input_inputpanel_01">Muted, ask administrator to unmute!</string>
<string name="module_input_inputpanel_02">Insufficient level</string>
<string name="module_input_inputpanel_03">Insufficient level</string>
<string name="module_input_inputpanel_04">Insufficient level</string>
<string name="module_input_inputpanel_05">Sticker Message</string>
<string name="module_input_inputpanel_06">Not yet eligible to initiate private chat</string>
<string name="module_input_inputpanel_07">Please enter a message</string>
<string name="module_list_messagelistpanelex_01">Path Error</string>
<string name="module_list_messagelistpanelex_02">Path Error</string>
<string name="module_list_messagelistpanelex_03">Switch to Speaker Playback</string>
<string name="module_list_messagelistpanelex_04">Switch to Receiver Playback</string>
<string name="module_list_messagelistpanelex_05">Select recipients for forwarding</string>
<string name="module_list_messagelistpanelex_06">Select groups for forwarding</string>
<string name="module_list_messagelistpanelex_07">This type does not support forwarding</string>
<string name="module_list_messagelistpanelex_08">This type does not support forwarding</string>
<string name="session_viewholder_msgviewholdernotification_01">Group Notice:</string>
<string name="session_viewholder_msgviewholdertip_01">Tip:</string>
<string name="viewholder_robot_robotlinkview_01">[Complex Button Template Trigger Message]</string>
<string name="team_activity_advancedteaminfoactivity_01">Total %d people</string>
<string name="team_activity_advancedteaminfoactivity_02">Total %d people</string>
<string name="team_activity_advancedteaminfoactivity_03">Select the target for group transfer</string>
<string name="team_activity_advancedteaminfoactivity_04">Added group members successfully</string>
<string name="team_activity_advancedteaminfoactivity_05">Added group members successfully</string>
<string name="team_activity_advancedteaminfoactivity_06">Member does not exist</string>
<string name="team_activity_advancedteaminfoactivity_07">Member does not exist</string>
<string name="team_activity_advancedteaminfoactivity_08">The member has been muted, please unmute first</string>
<string name="team_activity_advancedteaminfoactivity_09">The member has been muted, please unmute first</string>
<string name="team_activity_advancedteaminfoactivity_010">Total %d people</string>
<string name="team_activity_advancedteammemberinfoactivity_01">Group muted successfully</string>
<string name="team_activity_advancedteammemberinfoactivity_02">Group muted successfully</string>
<string name="team_activity_advancedteammemberinfoactivity_03">Group unmuted successfully</string>
<string name="team_activity_advancedteammemberinfoactivity_04">Group unmuted successfully</string>
<string name="team_activity_normalteaminfoactivity_01">Open Message Reminder</string>
<string name="team_activity_normalteaminfoactivity_02">Open Message Reminder</string>
<string name="team_activity_normalteaminfoactivity_03">Close Message Reminder</string>
<string name="team_activity_normalteaminfoactivity_04">Close Message Reminder</string>
<string name="team_activity_normalteaminfoactivity_05">Failed to get member list</string>
<string name="team_activity_normalteaminfoactivity_06">Failed to get member list</string>
<string name="team_activity_normalteaminfoactivity_07">Invite members</string>
<string name="team_helper_teamhelper_01">Friend:</string>
<string name="team_helper_teamhelper_02">The number of groups reached the upper limit, invitation failed</string>
<string name="team_helper_teamhelper_03">Me</string>
<string name="team_helper_teamhelper_04">You</string>
<string name="business_uinfo_userinfohelper_01">My Computer</string>
<string name="ui_ptr2_pulltorefreshlayout_01">Release to refresh</string>
<string name="ui_ptr2_pulltorefreshlayout_02">Pull down to refresh</string>
<string name="util_sys_timeutil_01">AM</string>
<string name="util_sys_timeutil_02">PM</string>
<string name="util_sys_timeutil_03">Today</string>
<string name="util_sys_timeutil_04">Yesterday</string>
<string name="util_sys_timeutil_05">The day before yesterday</string>
<string name="util_sys_timeutil_06">Early morning </string>
<string name="util_sys_timeutil_07">Morning </string>
<string name="util_sys_timeutil_08">Afternoon </string>
<string name="util_sys_timeutil_09">Night </string>
<string name="util_sys_timeutil_010">Sunday</string>
<string name="util_sys_timeutil_011">Monday</string>
<string name="util_sys_timeutil_012">Tuesday</string>
<string name="util_sys_timeutil_013">Wednesday</string>
<string name="util_sys_timeutil_014">Thursday</string>
<string name="util_sys_timeutil_015">Friday</string>
<string name="util_sys_timeutil_016">Saturday</string>
<string name="util_sys_timeutil_017"> days</string>
<string name="util_sys_timeutil_018"> hours</string>
<string name="util_sys_timeutil_019"> days</string>
<string name="util_sys_timeutil_020"> hours</string>
<string name="util_sys_timeutil_021"> minutes</string>
<string name="util_sys_timeutil_022"> hours</string>
<string name="util_sys_timeutil_023"> minutes</string>
<string name="util_sys_timeutil_024"> seconds</string>
<string name="impl_customization_defaultrecentcustomization_01">[Image]</string>
<string name="impl_customization_defaultrecentcustomization_02">[Video]</string>
<string name="impl_customization_defaultrecentcustomization_03">[Voice Message]</string>
<string name="impl_customization_defaultrecentcustomization_04">[Location]</string>
<string name="impl_customization_defaultrecentcustomization_05">[File]</string>
<string name="impl_customization_defaultrecentcustomization_06">[Notification Reminder]</string>
<string name="impl_customization_defaultrecentcustomization_07">[Robot Message]</string>
<string name="impl_customization_defaultrecentcustomization_08">[Custom Message] </string>
<string name="xchat_android_core_file_filemodel_01"> is empty or the file does not exist!</string>
</resources>