Skip to content

Commit

Permalink
Fixed instructions in empty state
Browse files Browse the repository at this point in the history
  • Loading branch information
Waboodoo committed Aug 26, 2024
1 parent 284598f commit 94613b2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ fun CertPinningContent(
) {
if (pins.isEmpty()) {
EmptyState(
description = stringResource(R.string.empty_state_certificate_pinning_instructions, stringResource(R.string.section_advanced_settings)),
description = stringResource(
R.string.empty_state_certificate_pinning_instructions,
stringResource(R.string.label_advanced_technical_settings),
),
)
return
}
Expand Down
2 changes: 1 addition & 1 deletion HTTPShortcuts/app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@
<string name="dialog_delete">Delete</string>
<!-- Section title, shown in shortcut editor, for section containing basic settings (i.e., URL and HTTP method) -->
<string name="section_basic_request">Basic Request Settings</string>
<!-- Section title, shown in shortcut editor, for section containing advanced settings -->
<!-- Section title, shown in variable editor, for section containing advanced settings -->
<string name="section_advanced_settings">Advanced Settings</string>
<!-- Section title, shown in shortcut editor, for section containing authentication settings -->
<string name="section_authentication">Authentication</string>
Expand Down

0 comments on commit 94613b2

Please sign in to comment.