Skip to content

Commit

Permalink
use fields, not columns in message
Browse files Browse the repository at this point in the history
  • Loading branch information
ruleant committed Dec 19, 2012
1 parent fe8999c commit 0915245
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/messages.php
Expand Up @@ -347,10 +347,10 @@
// this approach does not work when the parameter is changed via user prefs
switch ($GLOBALS['cfg']['GridEditing']) {
case 'double-click':
$js_messages['strGridEditFeatureHint'] = __('You can also edit most columns<br />by double-clicking directly on their content.');
$js_messages['strGridEditFeatureHint'] = __('You can also edit most fields<br />by double-clicking directly on their content.');
break;
case 'click':
$js_messages['strGridEditFeatureHint'] = __('You can also edit most columns<br />by clicking directly on their content.');
$js_messages['strGridEditFeatureHint'] = __('You can also edit most fields<br />by clicking directly on their content.');
break;
default:
break;
Expand Down

3 comments on commit 0915245

@lem9
Copy link
Contributor

@lem9 lem9 commented on 0915245 Dec 19, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suggest
"You can also edit most values
by clicking directly on them."

If you agree I'll commit this change.

@roccivic
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good

@ruleant
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good suggestion

Please sign in to comment.