summaryrefslogtreecommitdiff
authorcniehaus <cniehaus>2002-12-13 16:17:10 (UTC)
committer cniehaus <cniehaus>2002-12-13 16:17:10 (UTC)
commit33513c771164337da46c65f379c98b06adb6f704 (patch) (side-by-side diff)
tree425faf58b3921eabf359bf9cbeaf6d2f03aa7708
parent841d22f7678efa02bb73476e7f5214e4323ef260 (diff)
downloadopie-33513c771164337da46c65f379c98b06adb6f704.zip
opie-33513c771164337da46c65f379c98b06adb6f704.tar.gz
opie-33513c771164337da46c65f379c98b06adb6f704.tar.bz2
i18n-fixes
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/addressbook.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp
index a1ce5a0..5ce90a9 100644
--- a/core/pim/addressbook/addressbook.cpp
+++ b/core/pim/addressbook/addressbook.cpp
@@ -264,13 +264,13 @@ AddressbookWindow::AddressbookWindow( QWidget *parent, const char *name,
void AddressbookWindow::slotConfig()
{
ConfigDlg* dlg = new ConfigDlg( this, "Config" );
dlg -> setConfig( m_config );
dlg -> showMaximized();
if ( dlg -> exec() ) {
- qWarning ("Config Dialog accepted !");
+ qWarning ("Config Dialog accepted!");
m_config = dlg -> getConfig();
if ( m_curFontSize != m_config.fontSize() ){
qWarning("Font was changed!");
m_curFontSize = m_config.fontSize();
emit slotSetFont( m_curFontSize );
}
@@ -353,22 +353,22 @@ void AddressbookWindow::setDocument( const QString &filename )
OContactAccess::List allList = access->allRecords();
qWarning( "Found number of contacts in File: %d", allList.count() );
if ( !allList.count() ) {
QMessageBox::information( this, "Import VCard",
"It was impossible to import the VCard.\n"
- "The VCard may be corrupted !" );
+ "The VCard may be corrupted!" );
}
bool doAsk = true;
OContactAccess::List::Iterator it;
for ( it = allList.begin(); it != allList.end(); ++it ){
qWarning("Adding Contact from: %s", (*it).fullName().latin1() );
if ( doAsk ){
- switch( QMessageBox::information( this, tr ( "Add Contact ?" ),
- tr( "Do you really want add contact for \n%1 ?" )
+ switch( QMessageBox::information( this, tr ( "Add Contact?" ),
+ tr( "Do you really want add contact for \n%1?" )
.arg( (*it).fullName().latin1() ),
tr( "&Yes" ), tr( "&No" ), tr( "&AllYes"),
0, // Enter == button 0
2 ) ) { // Escape == button 2
case 0:
qWarning("YES clicked");
@@ -827,21 +827,21 @@ void AddressbookWindow::slotSave()
}
#endif
void AddressbookWindow::slotNotFound()
{
- qWarning("Got notfound signal !");
+ qWarning("Got notfound signal!");
QMessageBox::information( this, tr( "Not Found" ),
tr( "Unable to find a contact for this \n search pattern!" ) );
}
void AddressbookWindow::slotWrapAround()
{
- qWarning("Got wrap signal !");
+ qWarning("Got wrap signal!");
// if ( doNotifyWrapAround )
// QMessageBox::information( this, tr( "End of list" ),
// tr( "End of list. Wrap around now...!" ) + "\n" );
}