mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-07 19:57:40 +00:00
fix: rename to given and family name (#6152)
* fix: rename to given and family name * fix: rename to given and family name * fix: rename to given and family name
This commit is contained in:
parent
5f5f1558d0
commit
5182cb3ce3
@ -486,8 +486,8 @@
|
|||||||
"CHANGEUSERNAME": "modify",
|
"CHANGEUSERNAME": "modify",
|
||||||
"CHANGEUSERNAME_TITLE": "Change username",
|
"CHANGEUSERNAME_TITLE": "Change username",
|
||||||
"CHANGEUSERNAME_DESC": "Enter the new name in the field below.",
|
"CHANGEUSERNAME_DESC": "Enter the new name in the field below.",
|
||||||
"FIRSTNAME": "First Name",
|
"FIRSTNAME": "Given Name",
|
||||||
"LASTNAME": "Last Name",
|
"LASTNAME": "Family Name",
|
||||||
"NICKNAME": "Nickname",
|
"NICKNAME": "Nickname",
|
||||||
"DISPLAYNAME": "Display Name",
|
"DISPLAYNAME": "Display Name",
|
||||||
"PREFERRED_LANGUAGE": "Language",
|
"PREFERRED_LANGUAGE": "Language",
|
||||||
@ -1294,8 +1294,8 @@
|
|||||||
"PC": "Password Change"
|
"PC": "Password Change"
|
||||||
},
|
},
|
||||||
"CHIPS": {
|
"CHIPS": {
|
||||||
"firstname": "Firstname",
|
"firstname": "Given name",
|
||||||
"lastname": "Lastname",
|
"lastname": "Family name",
|
||||||
"code": "Code",
|
"code": "Code",
|
||||||
"preferredLoginName": "Preferred Login Name",
|
"preferredLoginName": "Preferred Login Name",
|
||||||
"displayName": "Displayname",
|
"displayName": "Displayname",
|
||||||
@ -1766,8 +1766,8 @@
|
|||||||
"DISPLAYNAMEATTRIBUTE": "Displayname attribute",
|
"DISPLAYNAMEATTRIBUTE": "Displayname attribute",
|
||||||
"EMAILATTRIBUTEATTRIBUTE": "Email attribute",
|
"EMAILATTRIBUTEATTRIBUTE": "Email attribute",
|
||||||
"EMAILVERIFIEDATTRIBUTE": "Email verified attribute",
|
"EMAILVERIFIEDATTRIBUTE": "Email verified attribute",
|
||||||
"FIRSTNAMEATTRIBUTE": "Firstname attribute",
|
"FIRSTNAMEATTRIBUTE": "Given name attribute",
|
||||||
"LASTNAMEATTRIBUTE": "Lastname attribute",
|
"LASTNAMEATTRIBUTE": "Family name attribute",
|
||||||
"NICKNAMEATTRIBUTE": "Nickname attribute",
|
"NICKNAMEATTRIBUTE": "Nickname attribute",
|
||||||
"PHONEATTRIBUTE": "Phone attribute",
|
"PHONEATTRIBUTE": "Phone attribute",
|
||||||
"PHONEVERIFIEDATTRIBUTE": "Phone verified attribute",
|
"PHONEVERIFIEDATTRIBUTE": "Phone verified attribute",
|
||||||
|
@ -36,9 +36,9 @@ The first parameter contains the following fields
|
|||||||
- `appendMetadata(string, Any)`
|
- `appendMetadata(string, Any)`
|
||||||
The first parameter represents the key and the second a value which will be stored
|
The first parameter represents the key and the second a value which will be stored
|
||||||
- `setFirstName(string)`
|
- `setFirstName(string)`
|
||||||
Sets the first name
|
Sets the given name
|
||||||
- `setLastName(string)`
|
- `setLastName(string)`
|
||||||
Sets the last name
|
Sets the family name
|
||||||
- `setNickName(string)`
|
- `setNickName(string)`
|
||||||
Sets the nickname
|
Sets the nickname
|
||||||
- `setDisplayName(string)`
|
- `setDisplayName(string)`
|
||||||
@ -75,9 +75,9 @@ A user selected **Register** on the overview page after external authentication.
|
|||||||
- `metadata`
|
- `metadata`
|
||||||
Array of [*metadata*](./objects#metadata-with-value-as-bytes). This function is deprecated, please use `api.v1.user.appendMetadata`
|
Array of [*metadata*](./objects#metadata-with-value-as-bytes). This function is deprecated, please use `api.v1.user.appendMetadata`
|
||||||
- `setFirstName(string)`
|
- `setFirstName(string)`
|
||||||
Sets the first name
|
Sets the given name
|
||||||
- `setLastName(string)`
|
- `setLastName(string)`
|
||||||
Sets the last name
|
Sets the family name
|
||||||
- `setNickName(string)`
|
- `setNickName(string)`
|
||||||
Sets the nick name
|
Sets the nick name
|
||||||
- `setDisplayName(string)`
|
- `setDisplayName(string)`
|
||||||
|
@ -96,13 +96,13 @@ curl --request POST \
|
|||||||
"idpId": "218528353504723201",
|
"idpId": "218528353504723201",
|
||||||
"rawInformation": {
|
"rawInformation": {
|
||||||
"User": {
|
"User": {
|
||||||
"email": "fabienne@rootd.ch",
|
"email": "minni@mouse.com",
|
||||||
"email_verified": true,
|
"email_verified": true,
|
||||||
"family_name": "Bühler",
|
"family_name": "Mouse",
|
||||||
"given_name": "Fabienne",
|
"given_name": "Minnie",
|
||||||
"hd": "rootd.ch",
|
"hd": "mouse.com",
|
||||||
"locale": "de",
|
"locale": "de",
|
||||||
"name": "Fabienne Bühler",
|
"name": "Minnie Mouse",
|
||||||
"picture": "https://lh3.googleusercontent.com/a/AAcKTtf973Q6NH8KzKTMEZELPU9lx45WpQ9FRBuxFdPb=s96-c",
|
"picture": "https://lh3.googleusercontent.com/a/AAcKTtf973Q6NH8KzKTMEZELPU9lx45WpQ9FRBuxFdPb=s96-c",
|
||||||
"sub": "111392805975715856637"
|
"sub": "111392805975715856637"
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
<td><strong>Basic data</strong></td>
|
<td><strong>Basic data</strong></td>
|
||||||
<td>
|
<td>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Surname and first name</li>
|
<li>Family and given name</li>
|
||||||
<li>Email addresses</li>
|
<li>Email addresses</li>
|
||||||
<li>User name</li>
|
<li>User name</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -211,8 +211,8 @@ RegistrationUser:
|
|||||||
DescriptionOrgRegister: Enter your Userdata.
|
DescriptionOrgRegister: Enter your Userdata.
|
||||||
EmailLabel: E-Mail
|
EmailLabel: E-Mail
|
||||||
UsernameLabel: Username
|
UsernameLabel: Username
|
||||||
FirstnameLabel: First name
|
FirstnameLabel: Given name
|
||||||
LastnameLabel: Surname
|
LastnameLabel: Family name
|
||||||
LanguageLabel: Language
|
LanguageLabel: Language
|
||||||
German: Deutsch
|
German: Deutsch
|
||||||
English: English
|
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.
|
Description: We have taken your user details from the selected provider. You can now change or complete them.
|
||||||
EmailLabel: E-Mail
|
EmailLabel: E-Mail
|
||||||
UsernameLabel: Username
|
UsernameLabel: Username
|
||||||
FirstnameLabel: First name
|
FirstnameLabel: Given name
|
||||||
LastnameLabel: Surname
|
LastnameLabel: Family name
|
||||||
NicknameLabel: Nickname
|
NicknameLabel: Nickname
|
||||||
PhoneLabel: Phonenumber
|
PhoneLabel: Phonenumber
|
||||||
LanguageLabel: Language
|
LanguageLabel: Language
|
||||||
@ -270,8 +270,8 @@ RegistrationOrg:
|
|||||||
OrgNameLabel: Organization name
|
OrgNameLabel: Organization name
|
||||||
EmailLabel: E-Mail
|
EmailLabel: E-Mail
|
||||||
UsernameLabel: Username
|
UsernameLabel: Username
|
||||||
FirstnameLabel: First name
|
FirstnameLabel: Given name
|
||||||
LastnameLabel: Surname
|
LastnameLabel: Family name
|
||||||
PasswordLabel: Password
|
PasswordLabel: Password
|
||||||
PasswordConfirmLabel: Password confirmation
|
PasswordConfirmLabel: Password confirmation
|
||||||
TosAndPrivacyLabel: Terms and conditions
|
TosAndPrivacyLabel: Terms and conditions
|
||||||
@ -366,8 +366,8 @@ Errors:
|
|||||||
NotFound: Profile not found
|
NotFound: Profile not found
|
||||||
NotChanged: Profile not changed
|
NotChanged: Profile not changed
|
||||||
Empty: Profile is empty
|
Empty: Profile is empty
|
||||||
FirstNameEmpty: First name in profile is empty
|
FirstNameEmpty: Given name in profile is empty
|
||||||
LastNameEmpty: Last name in profile is empty
|
LastNameEmpty: Family name in profile is empty
|
||||||
IDMissing: Profile ID is missing
|
IDMissing: Profile ID is missing
|
||||||
Email:
|
Email:
|
||||||
NotFound: Email not found
|
NotFound: Email not found
|
||||||
|
@ -73,8 +73,8 @@ Errors:
|
|||||||
NotFound: Profile not found
|
NotFound: Profile not found
|
||||||
NotChanged: Profile not changed
|
NotChanged: Profile not changed
|
||||||
Empty: Profile is empty
|
Empty: Profile is empty
|
||||||
FirstNameEmpty: First name in profile is empty
|
FirstNameEmpty: Given name in profile is empty
|
||||||
LastNameEmpty: Last name in profile is empty
|
LastNameEmpty: Family name in profile is empty
|
||||||
IDMissing: Profile ID is missing
|
IDMissing: Profile ID is missing
|
||||||
Email:
|
Email:
|
||||||
NotFound: Email not found
|
NotFound: Email not found
|
||||||
|
@ -361,7 +361,7 @@ service AuthService {
|
|||||||
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
|
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
|
||||||
tags: "User Profile";
|
tags: "User Profile";
|
||||||
summary: "Get My 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) = {
|
option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
|
||||||
tags: "User Profile";
|
tags: "User Profile";
|
||||||
summary: "Update My 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."
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user