phonebookui/pbkcommonui/src/cnteditviewitembuilder.cpp
changeset 40 b46a585f6909
parent 37 fd64c38c277d
child 46 efe85016a067
--- a/phonebookui/pbkcommonui/src/cnteditviewitembuilder.cpp	Thu May 27 12:45:19 2010 +0300
+++ b/phonebookui/pbkcommonui/src/cnteditviewitembuilder.cpp	Fri Jun 11 13:29:23 2010 +0300
@@ -19,6 +19,7 @@
 #include "cnteditviewdetailitem.h"
 #include "cntviewparams.h"
 #include "cntstringmapper.h"
+#include <hbnumbergrouping.h>
 
 CntEditViewItemBuilder::CntEditViewItemBuilder() :
 mMap( new CntStringMapper() )
@@ -63,7 +64,12 @@
             
             detailItem->addIcon( mMap->getContactEditorIconString(subtype, context) );
             detailItem->addText( mMap->getContactEditorLocString(subtype, context) );
-            detailItem->addText( number.number() );
+            /*
+             * Internationalization support, activate the following code 
+             * when support available from Orbit
+             */
+            //detailItem->addText( HbNumberGrouping::formatPhoneNumber(number.number())); 
+            detailItem->addText( number.number());
             list.append( detailItem );
             }
         }
@@ -95,11 +101,11 @@
                 else if ( subtype == QContactOnlineAccount::SubTypeSipVoip )
                 {
                     if ( context == QContactOnlineAccount::ContextHome )
-                        detailItem->addText( hbTrId("txt_phob_formlabel_internet_telephone") );
+                        detailItem->addText( hbTrId("txt_phob_formlabel_internet_telephone_home") );
                     else if ( context == QContactOnlineAccount::ContextWork )
-                        detailItem->addText( hbTrId("txt_phob_formlabel_internet_telephone_home") );
+                        detailItem->addText( hbTrId("txt_phob_formlabel_internet_telephone_work") );
                     else
-                        detailItem->addText( hbTrId("txt_phob_formlabel_internet_telephone_work") );
+                        detailItem->addText( hbTrId("txt_phob_formlabel_internet_telephone") );
                     
                     detailItem->addText( number.accountUri() );
                     list.append( detailItem );