fix some string resources

This commit is contained in:
jonasgaudian
2026-02-13 15:21:37 +01:00
parent b3e73db956
commit 391fe403ad
5 changed files with 8 additions and 10 deletions

View File

@@ -143,7 +143,7 @@ class TranslationService(private val context: Context) {
playable = TextToSpeechHelper.isPlayable(context, targetLang),
sourceText = sentence,
// FIXED: Removed translatedText = fixed
translationSource = context.getString(R.string.translation_server),
translationSource = context.getString(R.string.label_translation_server),
translationModel = null
)
}
@@ -204,7 +204,7 @@ class TranslationService(private val context: Context) {
targetLanguageCode = targetLang.nameResId,
sourceText = word,
// FIXED: Removed translatedText = fixed
translationSource = context.getString(R.string.translation_server),
translationSource = context.getString(R.string.label_translation_server),
translationModel = null
)
}

View File

@@ -146,7 +146,7 @@ fun CategoryProgressWidget(
SecondaryButton(
onClick = onViewAllClicked,
text = stringResource(id = R.string.text_view_all),
text = stringResource(id = R.string.label_all_categories),
icon = AppIcons.ArrowForward
)
}