From kde-commits Sun Jan 30 15:02:36 2005 From: Tom Albers Date: Sun, 30 Jan 2005 15:02:36 +0000 To: kde-commits Subject: kdelibs Message-Id: <20050130150236.A21171B555 () office ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=110709737032487 CVS commit by toma: Added translator comments to make a different translation of different meaning of "Next" possible. M +1 -1 common_texts.cpp 1.23 M +2 -2 kdecore/kstdaccel.cpp 1.58 M +1 -1 kdeui/ktip.cpp 1.49 M +1 -1 kdeui/kwizard.cpp 1.26 M +2 -2 khtml/ecma/kjs_debugwin.cpp 1.41 M +2 -2 kioslave/http/kcookiejar/kcookiewin.cpp 1.56 --- kdelibs/common_texts.cpp #1.22:1.23 @@ -166,5 +166,5 @@ i18n( "&Insert"); // (Rikkus) Removed << and >> for next and previous and put '+ " >>"' in // kwizard.h - fixes translation ? -i18n( "&Next"); +i18n( "Opposite to Previous","&Next"); i18n( "&Previous"); i18n( "Replace"); --- kdelibs/kdecore/kstdaccel.cpp #1.57:1.58 @@ -69,10 +69,10 @@ static KStdAccelInfo g_infoStdAccel[] = { Replace, I18N_NOOP("Replace"), 0, Qt::CTRL+Qt::Key_R, 0, 0, 0, KShortcut(), false }, {AccelNone, "Group:Navigation", I18N_NOOP("Navigation"), 0, 0, 0, 0, KShortcut(), false }, - { Home, I18N_NOOP("Home"), 0, Qt::CTRL+Qt::Key_Home, 0, Qt::Key_HomePage, 0, KShortcut(), false }, + { Home, I18N_NOOP("Opposite to End","Home"), 0, Qt::CTRL+Qt::Key_Home, 0, Qt::Key_HomePage, 0, KShortcut(), false }, { End, I18N_NOOP("End"), 0, Qt::CTRL+Qt::Key_End, 0, 0, 0, KShortcut(), false }, { BeginningOfLine, "BeginningOfLine", I18N_NOOP("Beginning of Line"), Qt::Key_Home, 0, 0, 0, KShortcut(), false}, { EndOfLine, "EndOfLine", I18N_NOOP("End of Line"), Qt::Key_End, 0, 0, 0, KShortcut(), false}, { Prior, I18N_NOOP("Prior"), 0, Qt::Key_Prior, 0, 0, 0, KShortcut(), false }, - { Next, I18N_NOOP("Next"), 0, Qt::Key_Next, 0, 0, 0, KShortcut(), false }, + { Next, I18N_NOOP("Opposite to Prior","Next"), 0, Qt::Key_Next, 0, 0, 0, KShortcut(), false }, { GotoLine, "GotoLine", I18N_NOOP("Go to Line"), Qt::CTRL+Qt::Key_G, 0, 0, 0, KShortcut(), false }, { AddBookmark, "AddBookmark", I18N_NOOP("Add Bookmark"), Qt::CTRL+Qt::Key_B, 0, 0, 0, KShortcut(), false }, --- kdelibs/kdeui/ktip.cpp #1.48:1.49 @@ -288,5 +288,5 @@ KTipDialog::KTipDialog(KTipDatabase *db, KPushButton *next = new KPushButton( KStdGuiItem::forward( KStdGuiItem::UseRTL ), this ); - next->setText( i18n("&Next") ); + next->setText( i18n("Opposite to Previous","&Next") ); hbox2->addWidget(next); --- kdelibs/kdeui/kwizard.cpp #1.25:1.26 @@ -47,5 +47,5 @@ KWizard::KWizard( QWidget *parent, const backButton()->setText( i18n( "&Back" ) ); - nextButton()->setText( i18n( "&Next" ) ); + nextButton()->setText( i18n( "Opposite to Back","&Next" ) ); } --- kdelibs/khtml/ecma/kjs_debugwin.cpp #1.40:1.41 @@ -442,5 +442,5 @@ KJSDebugWin::KJSDebugWin(QWidget *parent m_actionCollection = new KActionCollection(this); m_actionCollection->setInstance(this); - m_nextAction = new KAction(i18n("&Next"),"dbgnext",KShortcut(),this,SLOT(slotNext()), + m_nextAction = new KAction(i18n("Next breakpoint","&Next"),"dbgnext",KShortcut(),this,SLOT(slotNext()), m_actionCollection,"next"); m_stepAction = new KAction(i18n("&Step"),"dbgstep",KShortcut(),this,SLOT(slotStep()), @@ -453,5 +453,5 @@ KJSDebugWin::KJSDebugWin(QWidget *parent m_actionCollection,"breaknext"); - m_nextAction->setToolTip(i18n("Next")); + m_nextAction->setToolTip(i18n("Next breakpoint","Next")); m_stepAction->setToolTip(i18n("Step")); m_continueAction->setToolTip(i18n("Continue")); --- kdelibs/kioslave/http/kcookiejar/kcookiewin.cpp #1.55:1.56 @@ -292,5 +292,5 @@ KCookieDetail::KCookieDetail( KHttpCooki if ( cookieCount > 1 ) { - QPushButton* btnNext = new QPushButton( i18n("&Next >>"), this ); + QPushButton* btnNext = new QPushButton( i18n("Next cookie","&Next >>"), this ); btnNext->setFixedSize( btnNext->sizeHint() ); grid->addMultiCellWidget( btnNext, 8, 8, 0, 1 );