From 169c3d75e438999f0b1e70a6015843a4c4422dec Mon Sep 17 00:00:00 2001 From: Winson Chung Date: Tue, 24 Apr 2012 14:43:54 -0700 Subject: Fixing strings to distinguish between being out of space for a single screen and being completely out of space. (Bug 6381160) Change-Id: I3ee3ab2151154ab39f158fbb4776ad7b04d0baab --- src/com/android/launcher2/InstallShortcutReceiver.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/com/android/launcher2/InstallShortcutReceiver.java') 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), -- cgit v1.2.3