summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErick Pérez Castellanos <erick.red@gmail.com>2015-04-23 02:03:12 -0400
committerErick Pérez Castellanos <erick.red@gmail.com>2015-04-23 02:05:32 -0400
commit3e361a9bdc5ec54f03ce37c61756028ac12970ba (patch)
tree83d8854f01e4b24a033925fe37214ec5e7cc482d
parentee6e4786de4e1f63b876aabe4eb4bafd9866139d (diff)
downloadgnome-contacts-3e361a9bdc5ec54f03ce37c61756028ac12970ba.tar.gz
types: added home to emails type
-rw-r--r--src/contacts-types.vala3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/contacts-types.vala b/src/contacts-types.vala
index ec0ba82..b50d22a 100644
--- a/src/contacts-types.vala
+++ b/src/contacts-types.vala
@@ -304,12 +304,13 @@ public class Contacts.TypeSet : Object {
private const InitData[] email_data = {
// List most specific first, always in upper case
{ N_("Personal"), { "PERSONAL" } },
+ { N_("Home"), { "HOME" } },
{ N_("Work"), { "WORK" } }
};
public static TypeSet email {
get {
string[] standard = {
- "Personal", "Work"
+ "Personal", "Home", "Work"
};
if (_email == null) {