Fix misused string key in library context menu (#9388)

The "update global" action used key which led to translation issues in Polish.
This commit is contained in:
Tooster 2023-04-25 04:32:28 +02:00 committed by GitHub
parent 44619febd3
commit ef3d2c14b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -103,7 +103,7 @@ private fun LibraryRegularToolbar(
OverflowMenu { closeMenu ->
DropdownMenuItem(
text = { Text(text = stringResource(R.string.pref_category_library_update)) },
text = { Text(text = stringResource(R.string.action_update_library)) },
onClick = {
onClickGlobalUpdate()
closeMenu()