Skip to content

Commit a87a209

Browse files
committed
use Confidential Client instead of Confidential on UI
1 parent f56dd53 commit a87a209

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

options/locale/locale_en-US.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ create_oauth2_application_button = Create Application
739739
create_oauth2_application_success = You've successfully created a new OAuth2 application.
740740
update_oauth2_application_success = You've successfully updated the OAuth2 application.
741741
oauth2_application_name = Application Name
742-
oauth2_confidential = Confidential. Select for apps that keep the secret confidential, such as web apps. Do not select for native apps including desktop and mobile apps.
742+
oauth2_confidential_client = Confidential Client. Select for apps that keep the secret confidential, such as web apps. Do not select for native apps including desktop and mobile apps.
743743
oauth2_redirect_uri = Redirect URI
744744
save_application = Save
745745
oauth2_client_id = Client ID

templates/user/settings/applications_oauth2_edit_form.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<input id="application-name" value="{{.App.Name}}" name="application_name" required>
4141
</div>
4242
<div class="field ui checkbox {{if .Err_Confidential}}error{{end}}">
43-
<label>{{.locale.Tr "settings.oauth2_confidential"}}</label>
43+
<label>{{.locale.Tr "settings.oauth2_confidential_client"}}</label>
4444
<input type="checkbox" name="confidential" {{if .App.Confidential}}checked{{end}}>
4545
</div>
4646
<div class="field {{if .Err_RedirectURI}}error{{end}}">

templates/user/settings/applications_oauth2_list.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<input id="application-name" name="application_name" value="{{.application_name}}" required>
3535
</div>
3636
<div class="field ui checkbox {{if .Err_Confidential}}error{{end}}">
37-
<label>{{.locale.Tr "settings.oauth2_confidential"}}</label>
37+
<label>{{.locale.Tr "settings.oauth2_confidential_client"}}</label>
3838
<input type="checkbox" name="confidential" checked>
3939
</div>
4040
<div class="field {{if .Err_RedirectURI}}error{{end}}">

0 commit comments

Comments
 (0)