diff --git a/console/src/assets/i18n/en.json b/console/src/assets/i18n/en.json index 2800d05c6f..1ac4dd3493 100644 --- a/console/src/assets/i18n/en.json +++ b/console/src/assets/i18n/en.json @@ -486,8 +486,8 @@ "CHANGEUSERNAME": "modify", "CHANGEUSERNAME_TITLE": "Change username", "CHANGEUSERNAME_DESC": "Enter the new name in the field below.", - "FIRSTNAME": "First Name", - "LASTNAME": "Last Name", + "FIRSTNAME": "Given Name", + "LASTNAME": "Family Name", "NICKNAME": "Nickname", "DISPLAYNAME": "Display Name", "PREFERRED_LANGUAGE": "Language", @@ -1294,8 +1294,8 @@ "PC": "Password Change" }, "CHIPS": { - "firstname": "Firstname", - "lastname": "Lastname", + "firstname": "Given name", + "lastname": "Family name", "code": "Code", "preferredLoginName": "Preferred Login Name", "displayName": "Displayname", @@ -1766,8 +1766,8 @@ "DISPLAYNAMEATTRIBUTE": "Displayname attribute", "EMAILATTRIBUTEATTRIBUTE": "Email attribute", "EMAILVERIFIEDATTRIBUTE": "Email verified attribute", - "FIRSTNAMEATTRIBUTE": "Firstname attribute", - "LASTNAMEATTRIBUTE": "Lastname attribute", + "FIRSTNAMEATTRIBUTE": "Given name attribute", + "LASTNAMEATTRIBUTE": "Family name attribute", "NICKNAMEATTRIBUTE": "Nickname attribute", "PHONEATTRIBUTE": "Phone attribute", "PHONEVERIFIEDATTRIBUTE": "Phone verified attribute", diff --git a/docs/docs/apis/actions/external-authentication.md b/docs/docs/apis/actions/external-authentication.md index f26f55af84..5d56066707 100644 --- a/docs/docs/apis/actions/external-authentication.md +++ b/docs/docs/apis/actions/external-authentication.md @@ -36,9 +36,9 @@ The first parameter contains the following fields - `appendMetadata(string, Any)` The first parameter represents the key and the second a value which will be stored - `setFirstName(string)` - Sets the first name + Sets the given name - `setLastName(string)` - Sets the last name + Sets the family name - `setNickName(string)` Sets the nickname - `setDisplayName(string)` @@ -75,9 +75,9 @@ A user selected **Register** on the overview page after external authentication. - `metadata` Array of [*metadata*](./objects#metadata-with-value-as-bytes). This function is deprecated, please use `api.v1.user.appendMetadata` - `setFirstName(string)` - Sets the first name + Sets the given name - `setLastName(string)` - Sets the last name + Sets the family name - `setNickName(string)` Sets the nick name - `setDisplayName(string)` diff --git a/docs/docs/guides/integrate/login-ui/external-login.mdx b/docs/docs/guides/integrate/login-ui/external-login.mdx index 81da1dcaec..fa84303d37 100644 --- a/docs/docs/guides/integrate/login-ui/external-login.mdx +++ b/docs/docs/guides/integrate/login-ui/external-login.mdx @@ -96,13 +96,13 @@ curl --request POST \ "idpId": "218528353504723201", "rawInformation": { "User": { - "email": "fabienne@rootd.ch", + "email": "minni@mouse.com", "email_verified": true, - "family_name": "Bühler", - "given_name": "Fabienne", - "hd": "rootd.ch", + "family_name": "Mouse", + "given_name": "Minnie", + "hd": "mouse.com", "locale": "de", - "name": "Fabienne Bühler", + "name": "Minnie Mouse", "picture": "https://lh3.googleusercontent.com/a/AAcKTtf973Q6NH8KzKTMEZELPU9lx45WpQ9FRBuxFdPb=s96-c", "sub": "111392805975715856637" } diff --git a/docs/docs/legal/_piid-table.mdx b/docs/docs/legal/_piid-table.mdx index 6677201b39..4fc3c36189 100644 --- a/docs/docs/legal/_piid-table.mdx +++ b/docs/docs/legal/_piid-table.mdx @@ -8,7 +8,7 @@ Basic data diff --git a/internal/api/ui/login/static/i18n/en.yaml b/internal/api/ui/login/static/i18n/en.yaml index 83862ee5ff..48a483a95b 100644 --- a/internal/api/ui/login/static/i18n/en.yaml +++ b/internal/api/ui/login/static/i18n/en.yaml @@ -211,8 +211,8 @@ RegistrationUser: DescriptionOrgRegister: Enter your Userdata. EmailLabel: E-Mail UsernameLabel: Username - FirstnameLabel: First name - LastnameLabel: Surname + FirstnameLabel: Given name + LastnameLabel: Family name LanguageLabel: Language German: Deutsch English: English @@ -242,8 +242,8 @@ ExternalRegistrationUserOverview: Description: We have taken your user details from the selected provider. You can now change or complete them. EmailLabel: E-Mail UsernameLabel: Username - FirstnameLabel: First name - LastnameLabel: Surname + FirstnameLabel: Given name + LastnameLabel: Family name NicknameLabel: Nickname PhoneLabel: Phonenumber LanguageLabel: Language @@ -270,8 +270,8 @@ RegistrationOrg: OrgNameLabel: Organization name EmailLabel: E-Mail UsernameLabel: Username - FirstnameLabel: First name - LastnameLabel: Surname + FirstnameLabel: Given name + LastnameLabel: Family name PasswordLabel: Password PasswordConfirmLabel: Password confirmation TosAndPrivacyLabel: Terms and conditions @@ -366,8 +366,8 @@ Errors: NotFound: Profile not found NotChanged: Profile not changed Empty: Profile is empty - FirstNameEmpty: First name in profile is empty - LastNameEmpty: Last name in profile is empty + FirstNameEmpty: Given name in profile is empty + LastNameEmpty: Family name in profile is empty IDMissing: Profile ID is missing Email: NotFound: Email not found diff --git a/internal/static/i18n/en.yaml b/internal/static/i18n/en.yaml index 5986651eac..f74322cb39 100644 --- a/internal/static/i18n/en.yaml +++ b/internal/static/i18n/en.yaml @@ -73,8 +73,8 @@ Errors: NotFound: Profile not found NotChanged: Profile not changed Empty: Profile is empty - FirstNameEmpty: First name in profile is empty - LastNameEmpty: Last name in profile is empty + FirstNameEmpty: Given name in profile is empty + LastNameEmpty: Family name in profile is empty IDMissing: Profile ID is missing Email: NotFound: Email not found diff --git a/proto/zitadel/auth.proto b/proto/zitadel/auth.proto index a8e0b38d20..dc1db1b9e7 100644 --- a/proto/zitadel/auth.proto +++ b/proto/zitadel/auth.proto @@ -361,7 +361,7 @@ service AuthService { option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = { tags: "User Profile"; summary: "Get My Profile"; - description: "Returns the profile information of the authenticated user, this includes first name, last name, etc." + description: "Returns the profile information of the authenticated user, this includes given name, family name, etc." }; } @@ -378,7 +378,7 @@ service AuthService { option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = { tags: "User Profile"; summary: "Update My Profile"; - description: "Change the profile information of the authenticated user. This includes information like first name, last name, language, etc." + description: "Change the profile information of the authenticated user. This includes information like given name, family name, language, etc." }; }