diff options
| author | John Scipione <jscipione@gmail.com> | 2012-07-31 09:37:08 -0400 |
|---|---|---|
| committer | John Scipione <jscipione@gmail.com> | 2012-07-31 09:37:08 -0400 |
| commit | 7d404dbcae3f5b237a6e297b55235ac89e6c936d (patch) | |
| tree | db7318f9cbe33f5ddceff8436ae6ab58c30d8b93 | |
| parent | fa37d94d1bd5b2c559f1ab1cac40826a945cec9c (diff) | |
Rename the angle mode menu items to just 'Radians' and 'Degrees'. No reason for the word Mode.hrev44446
| -rw-r--r-- | src/apps/deskcalc/CalcView.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/apps/deskcalc/CalcView.cpp b/src/apps/deskcalc/CalcView.cpp index 0f17810376..eba0c41d33 100644 --- a/src/apps/deskcalc/CalcView.cpp +++ b/src/apps/deskcalc/CalcView.cpp @@ -1276,9 +1276,9 @@ CalcView::_CreatePopUpMenu(bool addKeypadModeMenuItems) new BMessage(MSG_OPTIONS_AUTO_NUM_LOCK)); fAudioFeedbackItem = new BMenuItem(B_TRANSLATE("Audio Feedback"), new BMessage(MSG_OPTIONS_AUDIO_FEEDBACK)); - fAngleModeRadianItem = new BMenuItem(B_TRANSLATE("Radian Mode"), + fAngleModeRadianItem = new BMenuItem(B_TRANSLATE("Radians"), new BMessage(MSG_OPTIONS_ANGLE_MODE_RADIAN)); - fAngleModeDegreeItem = new BMenuItem(B_TRANSLATE("Degree Mode"), + fAngleModeDegreeItem = new BMenuItem(B_TRANSLATE("Degrees"), new BMessage(MSG_OPTIONS_ANGLE_MODE_DEGREE)); if (addKeypadModeMenuItems) { fKeypadModeCompactItem = new BMenuItem(B_TRANSLATE("Compact"), |
