summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--kabc/phonenumber.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kabc/phonenumber.cpp b/kabc/phonenumber.cpp
index 3f641d1..4ad608d 100644
--- a/kabc/phonenumber.cpp
+++ b/kabc/phonenumber.cpp
@@ -172,17 +172,17 @@ QString PhoneNumber::typeLabel( int type )
172 else if ((type & Pager) == Pager) 172 else if ((type & Pager) == Pager)
173 typeString += i18n("Pager"); 173 typeString += i18n("Pager");
174 174
175 // add the prefered flag 175 // add the prefered flag
176 if (!typeString.isEmpty()) 176 if (!typeString.isEmpty())
177 typeString += " "; 177 typeString += " ";
178 178
179 if ((type & Pref) == Pref) 179 if ((type & Pref) == Pref)
180 typeString += i18n("(Preferred)"); 180 typeString += i18n("(p)");
181 181
182 //if we still have no match, return "other" 182 //if we still have no match, return "other"
183 if (typeString.isEmpty()) 183 if (typeString.isEmpty())
184 return i18n("Other"); 184 return i18n("Other");
185 185
186 186
187 return typeString; 187 return typeString;
188} 188}