From 852d88de847c38801f37cf6beecf8fddb61f34d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Sat, 12 Sep 2015 18:38:20 -0700 Subject: [PATCH] Toast strings are full sentences. #415 --- F-Droid/res/values/strings.xml | 10 +++++----- F-Droid/src/org/fdroid/fdroid/UpdateService.java | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/F-Droid/res/values/strings.xml b/F-Droid/res/values/strings.xml index 9677ca754..b1a60cacc 100644 --- a/F-Droid/res/values/strings.xml +++ b/F-Droid/res/values/strings.xml @@ -39,7 +39,7 @@ Search Results App Details - No such app found + No such app found. About F-Droid Originally based on Aptoide.\nReleased under the @@ -133,7 +133,7 @@ Version %s installed Not installed - Downloaded file is corrupt + Downloaded file is corrupt. Download cancelled This app contains advertising @@ -216,10 +216,10 @@ Saving application details (%1$d%%) All repositories are up to date All other repos didn\'t create errors. - Error during update: + Error during update: %s No permissions are used. Permissions for version %s - You don\'t have any available app that can handle %s + You don\'t have any available app that can handle %s. Compact Layout Show icons at a smaller size Theme @@ -254,7 +254,7 @@ Disabled "%1$s".\n\nYou will need to re-enable this repository to install apps from it. - Saved F-Droid repository %1$s + Saved F-Droid repository %1$s. Looking for F-Droid repository at\n%1$s %s or later up to %s diff --git a/F-Droid/src/org/fdroid/fdroid/UpdateService.java b/F-Droid/src/org/fdroid/fdroid/UpdateService.java index dd7f3158b..1d3ab367a 100644 --- a/F-Droid/src/org/fdroid/fdroid/UpdateService.java +++ b/F-Droid/src/org/fdroid/fdroid/UpdateService.java @@ -243,7 +243,7 @@ public class UpdateService extends IntentService implements ProgressListener { notificationManager.notify(NOTIFY_ID_UPDATING, notificationBuilder.build()); break; case STATUS_ERROR_GLOBAL: - text = context.getString(R.string.global_error_updating_repos) + " " + message; + text = context.getString(R.string.global_error_updating_repos, message); notificationBuilder.setContentText(text) .setCategory(NotificationCompat.CATEGORY_ERROR) .setSmallIcon(android.R.drawable.ic_dialog_alert);