Added send failed retry hint

pull/199/head
M66B 4 years ago
parent 11fb6178c1
commit 9cbd5ea3f3

@ -245,8 +245,13 @@ public class ServiceSend extends ServiceBase implements SharedPreferences.OnShar
builder.setContentText(Log.formatThrowable(ex, false)) builder.setContentText(Log.formatThrowable(ex, false))
.setStyle(new NotificationCompat.BigTextStyle() .setStyle(new NotificationCompat.BigTextStyle()
.bigText(Log.formatThrowable(ex, "\n", false))); .bigText(Log.formatThrowable(ex, "\n", false)));
} else } else {
builder.setContentText(getString(R.string.title_notification_sending_left, tries_left)); String msg = getString(R.string.title_notification_sending_left, tries_left);
builder.setContentText(msg)
.setStyle(new NotificationCompat.BigTextStyle()
.bigText(msg + "\n" + getString(R.string.title_notification_sending_retry)));
}
return builder; return builder;
} }

@ -107,6 +107,7 @@
<string name="title_notification_failed">\'%1$s\' failed</string> <string name="title_notification_failed">\'%1$s\' failed</string>
<string name="title_notification_alert">\'%1$s\' server alert</string> <string name="title_notification_alert">\'%1$s\' server alert</string>
<string name="title_notification_sending_left">Attempts left: %1$d</string> <string name="title_notification_sending_left">Attempts left: %1$d</string>
<string name="title_notification_sending_retry">Sending will be retried on internet connection changes or pulling down on the outbox</string>
<string name="title_notification_sending_failed">Sending to %1$s failed</string> <string name="title_notification_sending_failed">Sending to %1$s failed</string>
<string name="title_notification_redacted">Redacted: biometric or PIN authentication enabled</string> <string name="title_notification_redacted">Redacted: biometric or PIN authentication enabled</string>

Loading…
Cancel
Save