fix issue #995 - Don't display translate popup if there is only one choice

This commit is contained in:
Thomas 2023-12-11 17:35:20 +01:00
parent cf01ee77e1
commit 4c911705ab
1 changed files with 6 additions and 1 deletions

View File

@ -79,8 +79,13 @@ public class TranslateHelper {
Set<String> translates = sharedpreferences.getStringSet(context.getString(R.string.SET_LIVE_TRANSLATE_MULTIPLE), null);
String translate;
if (translates == null || translates.size() == 0) {
if (translates == null || translates.size() <= 1) {
translate = MyTransL.getLocale();
if(translates != null && translates.size() == 1 ) {
for (String val : translates) {
translate = val;
}
}
myTransL.translate(statusToTranslate, translate, params, new Results() {
@Override
public void onSuccess(com.github.stom79.mytransl.translate.Translate translate) {