the string is deprecated and also no longer used on desktop/iOS.
the 'empty state view' where the string could appear
is anyways not shown often
(usually, there is 'saved messages' and 'device messages'),
so it also does not make sense to think over a replacement.
before, "Info" and "Message Details" were used for the same things synonymously,
this is an issue mostly in the context menus,
where eg. iOS had "Info" but desktop did not -
and android had an "i"-icon ...
but also, tapping 'Info' and then getting a different title
(not only a longer version) is not super-nice.
with this change, everything is "Info", making also the "i"-icon fit.
this is also consistent with WhatsApp.
Signal has the same mess as we before, at least on iOS.
came over that while targeting https://github.com/deltachat/deltachat-ios/pull/2204
and was shortly confused about what is going on there :)
(the name saved to database is not changed, however,
to avoid popping up the message again in case we do an update without a new device messase)
exiting 'select mode' is unexpected when hitting 'cancel' -
the user may still want to do other things with the selection.
this makes the 'mute' behavior consisten with other cases showing a dialog,
eg. 'delete'
* apply token changes on leaving the dialog; this avoids unnecessary changes, races or possibly needed blocks if the user is just playing around
* ask before disabling PUSH; this is mainly to avoid accidental taps
* add a 'learn more' button pointing to instant-delivery
* add a switch for push notifications
* move 'instant delivery' down
* reword to 'force background connection'
* remove unused string
* respect user setting wrt pref_push_enabled
* f-droid defaults to PUSH = false
* get token directly when enabling PUSH
* delete FCM token when PUSH is disabled
the check before was too implicit and relied on DOZE_ASKED_DIRECTLY only.
but if the user was asked one time and went for chatmail again,
it did not work and the user was getting the message
"please enable 'ignore battery optimisations'"
even though they were using chatmail-only.