[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    KDE/kdepim/kaddressbook
From:       Malcolm Hunter <malcolm.hunter () gmx ! co ! uk>
Date:       2009-04-03 0:59:41
Message-ID: 1238720381.510233.26362.nullmailer () svn ! kde ! org
[Download RAW message or body]

SVN commit 948435 by mhunter:

addressbook -> address book etc.
BUG:178327

 M  +3 -3      features/resourceselection.cpp  
 M  +1 -1      kabcore.cpp  
 M  +1 -1      printing/rbs_appearance.ui  
 M  +1 -1      viewmanager.cpp  
 M  +2 -2      xxport/eudora_xxport.cpp  
 M  +1 -1      xxport/gmx_xxport.cpp  
 M  +2 -2      xxport/gnokii_xxport.cpp  
 M  +2 -2      xxport/kde2_xxport.cpp  
 M  +2 -2      xxport/ldif_xxport.cpp  
 M  +1 -1      xxport/opera_xxport.cpp  


--- trunk/KDE/kdepim/kaddressbook/features/resourceselection.cpp #948434:948435
@@ -421,17 +421,17 @@
 
   mAddButton = new QToolButton( this );
   mAddButton->setIcon( KIcon( "list-add" ) );
-  mAddButton->setToolTip( i18n( "Add addressbook" ) );
+  mAddButton->setToolTip( i18n( "Add address book" ) );
   buttonLayout->addWidget( mAddButton );
   mEditButton = new QToolButton( this );
   mEditButton->setIcon( KIcon( "document-properties" ) );
   mEditButton->setEnabled( false );
-  mEditButton->setToolTip( i18n( "Edit addressbook settings" ) );
+  mEditButton->setToolTip( i18n( "Edit address book settings" ) );
   buttonLayout->addWidget( mEditButton );
   mRemoveButton = new QToolButton( this );
   mRemoveButton->setIcon( KIcon( "edit-delete" ) );
   mRemoveButton->setEnabled( false );
-  mRemoveButton->setToolTip( i18n( "Remove addressbook" ) );
+  mRemoveButton->setToolTip( i18n( "Remove address book" ) );
   buttonLayout->addWidget( mRemoveButton );
 
   mListView = new QTreeWidget( this );
--- trunk/KDE/kdepim/kaddressbook/kabcore.cpp #948434:948435
@@ -1327,7 +1327,7 @@
   mActionDelete->setShortcut(QKeySequence(Qt::Key_Delete));
   mActionDelete->setWhatsThis( i18n( "Delete all selected contacts." ) );
 
-  const QString copyMoveWhatsThis = i18n( "Store a contact in a different \
Addressbook<p>You will be presented with a dialog where you can select a new storage \
place for this contact.</p>" ); +  const QString copyMoveWhatsThis = i18n( "Store a \
contact in a different address book<p>You will be presented with a dialog where you \
can select a new storage place for this contact.</p>" );  mActionCopyAddresseeTo = \
coll->addAction( "copy_contact_to" );  mActionCopyAddresseeTo->setText( i18n( "C&opy \
Contact To..." ) );  connect(mActionCopyAddresseeTo, SIGNAL(triggered(bool) ), SLOT( \
                copySelectedContactToResource() ));
--- trunk/KDE/kdepim/kaddressbook/printing/rbs_appearance.ui #948434:948435
@@ -70,7 +70,7 @@
       <item row="1" column="0" >
        <widget class="QLabel" name="sblabel" >
         <property name="whatsThis" >
-         <string>If you often add contacts to your printout manually before entering \
them into the KDE addressbook, you should set this option to a value greater than 0: \
it determines how many empty address fields must be printed; if this many do not fit \
onto the page, another page with empty fields only will be printed.</string> +        \
<string>If you often add contacts to your printout manually before entering them into \
the KDE address book, you should set this option to a value greater than 0: it \
determines how many empty address fields are to be printed; if this many do not fit \
onto the page, another page with only empty fields will be printed.</string>  \
</property>  <property name="text" >
          <string>Min. number of empty fields:</string>
--- trunk/KDE/kdepim/kaddressbook/viewmanager.cpp #948434:948435
@@ -613,7 +613,7 @@
   action->setIcon( KIcon("configure") );
   action->setText( i18n( "Modify View..." ) );
   connect(action, SIGNAL(triggered(bool) ), SLOT( editView() ));
-  action->setWhatsThis( i18n( "By pressing this button a dialog opens that allows \
you to modify the view of the addressbook. There you can add or remove fields that \
you want to be shown or hidden in the addressbook like the name for example." ) ); +  \
action->setWhatsThis( i18n( "Pressing this button opens a dialog that allows you to \
modify the view of the address book. From there you can add or remove fields that you \
want to be shown or hidden in the address book, like the name for example." ) );  
   action = coll->addAction( "view_add" );
   action->setIcon( KIcon("window-new") );
--- trunk/KDE/kdepim/kaddressbook/xxport/eudora_xxport.cpp #948434:948435
@@ -41,13 +41,13 @@
 EudoraXXPort::EudoraXXPort( KABC::AddressBook *ab, QWidget *parent, const char *name \
)  : KAB::XXPort( ab, parent, name )
 {
-  createImportAction( i18n( "Import Eudora Addressbook..." ) );
+  createImportAction( i18n( "Import Eudora Address Book..." ) );
 }
 
 KABC::Addressee::List EudoraXXPort::importContacts( const QString& ) const
 {
   QString fileName = KFileDialog::getOpenFileName( QDir::homePath(),
-		"*.[tT][xX][tT]|" + i18n("Eudora Light Addressbook (*.txt)"), 0 );
+		"*.[tT][xX][tT]|" + i18n("Eudora Light Address Book (*.txt)"), 0 );
   if ( fileName.isEmpty() )
     return KABC::AddresseeList();
 
--- trunk/KDE/kdepim/kaddressbook/xxport/gmx_xxport.cpp #948434:948435
@@ -46,7 +46,7 @@
 
 K_EXPORT_KADDRESSBOOK_XXFILTER_CATALOG( kaddrbk_gmx_xxport, GMXXXPort, \
"kaddrbk_gmx_xxport" )  
-#define GMX_FILESELECTION_STRING "*.gmxa|" + i18n( "GMX addressbook file (*.gmxa)" )
+#define GMX_FILESELECTION_STRING "*.gmxa|" + i18n( "GMX address book file (*.gmxa)" \
)  
 GMXXXPort::GMXXXPort( KABC::AddressBook *ab, QWidget *parent, const char *name )
   : KAB::XXPort( ab, parent, name )
--- trunk/KDE/kdepim/kaddressbook/xxport/gnokii_xxport.cpp #948434:948435
@@ -469,7 +469,7 @@
 		     "<b>Continue</b> to start importing the personal contacts.<br /><br />"
 		     "Please note that if your Mobile Phone is not properly connected "
 		     "the following detection phase might take up to two minutes, during which "
-                     "KAddressbook will behave unresponsively.</qt>") ))
+                     "KAddressBook will be unresponsive.</qt>") ))
 	  return addrList;
 
 	m_progressDlg = new KProgressDialog( parentWidget(),
@@ -717,7 +717,7 @@
 		     "<b>Continue</b> to start exporting the selected personal contacts.<br /><br \
/>"  "Please note that if your Mobile Phone is not properly connected "
 		     "the following detection phase might take up to two minutes, during which "
-		     "KAddressbook will behave unresponsively.</qt>") ))
+		     "KAddressBook will be unresponsive.</qt>") ))
 	  return false;
 
 	m_progressDlg = new KProgressDialog( parentWidget(),
--- trunk/KDE/kdepim/kaddressbook/xxport/kde2_xxport.cpp #948434:948435
@@ -42,7 +42,7 @@
 KDE2XXPort::KDE2XXPort( KABC::AddressBook *ab, QWidget *parent, const char *name )
   : KAB::XXPort( ab, parent, name )
 {
-  createImportAction( i18n( "Import KDE 2 Addressbook..." ) );
+  createImportAction( i18n( "Import KDE 2 Address Book..." ) );
 }
 
 KABC::Addressee::List KDE2XXPort::importContacts( const QString& ) const
@@ -55,7 +55,7 @@
 
   int result = KMessageBox::questionYesNoCancel( parentWidget(),
       i18n( "Override previously imported entries?" ),
-      i18n( "Import KDE 2 Addressbook" ), KGuiItem(i18n("Import")), \
KGuiItem(i18n("Do Not Import")) ); +      i18n( "Import KDE 2 Address Book" ), \
KGuiItem(i18n("Import")), KGuiItem(i18n("Do Not Import")) );  
   if ( !result ) return KABC::AddresseeList();
 
--- trunk/KDE/kdepim/kaddressbook/xxport/ldif_xxport.cpp #948434:948435
@@ -53,8 +53,8 @@
 LDIFXXPort::LDIFXXPort( KABC::AddressBook *ab, QWidget *parent, const char *name )
   : KAB::XXPort( ab, parent, name )
 {
-  createImportAction( i18n( "Import LDIF Addressbook..." ) );
-  createExportAction( i18n( "Export LDIF Addressbook..." ) );
+  createImportAction( i18n( "Import LDIF Address Book..." ) );
+  createExportAction( i18n( "Export LDIF Address Book..." ) );
 }
 
 /* import */
--- trunk/KDE/kdepim/kaddressbook/xxport/opera_xxport.cpp #948434:948435
@@ -41,7 +41,7 @@
 OperaXXPort::OperaXXPort( KABC::AddressBook *ab, QWidget *parent, const char *name )
   : KAB::XXPort( ab, parent, name )
 {
-  createImportAction( i18n( "Import Opera Addressbook..." ) );
+  createImportAction( i18n( "Import Opera Address Book..." ) );
 }
 
 KABC::Addressee::List OperaXXPort::importContacts( const QString& ) const


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic