summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2/InstallShortcutReceiver.java
diff options
context:
space:
mode:
authorWinson Chung <winsonc@google.com>2012-04-24 14:43:54 -0700
committerWinson Chung <winsonc@google.com>2012-04-24 14:44:25 -0700
commit169c3d75e438999f0b1e70a6015843a4c4422dec (patch)
treec237b9fd49cbdbe08bcc6ebe39c93f3eb13cc9cf /src/com/android/launcher2/InstallShortcutReceiver.java
parentc3a804042844dc4733b4bd4b6ac03bf4b2b015b7 (diff)
downloadandroid_packages_apps_Trebuchet-169c3d75e438999f0b1e70a6015843a4c4422dec.tar.gz
android_packages_apps_Trebuchet-169c3d75e438999f0b1e70a6015843a4c4422dec.tar.bz2
android_packages_apps_Trebuchet-169c3d75e438999f0b1e70a6015843a4c4422dec.zip
Fixing strings to distinguish between being out of space for a single screen and being completely out of space. (Bug 6381160)
Change-Id: I3ee3ab2151154ab39f158fbb4776ad7b04d0baab
Diffstat (limited to 'src/com/android/launcher2/InstallShortcutReceiver.java')
-rw-r--r--src/com/android/launcher2/InstallShortcutReceiver.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/launcher2/InstallShortcutReceiver.java b/src/com/android/launcher2/InstallShortcutReceiver.java
index 19b1c69d2..82fb3d154 100644
--- a/src/com/android/launcher2/InstallShortcutReceiver.java
+++ b/src/com/android/launcher2/InstallShortcutReceiver.java
@@ -97,7 +97,7 @@ public class InstallShortcutReceiver extends BroadcastReceiver {
// will provide feedback otherwise
if (!found) {
if (result[0] == INSTALL_SHORTCUT_NO_SPACE) {
- Toast.makeText(context, context.getString(R.string.out_of_space),
+ Toast.makeText(context, context.getString(R.string.completely_out_of_space),
Toast.LENGTH_SHORT).show();
} else if (result[0] == INSTALL_SHORTCUT_IS_DUPLICATE) {
Toast.makeText(context, context.getString(R.string.shortcut_duplicate, name),