Commit b6b9a778 authored by chenweijian's avatar chenweijian

错误码

parent 4ba02fe6
......@@ -193,4 +193,19 @@ VALUES (251, 'zh', "已解绑CP,CP值被清空,CP特权已消失"),
(251, 'ca', "El CP se ha desvinculado, los puntos de CP se han borrado y el privilegio de CP ha desaparecido"),
(251, 'hi', "सीपी अनबाउंड हो गया है, सीपी पॉइंट क्लियर हो गए हैं, और सीपी विशेषाधिकार गायब हो गया है"),
(251, 'vi', "CP đã bị hủy liên kết, điểm CP đã bị xóa và đặc quyền CP đã biến mất"),
(251, 'ur', "CP کو غیر پابند کر دیا گیا ہے، CP پوائنٹس کو صاف کر دیا گیا ہے، اور CP کا استحقاق غائب ہو گیا ہے");
\ No newline at end of file
(251, 'ur', "CP کو غیر پابند کر دیا گیا ہے، CP پوائنٹس کو صاف کر دیا گیا ہے، اور CP کا استحقاق غائب ہو گیا ہے");
INSERT INTO hilo.res_multi_text (msg_id, `language`, content)
VALUES (258, 'zh', "已经过期"),
(258, 'en', "Already expired"),
(258, 'ar', "تم انتهاء صلاحيتها"),
(258, 'tr', "Zaten süresi dolmuş"),
(258, 'id', "Sudah kedaluwarsa"),
(258, 'ru', "Срок действия уже истек"),
(258, 'ko', "이미 만료됨"),
(258, 'pt', "Já expirou"),
(258, 'th', "หมดอายุแล้ว"),
(258, 'ca', "ya vencido"),
(258, 'hi', "पहले ही समाप्त हो चुका है"),
(258, 'vi', "Đã hết hạn"),
(258, 'ur', "پہلے ہی ختم ہو چکا ہے۔");
\ No newline at end of file
......@@ -156,7 +156,7 @@ func ReplyCpInvite(c *gin.Context) (*mycontext.MyContext, error) {
return myCtx, err
}
if cpRecord == nil || cpRecord.Id == 0 {
return myCtx, myerr.WrapErr(bizerr.InvalidParameter)
return myCtx, msg.GetErrByLanguage(model, common.MSG_ID_ALREADY_EXPIRED, lang, comerr.AlreadyExpired)
}
if optType == 1 { // 接受的时候
......@@ -316,7 +316,7 @@ func ReplyCpCancel(c *gin.Context) (*mycontext.MyContext, error) {
return myCtx, err
}
if cpCancel == nil || cpCancel.Id == 0 {
return myCtx, bizerr.InvalidParameter
return myCtx, msg.GetErrByLanguage(model, common.MSG_ID_ALREADY_EXPIRED, lang, comerr.AlreadyExpired)
}
if optType == 1 { // 撤销,只有自己能撤销自己的申请
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment