Community
    • Login

    Find result panel traduction

    Scheduled Pinned Locked Moved General Discussion
    2 Posts 2 Posters 2.0k Views 2 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • los amigosL Offline
      los amigos
      last edited by los amigos

      Cannot find where are available the Find Result panel title and his context menu in the translation files?
      capture

      Claudia FrankC 1 Reply Last reply Reply Quote 0
      • Claudia FrankC Offline
        Claudia Frank @los amigos
        last edited by

        @los-amigos

        looks like it is hard coded.

        	case WM_CONTEXTMENU :
        	{
        		if (HWND(wParam) == _scintView.getHSelf())
        		{
        			POINT p;
        			::GetCursorPos(&p);
        			ContextMenu scintillaContextmenu;
        			vector<MenuItemUnit> tmp;
        			tmp.push_back(MenuItemUnit(NPPM_INTERNAL_FINDINFINDERDLG, TEXT("Find in this finder...")));
        			if (_canBeVolatiled)
        				tmp.push_back(MenuItemUnit(NPPM_INTERNAL_REMOVEFINDER, TEXT("Close this finder")));
        			tmp.push_back(MenuItemUnit(0, TEXT("Separator")));
        			tmp.push_back(MenuItemUnit(NPPM_INTERNAL_SCINTILLAFINFERCOLLAPSE, TEXT("Collapse all")));
        			tmp.push_back(MenuItemUnit(NPPM_INTERNAL_SCINTILLAFINFERUNCOLLAPSE, TEXT("Uncollapse all")));
        			tmp.push_back(MenuItemUnit(0, TEXT("Separator")));
        			tmp.push_back(MenuItemUnit(NPPM_INTERNAL_SCINTILLAFINFERCOPY, TEXT("Copy")));
        			tmp.push_back(MenuItemUnit(NPPM_INTERNAL_SCINTILLAFINFERSELECTALL, TEXT("Select all")));
        			tmp.push_back(MenuItemUnit(NPPM_INTERNAL_SCINTILLAFINFERCLEARALL, TEXT("Clear all")));
        			tmp.push_back(MenuItemUnit(0, TEXT("Separator")));
        			tmp.push_back(MenuItemUnit(NPPM_INTERNAL_SCINTILLAFINFEROPENALL, TEXT("Open all")));
        
        			scintillaContextmenu.create(_hSelf, tmp);
        
        			scintillaContextmenu.display(p);
        			return TRUE;
        		}
        		return ::DefWindowProc(_hSelf, message, wParam, lParam);
        	}
        

        Maybe you wanna open an issue here if it hasn’t been already addressed.

        Cheers
        Claudia

        Cheers
        Claudia

        1 Reply Last reply Reply Quote 0

        Hello! It looks like you're interested in this conversation, but you don't have an account yet.

        Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

        With your input, this post could be even better đź’—

        Register Login
        • First post
          Last post
        The Community of users of the Notepad++ text editor.
        Powered by NodeBB | Contributors