1
0
Fork 0
mirror of https://github.com/gsantner/dandelion synced 2025-09-10 10:49:42 +02:00

Changes for dandelion

This commit is contained in:
Gregor Santner 2016-11-20 16:43:38 +01:00
parent 3a4f41f758
commit bea1a83f90
33 changed files with 107 additions and 44 deletions

View file

@ -904,7 +904,7 @@ public class MainActivity extends ThemedActivity
String body = WebHelper.replaceUrlWithMarkdown(sharedBody);
if (appSettings.isAppendSharedViaApp()) {
AppLog.v(this, "Append app reference to shared text");
body = body + "\n\n" + getString(R.string.shared_by_diaspora_android);
body = body + "\n\n" + getString(R.string.shared_via_app);
}
final String escapedBody = WebHelper.escapeHtmlText(body);
if (sharedSubject != null) {

View file

@ -55,7 +55,7 @@ public class UpdateTitleReceiver extends BroadcastReceiver {
if (subUrl.startsWith(DiasporaUrlHelper.SUBURL_STREAM)) {
setTitle(R.string.nav_stream);
} else if (subUrl.startsWith(DiasporaUrlHelper.SUBURL_POSTS)) {
setTitle(R.string.diaspora);
setTitle(R.string.app_name);
} else if (subUrl.startsWith(DiasporaUrlHelper.SUBURL_NOTIFICATIONS)) {
setTitle(R.string.notifications);
} else if (subUrl.startsWith(DiasporaUrlHelper.SUBURL_CONVERSATIONS)) {