Skip to content

Instantly share code, notes, and snippets.

@xenon92
Last active January 3, 2016 09:29
Show Gist options
  • Save xenon92/8442995 to your computer and use it in GitHub Desktop.
Save xenon92/8442995 to your computer and use it in GitHub Desktop.
Patch for Carbon ROM Kitkat - SystemUI (frameworks/base)
From fe062dc1ed611b156e40cf388281b56e8a97cb47 Mon Sep 17 00:00:00 2001
From: Shubhang <shubhang92@gmail.com>
Date: Thu, 16 Jan 2014 00:58:55 +0530
Subject: [PATCH] SystemUI: fix duplicate day in notification pulldown header
showing the "day of the week" once is enough in the 1st line.
this removes the 2nd "day of the week" in the 2nd line.
Change-Id: Ia8258eceb8a5921b6b3d194e0bb7b72408ce9a5a
---
packages/SystemUI/res/values/donottranslate.xml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/packages/SystemUI/res/values/donottranslate.xml b/packages/SystemUI/res/values/donottranslate.xml
index 0cc6874..59edc5a 100644
--- a/packages/SystemUI/res/values/donottranslate.xml
+++ b/packages/SystemUI/res/values/donottranslate.xml
@@ -19,7 +19,8 @@
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<!-- DO NOT TRANSLATE. ICU weekday format for display -->
<string name="system_ui_weekday_pattern" translatable="false">eeee</string>
+ <!-- DO NOT TRANSLATE. ICU date format for display. -->
+ <string name="system_ui_date_pattern">MMMMd</string>
<!-- Date format for display: should match the lockscreen in /policy. -->
- <string name="system_ui_date_pattern">@*android:string/system_ui_date_pattern</string>
<string name="ad_date_pattern">eeeMMMd</string>
</resources>
--
1.8.5.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment