diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 64c8f9b07..dcf228f94 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -410,6 +410,7 @@ + @@ -668,7 +669,6 @@ - diff --git a/src/com/android/email/service/EmailBroadcastProcessorService.java b/src/com/android/email/service/EmailBroadcastProcessorService.java index a8853c346..b3a151099 100644 --- a/src/com/android/email/service/EmailBroadcastProcessorService.java +++ b/src/com/android/email/service/EmailBroadcastProcessorService.java @@ -138,7 +138,8 @@ public class EmailBroadcastProcessorService extends IntentService { AccountSettings.actionSettingsWithDebug(this); } else if (AccountManager.LOGIN_ACCOUNTS_CHANGED_ACTION.equals(broadcastAction)) { onSystemAccountChanged(); - } else if (UIProvider.ACTION_UPDATE_NOTIFICATION.equals((broadcastAction))) { + } else if (Intent.ACTION_LOCALE_CHANGED.equals(broadcastAction) || + UIProvider.ACTION_UPDATE_NOTIFICATION.equals((broadcastAction))) { broadcastIntent.setClass(this, EmailIntentService.class); startService(broadcastIntent); }