← Back to team overview

linuxdcpp-team team mailing list archive

[Branch ~dcplusplus-team/dcplusplus/trunk] Rev 3088: tweak wording and fix help ID

 

------------------------------------------------------------
revno: 3088
committer: cologic <ne5@xxxxxxxxxxx>
branch nick: dcplusplus
timestamp: Mon 2012-10-22 09:28:37 -0400
message:
  tweak wording and fix help ID
modified:
  help/settings_general.html
  win32/GeneralPage.cpp


--
lp:dcplusplus
https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk

Your team Dcplusplus-team is subscribed to branch lp:dcplusplus.
To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk/+edit-subscription
=== modified file 'help/settings_general.html'
--- help/settings_general.html	2012-05-16 11:34:47 +0000
+++ help/settings_general.html	2012-10-22 13:28:37 +0000
@@ -77,6 +77,11 @@
 	Ctrl + Alt + Del); disable away mode when the Windows session is unlocked.
 	</dd>
 
+	<dt>Add timestamp to end of away messages</dt>
+	<dd cshelp="IDH_SETTINGS_GENERAL_AWAY_TIMESTAMP">
+	Display time at which DC++ entered away mode in away message.
+	</dd>
+
 	<dt>Enable away mode after X minutes of inactivity</dt>
 	<dd cshelp="IDH_SETTINGS_GENERAL_AWAY_IDLE">
 	Switch to away mode whenever the Windows session hasn't received any mouse or keyboard input

=== modified file 'win32/GeneralPage.cpp'
--- win32/GeneralPage.cpp	2012-10-22 11:38:19 +0000
+++ win32/GeneralPage.cpp	2012-10-22 13:28:37 +0000
@@ -105,7 +105,7 @@
 		box->setHelpId(IDH_SETTINGS_GENERAL_AWAY_COMP_LOCK);
 		items.emplace_back(box, SettingsManager::AWAY_COMP_LOCK, PropPage::T_BOOL);
 
-		box = cur->addChild(Grid::Seed(1, 1))->addChild(CheckBox::Seed(T_("Add timestamp to the end of away messages automatically")));
+		box = cur->addChild(Grid::Seed(1, 1))->addChild(CheckBox::Seed(T_("Add timestamp to the end of away messages")));
 		box->setHelpId(IDH_SETTINGS_GENERAL_AWAY_TIMESTAMP);
 		items.emplace_back(box, SettingsManager::AWAY_TIMESTAMP, PropPage::T_BOOL);