From bfcfb56336799ff24068f06e7d1aaa214d75d4ff Mon Sep 17 00:00:00 2001 From: DacongDA Date: Sun, 19 May 2024 23:55:38 +0800 Subject: [PATCH] feat: add address line 1 and 2 in web UI (#2961) --- web/src/UserEditPage.js | 46 ++++++++++++++++++++++++++---------- web/src/locales/ar/data.json | 2 ++ web/src/locales/de/data.json | 2 ++ web/src/locales/en/data.json | 2 ++ web/src/locales/es/data.json | 2 ++ web/src/locales/fa/data.json | 2 ++ web/src/locales/fi/data.json | 2 ++ web/src/locales/fr/data.json | 2 ++ web/src/locales/he/data.json | 2 ++ web/src/locales/id/data.json | 2 ++ web/src/locales/it/data.json | 2 ++ web/src/locales/ja/data.json | 2 ++ web/src/locales/kk/data.json | 2 ++ web/src/locales/ko/data.json | 2 ++ web/src/locales/ms/data.json | 2 ++ web/src/locales/nl/data.json | 2 ++ web/src/locales/pl/data.json | 2 ++ web/src/locales/pt/data.json | 2 ++ web/src/locales/ru/data.json | 2 ++ web/src/locales/sv/data.json | 2 ++ web/src/locales/tr/data.json | 2 ++ web/src/locales/uk/data.json | 2 ++ web/src/locales/vi/data.json | 2 ++ web/src/locales/zh/data.json | 2 ++ 24 files changed, 80 insertions(+), 12 deletions(-) diff --git a/web/src/UserEditPage.js b/web/src/UserEditPage.js index d6723ed0..407dda2b 100644 --- a/web/src/UserEditPage.js +++ b/web/src/UserEditPage.js @@ -202,7 +202,7 @@ class UserEditPage extends React.Component { return value; } - updateUserField(key, value) { + updateUserField(key, value, idx) { if (this.props.account === null) { return; } @@ -210,7 +210,12 @@ class UserEditPage extends React.Component { value = this.parseUserField(key, value); const user = this.state.user; - user[key] = value; + if (key === "address") { + user[key][idx] = value; + } else { + user[key] = value; + } + this.setState({ user: user, }); @@ -501,16 +506,33 @@ class UserEditPage extends React.Component { ); } else if (accountItem.name === "Address") { return ( - - - {Setting.getLabel(i18next.t("user:Address"), i18next.t("user:Address - Tooltip"))} : - - - { - this.updateUserField("address", e.target.value); - }} /> - - + + + + {Setting.getLabel(i18next.t("user:Address"), i18next.t("user:Address - Tooltip"))} : + + + {i18next.t("user:Address line") + " 1"} : + + + { + this.updateUserField("address", e.target.value, 0); + }} /> + + + + + + + {i18next.t("user:Address line") + " 2"} : + + + { + this.updateUserField("address", e.target.value, 1); + }} /> + + + ); } else if (accountItem.name === "Affiliation") { return ( diff --git a/web/src/locales/ar/data.json b/web/src/locales/ar/data.json index a5d81e16..9a6795a0 100644 --- a/web/src/locales/ar/data.json +++ b/web/src/locales/ar/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "The input is not invoice Tax ID!", "The input is not invoice title!": "The input is not invoice title!", "The input is not valid Email!": "The input is not valid Email!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Social logins linked by the user", "Address": "Address", "Address - Tooltip": "Residential address", + "Address line": "Address line", "Affiliation": "Affiliation", "Affiliation - Tooltip": "Employer, such as company name or organization name", "Bio": "Bio", diff --git a/web/src/locales/de/data.json b/web/src/locales/de/data.json index f4b14fb8..afef7d01 100644 --- a/web/src/locales/de/data.json +++ b/web/src/locales/de/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "Die Eingabe ist keine Rechnungssteuer-ID!", "The input is not invoice title!": "Der Eingabewert ist nicht die Rechnungsbezeichnung!", "The input is not valid Email!": "Die Eingabe ist keine gültige E-Mail-Adresse!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Drittanbieter-Anmeldungen, die mit dem Benutzer verknüpft sind", "Address": "Adresse", "Address - Tooltip": "Wohnadresse", + "Address line": "Address line", "Affiliation": "Zugehörigkeit", "Affiliation - Tooltip": "Arbeitgeber, wie Firmenname oder Organisationsname", "Bio": "Bio", diff --git a/web/src/locales/en/data.json b/web/src/locales/en/data.json index ebcd3141..d05dc78d 100644 --- a/web/src/locales/en/data.json +++ b/web/src/locales/en/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "The input is not invoice Tax ID!", "The input is not invoice title!": "The input is not invoice title!", "The input is not valid Email!": "The input is not valid Email!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Social logins linked by the user", "Address": "Address", "Address - Tooltip": "Residential address", + "Address line": "Address line", "Affiliation": "Affiliation", "Affiliation - Tooltip": "Employer, such as company name or organization name", "Bio": "Bio", diff --git a/web/src/locales/es/data.json b/web/src/locales/es/data.json index 7b7e4a18..bfba3a01 100644 --- a/web/src/locales/es/data.json +++ b/web/src/locales/es/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "¡La entrada no es el ID fiscal de la factura!", "The input is not invoice title!": "¡El entrada no es el título de la factura!", "The input is not valid Email!": "¡La entrada no es un correo electrónico válido!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Accesos sociales ligados por el usuario", "Address": "Dirección", "Address - Tooltip": "Dirección residencial", + "Address line": "Address line", "Affiliation": "Afiliación", "Affiliation - Tooltip": "Empleador, como el nombre de una empresa u organización", "Bio": "Bio - Biografía", diff --git a/web/src/locales/fa/data.json b/web/src/locales/fa/data.json index e172546d..d0416e00 100644 --- a/web/src/locales/fa/data.json +++ b/web/src/locales/fa/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "The input is not invoice Tax ID!", "The input is not invoice title!": "The input is not invoice title!", "The input is not valid Email!": "The input is not valid Email!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Social logins linked by the user", "Address": "Address", "Address - Tooltip": "Residential address", + "Address line": "Address line", "Affiliation": "Affiliation", "Affiliation - Tooltip": "Employer, such as company name or organization name", "Bio": "Bio", diff --git a/web/src/locales/fi/data.json b/web/src/locales/fi/data.json index c396713e..f8e9dd8d 100644 --- a/web/src/locales/fi/data.json +++ b/web/src/locales/fi/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "The input is not invoice Tax ID!", "The input is not invoice title!": "The input is not invoice title!", "The input is not valid Email!": "The input is not valid Email!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Social logins linked by the user", "Address": "Address", "Address - Tooltip": "Residential address", + "Address line": "Address line", "Affiliation": "Affiliation", "Affiliation - Tooltip": "Employer, such as company name or organization name", "Bio": "Bio", diff --git a/web/src/locales/fr/data.json b/web/src/locales/fr/data.json index 384b000d..9f5d2430 100644 --- a/web/src/locales/fr/data.json +++ b/web/src/locales/fr/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "L'entrée n'est pas l'identifiant fiscal de la facture !", "The input is not invoice title!": "L'entrée n'est pas un nom ou une dénomination sociale !", "The input is not valid Email!": "L'entrée n'est pas une adresse e-mail valide !", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Service de connexions tiers liés au compte", "Address": "Adresse", "Address - Tooltip": "Adresse résidentielle", + "Address line": "Address line", "Affiliation": "Affiliation", "Affiliation - Tooltip": "Employeur, tel que le nom de l'entreprise ou de l'organisation", "Bio": "Bio", diff --git a/web/src/locales/he/data.json b/web/src/locales/he/data.json index c396713e..f8e9dd8d 100644 --- a/web/src/locales/he/data.json +++ b/web/src/locales/he/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "The input is not invoice Tax ID!", "The input is not invoice title!": "The input is not invoice title!", "The input is not valid Email!": "The input is not valid Email!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Social logins linked by the user", "Address": "Address", "Address - Tooltip": "Residential address", + "Address line": "Address line", "Affiliation": "Affiliation", "Affiliation - Tooltip": "Employer, such as company name or organization name", "Bio": "Bio", diff --git a/web/src/locales/id/data.json b/web/src/locales/id/data.json index 554b49e2..186131de 100644 --- a/web/src/locales/id/data.json +++ b/web/src/locales/id/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "Input ini bukan Tax ID faktur!", "The input is not invoice title!": "Masukan bukan judul faktur!", "The input is not valid Email!": "Input yang dimasukkan bukan sesuai dengan format Email yang valid!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Masuk sosial yang terhubung oleh pengguna", "Address": "Alamat", "Address - Tooltip": "Alamat tempat tinggal", + "Address line": "Address line", "Affiliation": "Afiliasi", "Affiliation - Tooltip": "Pemberi Kerja, seperti nama perusahaan atau nama organisasi", "Bio": "Bio: Biografi", diff --git a/web/src/locales/it/data.json b/web/src/locales/it/data.json index 629ae032..9fb74c63 100644 --- a/web/src/locales/it/data.json +++ b/web/src/locales/it/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "The input is not invoice Tax ID!", "The input is not invoice title!": "The input is not invoice title!", "The input is not valid Email!": "The input is not valid Email!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Social logins linked by the user", "Address": "Address", "Address - Tooltip": "Residential address", + "Address line": "Address line", "Affiliation": "Affiliation", "Affiliation - Tooltip": "Employer, such as company name or organization name", "Bio": "Bio", diff --git a/web/src/locales/ja/data.json b/web/src/locales/ja/data.json index 395f9f5b..d4d7abd5 100644 --- a/web/src/locales/ja/data.json +++ b/web/src/locales/ja/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "入力されたものは請求書の税番号ではありません!", "The input is not invoice title!": "インプットは請求書タイトルではありません!", "The input is not valid Email!": "入力されたものは有効なメールではありません", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "ユーザーによってリンクされたソーシャルログイン", "Address": "住所", "Address - Tooltip": "住所", + "Address line": "Address line", "Affiliation": "所属", "Affiliation - Tooltip": "企業名や団体名などの雇用主", "Bio": "バイオ技術", diff --git a/web/src/locales/kk/data.json b/web/src/locales/kk/data.json index c396713e..f8e9dd8d 100644 --- a/web/src/locales/kk/data.json +++ b/web/src/locales/kk/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "The input is not invoice Tax ID!", "The input is not invoice title!": "The input is not invoice title!", "The input is not valid Email!": "The input is not valid Email!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Social logins linked by the user", "Address": "Address", "Address - Tooltip": "Residential address", + "Address line": "Address line", "Affiliation": "Affiliation", "Affiliation - Tooltip": "Employer, such as company name or organization name", "Bio": "Bio", diff --git a/web/src/locales/ko/data.json b/web/src/locales/ko/data.json index 8cbef645..7581f156 100644 --- a/web/src/locales/ko/data.json +++ b/web/src/locales/ko/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "입력한 것은 송장 세금 ID가 아닙니다!", "The input is not invoice title!": "입력값은 송장 제목이 아닙니다!", "The input is not valid Email!": "입력 값은 유효한 이메일이 아닙니다!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "사용자가 연결한 소셜 로그인", "Address": "주소", "Address - Tooltip": "주거지 주소", + "Address line": "Address line", "Affiliation": "소속", "Affiliation - Tooltip": "고용주, 회사명 또는 조직명", "Bio": "바이오", diff --git a/web/src/locales/ms/data.json b/web/src/locales/ms/data.json index c396713e..f8e9dd8d 100644 --- a/web/src/locales/ms/data.json +++ b/web/src/locales/ms/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "The input is not invoice Tax ID!", "The input is not invoice title!": "The input is not invoice title!", "The input is not valid Email!": "The input is not valid Email!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Social logins linked by the user", "Address": "Address", "Address - Tooltip": "Residential address", + "Address line": "Address line", "Affiliation": "Affiliation", "Affiliation - Tooltip": "Employer, such as company name or organization name", "Bio": "Bio", diff --git a/web/src/locales/nl/data.json b/web/src/locales/nl/data.json index c396713e..f8e9dd8d 100644 --- a/web/src/locales/nl/data.json +++ b/web/src/locales/nl/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "The input is not invoice Tax ID!", "The input is not invoice title!": "The input is not invoice title!", "The input is not valid Email!": "The input is not valid Email!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Social logins linked by the user", "Address": "Address", "Address - Tooltip": "Residential address", + "Address line": "Address line", "Affiliation": "Affiliation", "Affiliation - Tooltip": "Employer, such as company name or organization name", "Bio": "Bio", diff --git a/web/src/locales/pl/data.json b/web/src/locales/pl/data.json index c396713e..f8e9dd8d 100644 --- a/web/src/locales/pl/data.json +++ b/web/src/locales/pl/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "The input is not invoice Tax ID!", "The input is not invoice title!": "The input is not invoice title!", "The input is not valid Email!": "The input is not valid Email!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Social logins linked by the user", "Address": "Address", "Address - Tooltip": "Residential address", + "Address line": "Address line", "Affiliation": "Affiliation", "Affiliation - Tooltip": "Employer, such as company name or organization name", "Bio": "Bio", diff --git a/web/src/locales/pt/data.json b/web/src/locales/pt/data.json index 2091b56b..431cd837 100644 --- a/web/src/locales/pt/data.json +++ b/web/src/locales/pt/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "A entrada não é um ID fiscal de fatura válido!", "The input is not invoice title!": "A entrada não é um título de fatura válido!", "The input is not valid Email!": "A entrada não é um Email válido!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Logins sociais vinculados pelo usuário", "Address": "Endereço", "Address - Tooltip": "Endereço residencial", + "Address line": "Address line", "Affiliation": "Afiliação", "Affiliation - Tooltip": "Empregador, como nome da empresa ou organização", "Bio": "Biografia", diff --git a/web/src/locales/ru/data.json b/web/src/locales/ru/data.json index b539c308..d7720d4e 100644 --- a/web/src/locales/ru/data.json +++ b/web/src/locales/ru/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "Входные данные не являются идентификатором налога по счету-фактуре!", "The input is not invoice title!": "Входные данные не являются названием счета-фактуры!", "The input is not valid Email!": "Ввод не является действительным адресом электронной почты!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Социальные логины, связанные пользователем", "Address": "Адрес", "Address - Tooltip": "Адрес проживания", + "Address line": "Address line", "Affiliation": "Принадлежность", "Affiliation - Tooltip": "Работодатель, такой как название компании или организации", "Bio": "Био", diff --git a/web/src/locales/sv/data.json b/web/src/locales/sv/data.json index c396713e..f8e9dd8d 100644 --- a/web/src/locales/sv/data.json +++ b/web/src/locales/sv/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "The input is not invoice Tax ID!", "The input is not invoice title!": "The input is not invoice title!", "The input is not valid Email!": "The input is not valid Email!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Social logins linked by the user", "Address": "Address", "Address - Tooltip": "Residential address", + "Address line": "Address line", "Affiliation": "Affiliation", "Affiliation - Tooltip": "Employer, such as company name or organization name", "Bio": "Bio", diff --git a/web/src/locales/tr/data.json b/web/src/locales/tr/data.json index 9372f1f8..6944109f 100644 --- a/web/src/locales/tr/data.json +++ b/web/src/locales/tr/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "The input is not invoice Tax ID!", "The input is not invoice title!": "The input is not invoice title!", "The input is not valid Email!": "The input is not valid Email!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Social logins linked by the user", "Address": "Address", "Address - Tooltip": "Residential address", + "Address line": "Address line", "Affiliation": "Affiliation", "Affiliation - Tooltip": "Employer, such as company name or organization name", "Bio": "Bio", diff --git a/web/src/locales/uk/data.json b/web/src/locales/uk/data.json index 24540d9b..35576d7e 100644 --- a/web/src/locales/uk/data.json +++ b/web/src/locales/uk/data.json @@ -954,6 +954,7 @@ "Text 3": "Текст 3", "Text 4": "Текст 4", "Text 5": "Текст 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "Введені дані не є ідентифікаційним номером платника податків!", "The input is not invoice title!": "Введені дані не є назвою рахунку!", "The input is not valid Email!": "Введена недійсна адреса електронної пошти!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Соціальні входи, пов’язані користувачем", "Address": "Адреса", "Address - Tooltip": "Адреса місця проживання", + "Address line": "Address line", "Affiliation": "Приналежність", "Affiliation - Tooltip": "Роботодавець, наприклад назва компанії чи організації", "Bio": "біографія", diff --git a/web/src/locales/vi/data.json b/web/src/locales/vi/data.json index 0bfd2fe3..fa097b9f 100644 --- a/web/src/locales/vi/data.json +++ b/web/src/locales/vi/data.json @@ -954,6 +954,7 @@ "Text 3": "Text 3", "Text 4": "Text 4", "Text 5": "Text 5", + "The input Email doesn't match the signup item regex!": "The input Email doesn't match the signup item regex!", "The input is not invoice Tax ID!": "Đầu vào không phải là Mã số thuế của hóa đơn!", "The input is not invoice title!": "Đầu vào không phải là tiêu đề hóa đơn!", "The input is not valid Email!": "Đầu vào không phải là địa chỉ Email hợp lệ!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "Đăng nhập xã hội liên kết bởi người dùng", "Address": "Địa chỉ", "Address - Tooltip": "Địa chỉ cư trú", + "Address line": "Address line", "Affiliation": "Liên kết", "Affiliation - Tooltip": "Nhà tuyển dụng, chẳng hạn như tên công ty hoặc tổ chức", "Bio": "bản vẻ đời sống", diff --git a/web/src/locales/zh/data.json b/web/src/locales/zh/data.json index d1e6d8d2..7ea63e01 100644 --- a/web/src/locales/zh/data.json +++ b/web/src/locales/zh/data.json @@ -954,6 +954,7 @@ "Text 3": "文本3", "Text 4": "文本4", "Text 5": "文本5", + "The input Email doesn't match the signup item regex!": "您输入的邮箱地址与注册项的regex表达式不匹配!", "The input is not invoice Tax ID!": "您输入的纳税人识别号有误!", "The input is not invoice title!": "您输入的发票抬头有误!", "The input is not valid Email!": "您输入的电子邮箱格式有误!", @@ -1074,6 +1075,7 @@ "3rd-party logins - Tooltip": "用户所绑定的社会化登录", "Address": "地址", "Address - Tooltip": "居住地址", + "Address line": "地址", "Affiliation": "工作单位", "Affiliation - Tooltip": "工作单位,如公司、组织名称", "Bio": "自我介绍",