Changed "Reference Vectors" into "Reference Marks" in the Windows and Linux versions

ver1_6_1
Vincent Giangiulio 2009-07-13 09:01:55 +00:00
parent 83b4594aab
commit 4c7468f8fe
2 changed files with 2 additions and 2 deletions

View File

@ -330,7 +330,7 @@ void SelectionPopup::insert(KPopupMenu *popup, Selection sel, bool showSubObject
if (sel.body() != NULL) {
KPopupMenu *refVectorMenu = new KPopupMenu(this);
refVectorMenu->setCheckable(true);
popup->insertItem(i18n("&Reference Vectors"), refVectorMenu);
popup->insertItem(i18n("&Reference Marks"), refVectorMenu);
refVectorMenu->insertItem(i18n("Show Body Axes"), baseId + 25);
refVectorMenu->setItemChecked(baseId + 25, sel.body()->findReferenceMark("body axes"));
refVectorMenu->insertItem(i18n("Show Frame Axes"), baseId + 26);

View File

@ -1610,7 +1610,7 @@ VOID APIENTRY handlePopupMenu(HWND hwnd,
AppendMenu(hMenu, MF_STRING, ID_NAVIGATION_SYNCORBIT, UTF8ToCurrentCP(_("S&ync Orbit")).c_str());
AppendMenu(hMenu, MF_STRING, ID_INFO, UTF8ToCurrentCP(_("&Info")).c_str());
HMENU refVectorMenu = CreatePopupMenu();
AppendMenu(hMenu, MF_POPUP | MF_STRING, (DWORD) refVectorMenu, UTF8ToCurrentCP(_("&Reference Vectors")).c_str());
AppendMenu(hMenu, MF_POPUP | MF_STRING, (DWORD) refVectorMenu, UTF8ToCurrentCP(_("&Reference Marks")).c_str());
AppendMenu(refVectorMenu, MF_STRING, ID_RENDER_BODY_AXES, UTF8ToCurrentCP(_("Show Body Axes")).c_str());
AppendMenu(refVectorMenu, MF_STRING, ID_RENDER_FRAME_AXES, UTF8ToCurrentCP(_("Show Frame Axes")).c_str());
AppendMenu(refVectorMenu, MF_STRING, ID_RENDER_SUN_DIRECTION, UTF8ToCurrentCP(_("Show Sun Direction")).c_str());