commit | 66c1ae914fa8e71ff6ca0a5c9659ad760b5a5484 | [log] [tgz] |
---|---|---|
author | Mindy Pereira <mindyp@google.com> | Wed Aug 24 15:43:21 2011 -0700 |
committer | Mindy Pereira <mindyp@google.com> | Mon Aug 29 09:53:34 2011 -0700 |
tree | c76cbfc718da9d3465b6dcb5f65fcc7cd0e66442 | |
parent | 053908f6715b53a40fe5fe24b6019759bff1899d [diff] |
Swap local profile string to corrected string. Fixes Bug:5179592 Local profile card string should be "My local profile" Change-Id: I5b75cfba12978765a87e37ceaeafae96cca9b03d
diff --git a/src/com/android/contacts/model/BaseAccountType.java b/src/com/android/contacts/model/BaseAccountType.java index aafa3ea..517f487 100644 --- a/src/com/android/contacts/model/BaseAccountType.java +++ b/src/com/android/contacts/model/BaseAccountType.java
@@ -65,7 +65,7 @@ public BaseAccountType() { this.accountType = null; this.dataSet = null; - this.titleRes = R.string.account_phone; + this.titleRes = R.string.local_profile_title; this.iconRes = R.mipmap.ic_launcher_contacts; }
diff --git a/src/com/android/contacts/model/FallbackAccountType.java b/src/com/android/contacts/model/FallbackAccountType.java index 8bb3992..a40828e 100644 --- a/src/com/android/contacts/model/FallbackAccountType.java +++ b/src/com/android/contacts/model/FallbackAccountType.java
@@ -25,7 +25,7 @@ public FallbackAccountType(Context context) { this.accountType = null; this.dataSet = null; - this.titleRes = R.string.account_phone; + this.titleRes = R.string.local_profile_title; this.iconRes = R.mipmap.ic_launcher_contacts; this.resPackageName = null;