Use shorter Add-Mirror string

This commit is contained in:
Thore Goebel 2024-04-14 15:57:01 +02:00
parent d75f08aca4
commit f00bc55005
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ fun RepoPreviewHeader(
if (state.canAdd) FDroidButton(
text = when (state.fetchResult) {
is IsNewRepository -> stringResource(R.string.repo_add_new_title)
is IsNewMirror -> stringResource(R.string.repo_add_new_mirror)
is IsNewMirror -> stringResource(R.string.repo_add_mirror)
else -> error("Unexpected fetch state: ${state.fetchResult}")
},
onClick = onAddRepo,