From 2b840257be3898efe82db12bc3cf4b02e9d31db0 Mon Sep 17 00:00:00 2001 From: Alison Cichowlas Date: Mon, 26 Mar 2018 18:38:59 -0400 Subject: [PATCH] Update screenshot saving strings. Bug: 76418893 Test: String changes; manually verified. Change-Id: Ic28b9d637918abe7b21206966c4a36016b87b253 --- packages/SystemUI/res/values/strings.xml | 6 ++---- .../com/android/systemui/screenshot/GlobalScreenshot.java | 2 -- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/packages/SystemUI/res/values/strings.xml b/packages/SystemUI/res/values/strings.xml index 3c8a69510f456..bd904420ba1cb 100644 --- a/packages/SystemUI/res/values/strings.xml +++ b/packages/SystemUI/res/values/strings.xml @@ -195,16 +195,14 @@ Saving screenshot\u2026 Saving screenshot\u2026 - - Screenshot is being saved Screenshot saved Tap to view your screenshot - Couldn\'t capture screenshot + Couldn\'t save screenshot - Problem encountered while saving screenshot + Try taking screenshot again Can\'t save screenshot due to limited storage space diff --git a/packages/SystemUI/src/com/android/systemui/screenshot/GlobalScreenshot.java b/packages/SystemUI/src/com/android/systemui/screenshot/GlobalScreenshot.java index 068fd3f5c5f9b..227f2d2be0a98 100644 --- a/packages/SystemUI/src/com/android/systemui/screenshot/GlobalScreenshot.java +++ b/packages/SystemUI/src/com/android/systemui/screenshot/GlobalScreenshot.java @@ -189,7 +189,6 @@ class SaveImageInBackgroundTask extends AsyncTask { mPublicNotificationBuilder = new Notification.Builder(context, NotificationChannels.SCREENSHOTS_HEADSUP) .setContentTitle(r.getString(R.string.screenshot_saving_title)) - .setContentText(r.getString(R.string.screenshot_saving_text)) .setSmallIcon(R.drawable.stat_notify_image) .setCategory(Notification.CATEGORY_PROGRESS) .setWhen(now) @@ -203,7 +202,6 @@ class SaveImageInBackgroundTask extends AsyncTask { .setTicker(r.getString(R.string.screenshot_saving_ticker) + (mTickerAddSpace ? " " : "")) .setContentTitle(r.getString(R.string.screenshot_saving_title)) - .setContentText(r.getString(R.string.screenshot_saving_text)) .setSmallIcon(R.drawable.stat_notify_image) .setWhen(now) .setShowWhen(true)