Skip to content

Commit

Permalink
fix: changed "spaces" to "blanks" in create_shortcut_dialog_url_error…
Browse files Browse the repository at this point in the history
…_no_blanks name string
  • Loading branch information
Aitorbp committed Jun 18, 2024
1 parent 3b28f67 commit 8a03f4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class CreateShortcutDialogFragment : DialogFragment() {
private fun handleUrlRequirements(hasSpace: Boolean) {
binding.createShortcutDialogUrlLayout.apply {
if (hasSpace) {
error = getString(R.string.create_shortcut_dialog_url_error_no_spaces)
error = getString(R.string.create_shortcut_dialog_url_error_no_blanks)
} else {
error = null
}
Expand Down
2 changes: 1 addition & 1 deletion owncloudApp/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@
<string name="create_shortcut_dialog_title">Create a shortcut</string>
<string name="create_shortcut_dialog_url">URL</string>
<string name="create_shortcut_dialog_url_information">The URL must start with https:// or http:// so that it can be opened in the browser</string>
<string name="create_shortcut_dialog_url_error_no_spaces">The URL cannot contain spaces</string>
<string name="create_shortcut_dialog_url_error_no_blanks">The URL cannot contain blanks</string>
<string name="create_shortcut_dialog_url_extension">.url</string>
<string name="open_shortcut_description">This shortcut points to:</string>
<string name="open_shortcut_title">Open link</string>
Expand Down

0 comments on commit 8a03f4a

Please sign in to comment.