forked from fanruan/design
Browse Source
* commit '0b04ec774d4cb3688d03aaf4afa7c24480664608': REPORT-53591 远程环境检测及同步-插件名称提示有误 REPORT-53785 切换工作目录后更新本地组件库 REPORT-53772 【智能联动】组件名/数据集名替换时,拖入失败时重新再拖入成功 有几率造成多次替换 登录面板颜色切换 REPORT-53710 设计器处于未登录状态,切换至远程设计变为登录状态 REPORT-53651 & REPORT-53591 & REPORT-53610 插件检测结果展示和重启 REPORT-53651 & REPORT-53591 & REPORT-53610 插件检测结果展示和重启 REPORT-53714 海外版本访问社区时不提示登录 fix REPORT-53689 点击私人消息/社区,跳转的不是当前设计器登录账号 REPORT-51360 提供国际化翻译内容 如果存在更新升级的弹窗,则不显示引导页面 REPORT-53714 海外版本不显示引导页面persist/11.0
superman
3 years ago
19 changed files with 440 additions and 152 deletions
@ -1,5 +1,59 @@ |
|||||||
var Store = { |
var Store = { |
||||||
i18n : { |
i18n : { |
||||||
|
'Designer-Login_User_Name': 'Username/Email/Phone number', |
||||||
|
'Designer-Login_User_Name_Hint': 'Please enter username/email/phone number', |
||||||
|
'Designer-Login_Password': 'Password', |
||||||
|
'Designer-Login_Password_Hint': 'Please enter the password', |
||||||
|
'Designer-Login': 'Login', |
||||||
|
'Designer-Login_Title': 'FanRuan Passport Login', |
||||||
|
'Designer-Login_I_Have_Read': 'I have read', |
||||||
|
'Designer-Login_Service_Terms': 'Terms of Service', |
||||||
|
'Designer-Login_Forget_Password': 'Forgot your password?', |
||||||
|
'Designer-Login_Sms': 'SMS login', |
||||||
|
'Designer-Login_Normal': 'Password login', |
||||||
|
'Designer-Login_Phone': 'Phone number', |
||||||
|
'Designer-Login_Phone_Hint': 'Please enter your phone number', |
||||||
|
'Designer-Login_Code': 'Captcha', |
||||||
|
'Designer-Login_Code_Hint': 'Please enter the captcha', |
||||||
|
'Designer-Login_Code_Request': 'Get captcha', |
||||||
|
'Designer-Login_Code_Request_Again': 'Re-acquire', |
||||||
|
'Designer-Login_Register_Or_Login': 'Register/Login', |
||||||
|
'Designer-Basic_Chinese_Mainland': 'Mainland China', |
||||||
|
'Designer-Basic_Chinese_Hong_Kong': 'Hong Kong', |
||||||
|
'Designer-Basic_Chinese_Macao': 'Macao', |
||||||
|
'Designer-Basic_Chinese_Taiwan': 'Taiwan', |
||||||
|
'Designer-Basic_Turkey': 'Turkey', |
||||||
|
'Designer-Basic_South_Korea': 'South Korea', |
||||||
|
'Designer-Basic_Japan': 'Japan', |
||||||
|
'Designer-Basic_Singapore': 'Singapore', |
||||||
|
'Designer-Basic_Malaysia': 'Malaysia', |
||||||
|
'Designer-Login_Username_Not_Null': 'Username cannot be empty', |
||||||
|
'Designer-Login_Password_Not_Null': 'Password cannot be empty', |
||||||
|
'Designer-Login_Username_Or_Password_Incorrect': 'The username or password is incorrect, please check', |
||||||
|
'Designer-Login_Phone_Not_Null': 'The phone number format is illegal', |
||||||
|
'Designer-Login_Code_Not_Null': 'The captcha cannot be empty', |
||||||
|
'Designer-Login_Code_Incorrect': 'The captcha has expired, please get it again', |
||||||
|
'Designer-Login_Password_Setting_Hint': 'Enter the login password (6-16 digits password can be entered)', |
||||||
|
'Designer-Login_Store_User_Not_Exist': 'The username does not exist', |
||||||
|
'Designer-Login_Store_User_Password_Error': 'Username or password is incorrect', |
||||||
|
'Designer-Login_Token_Request_Failed': 'Failed to get registration token', |
||||||
|
'Designer-Login_Unexpected_Error': 'Unexpected error', |
||||||
|
'Designer-Login_Internal_Error': 'Server internal error', |
||||||
|
'Designer-Guide_Do_Not_Remind': 'No reminders within one month', |
||||||
|
'Designer-Guide_Login': 'Login now', |
||||||
|
'Designer-BBS_Register_Timeout': 'Register timeout, please resend the captcha', |
||||||
|
'Designer-BBS_Phone_Is_Register': 'The phone number is already registered', |
||||||
|
'Designer-BBS_Captcha_Send_Exceed_Limit': 'The captcha can only be sent once every 60s', |
||||||
|
'Designer-BBS_Phone_Format_Error': 'Failed to send, the phone number format is incorrect', |
||||||
|
'Designer-BBS_Captcha_Out_Of_Date': 'The captcha has expired, please get it again', |
||||||
|
'Designer-BBS_Captcha_Try_Exceed_Limit': 'The number of attempts of the captcha has reached the upper limit, please get it again', |
||||||
|
'Designer-BBS_Captcha_Error': 'Captcha error', |
||||||
|
'Designer-BBS_Username_Format_Error': 'The nickname only supports Chinese, English and numbers', |
||||||
|
'Designer-BBS_Username_Too_Short': 'The length of the nickname is too short', |
||||||
|
'Designer-BBS_Username_Too_Long': 'The length of this nickname has reached the upper limit', |
||||||
|
'Designer-BBS_Username_Is_Register': 'The user has been registered', |
||||||
|
'Designer-BBS_Please_Enter_Correct_Phone': 'Please enter the correct phone number', |
||||||
|
'Designer-Login_Network_Connected_Failed': 'Network connection failed', |
||||||
|
|
||||||
}} |
}} |
||||||
window.Store = Store; |
window.Store = Store; |
@ -1,5 +1,59 @@ |
|||||||
var Store = { |
var Store = { |
||||||
i18n : { |
i18n : { |
||||||
|
'Designer-Login_User_Name': 'ユーザ名/メールアドレス/携帯番号', |
||||||
|
'Designer-Login_User_Name_Hint': 'ユーザ名/メールアドレス/携帯番号を入力してください。', |
||||||
|
'Designer-Login_Password': 'パスワード', |
||||||
|
'Designer-Login_Password_Hint': 'パスワードを入力してください。', |
||||||
|
'Designer-Login': 'ログイン', |
||||||
|
'Designer-Login_Title': 'FanRuanアカウントでログイン', |
||||||
|
'Designer-Login_I_Have_Read': '承認する', |
||||||
|
'Designer-Login_Service_Terms': '利用規約', |
||||||
|
'Designer-Login_Forget_Password': 'パスワードをお忘れですか', |
||||||
|
'Designer-Login_Sms': '認証コードログイン', |
||||||
|
'Designer-Login_Normal': 'パスワードでログイン', |
||||||
|
'Designer-Login_Phone': '携帯番号', |
||||||
|
'Designer-Login_Phone_Hint': '携帯番号を入力してください。', |
||||||
|
'Designer-Login_Code': '認証コード', |
||||||
|
'Designer-Login_Code_Hint': '認証コードを入力してください。', |
||||||
|
'Designer-Login_Code_Request': '認証コードを取得', |
||||||
|
'Designer-Login_Code_Request_Again': '再取得', |
||||||
|
'Designer-Login_Register_Or_Login': '登録/ログイン', |
||||||
|
'Designer-Basic_Chinese_Mainland': '中国大陸', |
||||||
|
'Designer-Basic_Chinese_Hong_Kong': '中国香港', |
||||||
|
'Designer-Basic_Chinese_Macao': '中国澳門', |
||||||
|
'Designer-Basic_Chinese_Taiwan': '中国台湾', |
||||||
|
'Designer-Basic_Turkey': 'トルコ共和国', |
||||||
|
'Designer-Basic_South_Korea': '韓国', |
||||||
|
'Designer-Basic_Japan': '日本', |
||||||
|
'Designer-Basic_Singapore': 'シンガポール', |
||||||
|
'Designer-Basic_Malaysia': 'マレーシア', |
||||||
|
'Designer-Login_Username_Not_Null': 'ユーザ名は空白不可。', |
||||||
|
'Designer-Login_Password_Not_Null': 'パスワードは空白不可。', |
||||||
|
'Designer-Login_Username_Or_Password_Incorrect': 'ユーザ名又はパスワードが間違っています。ご確認ください。', |
||||||
|
'Designer-Login_Phone_Not_Null': '携帯番号の形式が正しくない。', |
||||||
|
'Designer-Login_Code_Not_Null': '認証コードは空白不可。', |
||||||
|
'Designer-Login_Code_Incorrect': '認証コードが無効になりました。再取得してください。', |
||||||
|
'Designer-Login_Password_Setting_Hint': 'パスワードを入力してください。(6‐16桁入力可能)', |
||||||
|
'Designer-Login_Store_User_Not_Exist': 'ユーザ名は存在しません', |
||||||
|
'Designer-Login_Store_User_Password_Error': 'ユーザ名又はパスワードが間違っています。', |
||||||
|
'Designer-Login_Token_Request_Failed': '登録Token取得に失敗', |
||||||
|
'Designer-Login_Unexpected_Error': '未知のエラー', |
||||||
|
'Designer-Login_Internal_Error': 'サーバ内部エラー', |
||||||
|
'Designer-Guide_Do_Not_Remind': '一か月内アラートしません。', |
||||||
|
'Designer-Guide_Login': 'ログイン', |
||||||
|
'Designer-BBS_Register_Timeout': '登録Timeout、検証コードをもう一度取得してください。', |
||||||
|
'Designer-BBS_Phone_Is_Register': 'この携帯は既に登録されています。', |
||||||
|
'Designer-BBS_Captcha_Send_Exceed_Limit': '認証コードは60s内に一回しか送信できません。', |
||||||
|
'Designer-BBS_Phone_Format_Error': '携帯番号の形式が間違っています、検証コード送信失敗。', |
||||||
|
'Designer-BBS_Captcha_Out_Of_Date': '認証コードが無効になりました。再取得してください。', |
||||||
|
'Designer-BBS_Captcha_Try_Exceed_Limit': '認証コードの試行回数が上限に達しています。再取得してください。', |
||||||
|
'Designer-BBS_Captcha_Error': '認証コードが間違っています。', |
||||||
|
'Designer-BBS_Username_Format_Error': 'ユーザ名は漢字、アルバイトと数字しかサポートできません。', |
||||||
|
'Designer-BBS_Username_Too_Short': 'ユーザ名が短すぎます。', |
||||||
|
'Designer-BBS_Username_Too_Long': 'ユーザ名が長すぎます。', |
||||||
|
'Designer-BBS_Username_Is_Register': 'このユーザは登録済みです。', |
||||||
|
'Designer-BBS_Please_Enter_Correct_Phone': '正確な携帯番号を入力してください。', |
||||||
|
'Designer-Login_Network_Connected_Failed': 'インターネット接続失敗', |
||||||
|
|
||||||
}} |
}} |
||||||
window.Store = Store; |
window.Store = Store; |
@ -1,5 +1,59 @@ |
|||||||
var Store = { |
var Store = { |
||||||
i18n : { |
i18n : { |
||||||
|
'Designer-Login_User_Name': 'Username/Email/Phone number', |
||||||
|
'Designer-Login_User_Name_Hint': 'Please enter username/email/phone number', |
||||||
|
'Designer-Login_Password': 'Password', |
||||||
|
'Designer-Login_Password_Hint': 'Please enter the password', |
||||||
|
'Designer-Login': 'Login', |
||||||
|
'Designer-Login_Title': 'FanRuan Passport Login', |
||||||
|
'Designer-Login_I_Have_Read': 'I have read', |
||||||
|
'Designer-Login_Service_Terms': 'Terms of Service', |
||||||
|
'Designer-Login_Forget_Password': 'Forgot your password?', |
||||||
|
'Designer-Login_Sms': 'SMS login', |
||||||
|
'Designer-Login_Normal': 'Password login', |
||||||
|
'Designer-Login_Phone': 'Phone number', |
||||||
|
'Designer-Login_Phone_Hint': 'Please enter your phone number', |
||||||
|
'Designer-Login_Code': 'Captcha', |
||||||
|
'Designer-Login_Code_Hint': 'Please enter the captcha', |
||||||
|
'Designer-Login_Code_Request': 'Get captcha', |
||||||
|
'Designer-Login_Code_Request_Again': 'Re-acquire', |
||||||
|
'Designer-Login_Register_Or_Login': 'Register/Login', |
||||||
|
'Designer-Basic_Chinese_Mainland': 'Mainland China', |
||||||
|
'Designer-Basic_Chinese_Hong_Kong': 'Hong Kong', |
||||||
|
'Designer-Basic_Chinese_Macao': 'Macao', |
||||||
|
'Designer-Basic_Chinese_Taiwan': 'Taiwan', |
||||||
|
'Designer-Basic_Turkey': 'Turkey', |
||||||
|
'Designer-Basic_South_Korea': 'South Korea', |
||||||
|
'Designer-Basic_Japan': 'Japan', |
||||||
|
'Designer-Basic_Singapore': 'Singapore', |
||||||
|
'Designer-Basic_Malaysia': 'Malaysia', |
||||||
|
'Designer-Login_Username_Not_Null': 'Username cannot be empty', |
||||||
|
'Designer-Login_Password_Not_Null': 'Password cannot be empty', |
||||||
|
'Designer-Login_Username_Or_Password_Incorrect': 'The username or password is incorrect, please check', |
||||||
|
'Designer-Login_Phone_Not_Null': 'The phone number format is illegal', |
||||||
|
'Designer-Login_Code_Not_Null': 'The captcha cannot be empty', |
||||||
|
'Designer-Login_Code_Incorrect': 'The captcha has expired, please get it again', |
||||||
|
'Designer-Login_Password_Setting_Hint': 'Enter the login password (6-16 digits password can be entered)', |
||||||
|
'Designer-Login_Store_User_Not_Exist': 'The username does not exist', |
||||||
|
'Designer-Login_Store_User_Password_Error': 'Username or password is incorrect', |
||||||
|
'Designer-Login_Token_Request_Failed': 'Failed to get registration token', |
||||||
|
'Designer-Login_Unexpected_Error': 'Unexpected error', |
||||||
|
'Designer-Login_Internal_Error': 'Server internal error', |
||||||
|
'Designer-Guide_Do_Not_Remind': 'No reminders within one month', |
||||||
|
'Designer-Guide_Login': 'Login now', |
||||||
|
'Designer-BBS_Register_Timeout': 'Register timeout, please resend the captcha', |
||||||
|
'Designer-BBS_Phone_Is_Register': 'The phone number is already registered', |
||||||
|
'Designer-BBS_Captcha_Send_Exceed_Limit': 'The captcha can only be sent once every 60s', |
||||||
|
'Designer-BBS_Phone_Format_Error': 'Failed to send, the phone number format is incorrect', |
||||||
|
'Designer-BBS_Captcha_Out_Of_Date': 'The captcha has expired, please get it again', |
||||||
|
'Designer-BBS_Captcha_Try_Exceed_Limit': 'The number of attempts of the captcha has reached the upper limit, please get it again', |
||||||
|
'Designer-BBS_Captcha_Error': 'Captcha error', |
||||||
|
'Designer-BBS_Username_Format_Error': 'The nickname only supports Chinese, English and numbers', |
||||||
|
'Designer-BBS_Username_Too_Short': 'The length of the nickname is too short', |
||||||
|
'Designer-BBS_Username_Too_Long': 'The length of this nickname has reached the upper limit', |
||||||
|
'Designer-BBS_Username_Is_Register': 'The user has been registered', |
||||||
|
'Designer-BBS_Please_Enter_Correct_Phone': 'Please enter the correct phone number', |
||||||
|
'Designer-Login_Network_Connected_Failed': 'Network connection failed', |
||||||
|
|
||||||
}} |
}} |
||||||
window.Store = Store; |
window.Store = Store; |
@ -1,5 +1,59 @@ |
|||||||
var Store = { |
var Store = { |
||||||
i18n : { |
i18n : { |
||||||
|
'Designer-Login_User_Name': '帳號/郵箱/手機號', |
||||||
|
'Designer-Login_User_Name_Hint': '請輸入帳號/郵箱/手機號', |
||||||
|
'Designer-Login_Password': '密碼', |
||||||
|
'Designer-Login_Password_Hint': '請輸入密碼', |
||||||
|
'Designer-Login': '登入', |
||||||
|
'Designer-Login_Title': '帆軟通行證登入', |
||||||
|
'Designer-Login_I_Have_Read': '我已閱讀', |
||||||
|
'Designer-Login_Service_Terms': '服務條款', |
||||||
|
'Designer-Login_Forget_Password': '忘記密碼?', |
||||||
|
'Designer-Login_Sms': '驗證碼登入', |
||||||
|
'Designer-Login_Normal': '密碼登入', |
||||||
|
'Designer-Login_Phone': '手機號碼', |
||||||
|
'Designer-Login_Phone_Hint': '請輸入手機號碼', |
||||||
|
'Designer-Login_Code': '驗證碼', |
||||||
|
'Designer-Login_Code_Hint': '請輸入驗證碼', |
||||||
|
'Designer-Login_Code_Request': '獲取驗證碼', |
||||||
|
'Designer-Login_Code_Request_Again': '重新獲取', |
||||||
|
'Designer-Login_Register_Or_Login': '註冊/登入', |
||||||
|
'Designer-Basic_Chinese_Mainland': '中國大陸', |
||||||
|
'Designer-Basic_Chinese_Hong_Kong': '中國香港', |
||||||
|
'Designer-Basic_Chinese_Macao': '中國澳門', |
||||||
|
'Designer-Basic_Chinese_Taiwan': '中國臺灣', |
||||||
|
'Designer-Basic_Turkey': '土耳其', |
||||||
|
'Designer-Basic_South_Korea': '韓國', |
||||||
|
'Designer-Basic_Japan': '日本', |
||||||
|
'Designer-Basic_Singapore': '新加坡', |
||||||
|
'Designer-Basic_Malaysia': '馬來西亞', |
||||||
|
'Designer-Login_Username_Not_Null': '使用者名稱不能為空', |
||||||
|
'Designer-Login_Password_Not_Null': '密碼不能為空', |
||||||
|
'Designer-Login_Username_Or_Password_Incorrect': '使用者名稱或者密碼錯誤,請檢查', |
||||||
|
'Designer-Login_Phone_Not_Null': '手機號碼格式不正確', |
||||||
|
'Designer-Login_Code_Not_Null': '驗證碼不能為空', |
||||||
|
'Designer-Login_Code_Incorrect': '驗證碼已過期,請重新獲取', |
||||||
|
'Designer-Login_Password_Setting_Hint': '輸入登入密碼(可輸入6-16位密碼)', |
||||||
|
'Designer-Login_Store_User_Not_Exist': '帳號不存在', |
||||||
|
'Designer-Login_Store_User_Password_Error': '帳號或密碼錯誤', |
||||||
|
'Designer-Login_Token_Request_Failed': '註冊令牌獲取失敗', |
||||||
|
'Designer-Login_Unexpected_Error': '未知錯誤', |
||||||
|
'Designer-Login_Internal_Error': '伺服器內部錯誤', |
||||||
|
'Designer-Guide_Do_Not_Remind': '一個月內不再提醒', |
||||||
|
'Designer-Guide_Login': '立即登入', |
||||||
|
'Designer-BBS_Register_Timeout': '註冊超時,請重新發送驗證碼', |
||||||
|
'Designer-BBS_Phone_Is_Register': '該手機號碼已註冊', |
||||||
|
'Designer-BBS_Captcha_Send_Exceed_Limit': '驗證碼每60s只能傳送一次', |
||||||
|
'Designer-BBS_Phone_Format_Error': '傳送失敗,手機號格式錯誤', |
||||||
|
'Designer-BBS_Captcha_Out_Of_Date': '驗證碼已過期,請重新獲取', |
||||||
|
'Designer-BBS_Captcha_Try_Exceed_Limit': '驗證碼嘗試次數已達上限,請重新獲取', |
||||||
|
'Designer-BBS_Captcha_Error': '驗證碼錯誤', |
||||||
|
'Designer-BBS_Username_Format_Error': '暱稱只支援中英文和數字', |
||||||
|
'Designer-BBS_Username_Too_Short': '暱稱長度太短', |
||||||
|
'Designer-BBS_Username_Too_Long': '這個暱稱長度已經達到了上限', |
||||||
|
'Designer-BBS_Username_Is_Register': '該帳號已被註冊', |
||||||
|
'Designer-BBS_Please_Enter_Correct_Phone': '請輸入正確的手機號', |
||||||
|
'Designer-Login_Network_Connected_Failed': '網路連線失敗', |
||||||
|
|
||||||
}} |
}} |
||||||
window.Store = Store; |
window.Store = Store; |
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue