author | cniehaus <cniehaus> | 2002-04-13 17:15:16 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2002-04-13 17:15:16 (UTC) |
commit | 74ca4fc34f8634c39b12a60ae97df88a612c12b1 (patch) (unidiff) | |
tree | 86b511b649da8d7ef52fdc27c5b5642f9ef749d9 | |
parent | 1eb54898047fab3963debe51fa3e570b361a1215 (diff) | |
download | opie-74ca4fc34f8634c39b12a60ae97df88a612c12b1.zip opie-74ca4fc34f8634c39b12a60ae97df88a612c12b1.tar.gz opie-74ca4fc34f8634c39b12a60ae97df88a612c12b1.tar.bz2 |
added tr("") for 3 strings
-rw-r--r-- | core/pim/addressbook/addressbook.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp index 95a8521..360aa7e 100644 --- a/core/pim/addressbook/addressbook.cpp +++ b/core/pim/addressbook/addressbook.cpp | |||
@@ -212,19 +212,19 @@ AddressbookWindow::AddressbookWindow( QWidget *parent, const char *name, | |||
212 | 212 | ||
213 | mbList->insertItem( tr("View"), catMenu ); | 213 | mbList->insertItem( tr("View"), catMenu ); |
214 | setCentralWidget( abList ); | 214 | setCentralWidget( abList ); |
215 | 215 | ||
216 | fontMenu = new QPopupMenu(this); | 216 | fontMenu = new QPopupMenu(this); |
217 | fontMenu->setCheckable( true ); | 217 | fontMenu->setCheckable( true ); |
218 | connect( fontMenu, SIGNAL(activated(int)), this, SLOT(slotSetFont(int))); | 218 | connect( fontMenu, SIGNAL(activated(int)), this, SLOT(slotSetFont(int))); |
219 | 219 | ||
220 | fontMenu->insertItem("Small", 0); | 220 | fontMenu->insertItem(tr( "Small" ), 0); |
221 | fontMenu->insertItem("Normal", 1); | 221 | fontMenu->insertItem(tr( "Normal" ), 1); |
222 | fontMenu->insertItem("Large", 2); | 222 | fontMenu->insertItem(tr( "Large" ), 2); |
223 | 223 | ||
224 | defaultFont = new QFont( abList->font() ); | 224 | defaultFont = new QFont( abList->font() ); |
225 | 225 | ||
226 | slotSetFont(startFontSize); | 226 | slotSetFont(startFontSize); |
227 | 227 | ||
228 | mbList->insertItem( tr("Font"), fontMenu); | 228 | mbList->insertItem( tr("Font"), fontMenu); |
229 | setCentralWidget(abList); | 229 | setCentralWidget(abList); |
230 | 230 | ||