/* eslint-disable */ import { callControlAlerts, callControlError, } from '@ringcentral-integration/commons/modules/ActiveCallControl'; const { callsMerged, somethingWentWrong, tooManyParticipants } = callControlAlerts; const { holdConflictError, unHoldConflictError, muteConflictError, unMuteConflictError, generalError, forwardSuccess, transferCompleted, replyCompleted, } = callControlError; export default { [callsMerged]: '通話がマージされました', [somethingWentWrong]: '問題が発生しました。もう一度やり直してください。', [tooManyParticipants]: '参加者数の上限に達しています。', [muteConflictError]: 'この通話は他のデバイスでミュートされていました。通話をミュート解除してから、このアプリで操作してください。', [unHoldConflictError]: 'この通話は他のデバイスで保留に設定されていました。通話の保留を解除してから、このアプリで操作してください。', [unMuteConflictError]: 'この通話は他のデバイスでミュートが解除されていました。通話をミュートしてから、このアプリで操作してください。', [holdConflictError]: 'この通話は他のデバイスで保留が解除されています。通話を保留に設定してから、このアプリで操作してください。', [generalError]: '予期しないサーバエラーが発生しました。後でもう一度やり直してください。', [forwardSuccess]: '通話が転送されました', [transferCompleted]: '通話が転送されました', [replyCompleted]: 'ボイスメッセージが送信されました。', } as const; // @key: @#@"callsMerged"@#@ @source: @#@"Calls merged"@#@ // @key: @#@"somethingWentWrong"@#@ @source: @#@"Something went wrong. Please try again."@#@ // @key: @#@"tooManyParticipants"@#@ @source: @#@"Maximum number of participants is reached."@#@ // @key: @#@"muteConflictError"@#@ @source: @#@"This call had been muted on other device. Please unmute the call before you control in this App."@#@ // @key: @#@"unHoldConflictError"@#@ @source: @#@"This call had been held on other device. Please unhold the call before you control in this App."@#@ // @key: @#@"unMuteConflictError"@#@ @source: @#@"This call had been unmuted on other device. Please mute the call before you control in this App."@#@ // @key: @#@"holdConflictError"@#@ @source: @#@"This call had been unheld on other device. Please hold the call before you control in this App."@#@ // @key: @#@"generalError"@#@ @source: @#@"Unexpected server error. Please try again later."@#@ // @key: @#@"forwardSuccess"@#@ @source: @#@"Call forwarded"@#@ // @key: @#@"transferCompleted"@#@ @source: @#@"Call transferred"@#@ // @key: @#@"replyCompleted"@#@ @source: @#@"Voice message sent."@#@