| Summary: | "Mark Message as Not To-Do" nonsensical; should be "Remove To-Do Mark" or similar | ||
|---|---|---|---|
| Product: | [Unmaintained] kmail | Reporter: | Mark Florian <markrian> |
| Component: | general | Assignee: | kdepim bugs <pim-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.9.1 | ||
| Target Milestone: | --- | ||
| Platform: | Ubuntu | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Mark Florian
2006-08-05 13:01:59 UTC
SVN commit 571133 by winterz:
New GUI Strings for KDE 3.5.5.
"Mark as Not To-do" becomes "Remove To-do Mark"
"Mark as Not Sent" becomes "Remove Sent Mark"
BUG: 131915
GUI:
M +5 -5 kmmainwidget.cpp
--- branches/KDE/3.5/kdepim/kmail/kmmainwidget.cpp #571132:571133
@@ -2572,13 +2572,13 @@
mToggleTodoAction = new KToggleAction(i18n("Mark Message as &To-do"), "mail_todo",
0, this, SLOT(slotSetMsgStatusTodo()),
actionCollection(), "status_todo");
- mToggleTodoAction->setCheckedState( i18n("Mark Message as Not &To-do") );
+ mToggleTodoAction->setCheckedState( i18n("Remove &To-do Message Mark") );
mStatusMenu->insert( mToggleTodoAction );
mToggleSentAction = new KToggleAction(i18n("Mark Message as &Sent"), "kmmsgsent",
0, this, SLOT(slotSetMsgStatusSent()),
actionCollection(), "status_sent");
- mToggleSentAction->setCheckedState( i18n("Mark Message as Not &Sent") );
+ mToggleSentAction->setCheckedState( i18n("Remove &Sent Mark") );
//----- "Mark Thread" submenu
@@ -2615,7 +2615,7 @@
mToggleThreadTodoAction = new KToggleAction(i18n("Mark Thread as &To-do"), "mail_todo",
0, this, SLOT(slotSetThreadStatusTodo()),
actionCollection(), "thread_todo");
- mToggleThreadTodoAction->setCheckedState( i18n("Mark Thread as Not &To-do") );
+ mToggleThreadTodoAction->setCheckedState( i18n("Remove &To-do Thread Mark") );
mThreadStatusMenu->insert( mToggleThreadTodoAction );
//------- "Watch and ignore thread" actions
@@ -2876,7 +2876,7 @@
void KMMainWidget::slotShowMsgSrc()
{
if ( mMsgView )
- mMsgView->setUpdateAttachment( false );
+ mMsgView->setUpdateAttachment( false );
KMMessage *msg = mHeaders->currentMsg();
if ( !msg )
return;
@@ -3014,7 +3014,7 @@
mSendAgainAction->setEnabled( single_actions &&
( mHeaders->currentMsg() && mHeaders->currentMsg()->isSent() )
- || ( mFolder && mHeaders->currentMsg() &&
+ || ( mFolder && mHeaders->currentMsg() &&
( kmkernel->folderIsDraftOrOutbox( mFolder )
|| kmkernel->folderIsSentMailFolder( mFolder ) ) ) );
mSaveAsAction->setEnabled( mass_actions );
|