minor text changes

This commit is contained in:
Craig Raw 2024-04-19 09:43:18 +02:00
parent d68ab40c94
commit 33f439f49a
2 changed files with 6 additions and 1 deletions

View file

@ -118,6 +118,11 @@ public class MixStatusCell extends TreeTableCell<Entry, UtxoEntry.MixStatus> {
Tooltip tt = new Tooltip();
String status = mixProgress.getMixStep().getMessage().replaceAll("_", " ");
status = status.substring(0, 1).toUpperCase(Locale.ROOT) + status.substring(1).toLowerCase(Locale.ROOT);
if(mixProgress.getMixStep() == MixStep.REGISTER_INPUT) {
status += "\n\nThis progress is normal for one mixing UTXO per pool while waiting to be randomly selected for a mix.\n" +
"This may take hours or days, and time in the pool is generally more important than individual number of mixes.\n" +
"Each UTXO's anonymity set is dependent not only on its own mix count, but that of its peers as well.";
}
tt.setText(status);
setTooltip(tt);
} else {

View file

@ -21,7 +21,7 @@ import java.util.Map;
public class Samourai implements KeystoreFileImport {
@Override
public String getKeystoreImportDescription(int account) {
return "Import the wallet backup file samourai.txt exported from the Samourai app.";
return "Import the wallet backup file samourai.txt exported from the Samourai app. Note that see the full balance, several script types may need to imported in separate wallets.";
}
@Override