Forum Discussion

keithkelly's avatar
2 years ago

How To Change "Success! We moved this post to [Board TITLE]"

I've always found this message a bit wonky that it shows the board ID instead of the board title.  Perhaps my mother was right about me having slight OCD tendencies...

It would be cleaner to say Say "...moved this post to Claims (int)" - esp on boards that have longer/wonker IDs.

so I dug around and found these puppies in Community Text Editor:

feedback.MoveMessageAction.succeed = Success! We moved this ${general.post} to ${arg:param.destBoard.displayId}.

feedback.MoveMessageAction.failed = Sorry, we couldn''t move this ${general.post} to ${arg:param.destBoard.displayId}.

feedback.MoveMessageAction.allsucceed = Success! We moved these ${general.posts} to ${arg:param.destBoard.displayId}.

feedback.MoveMessageAction.allfailed = Sorry, we couldn''t move these ${general.posts} to ${arg:param.destBoard.displayId}.

 

This bit perplexes me, and I couldn't find any documentation or forum topics on it:

 

${arg:param.destBoard.displayId}

 

Where's this argument passed from?  Is there a displayTitle or Title attribute I can tap into?  What fields are available from within destBoard?

2 Replies

  • Got it: 

    I decided to stop wondering and just try some stuff, and the first thing I tried worked:

    ${arg:param.destBoard.title}

     

    Here's the full group of strings for copy/paste-ability

    feedback.MoveMessageAction.succeed                 = Success!  We moved this ${general.post} to ${arg:param.destBoard.title}.
    
    feedback.MoveMessageAction.failed                  = Sorry, we couldn''t move this ${general.post} to ${arg:param.destBoard.title}.
    
    feedback.MoveMessageAction.allsucceed              = Success!  We moved these ${general.posts} to ${arg:param.destBoard.title}.
    
    feedback.MoveMessageAction.allfailed               = Sorry, we couldn''t move these ${general.posts} to ${arg:param.destBoard.title}.

     

  • keithkelly's avatar
    keithkelly
    Leader
    2 years ago

    Ted09Morlan wrote:

    Identify the code or settings that control the message. Depending on the platform, this could be located in a configuration file, a template, or a script.Look for the specific text that you want to change. In this case, the text may be "Success! We moved this post to [Board TITLE]". You may need to use a text editor or a search function to find the relevant code.Modify the text to your desired message. Be careful to maintain proper formatting and syntax to ensure that the message displays correctly.Save your changes and test the new message. Make sure that the message displays as expected and that there are no errors or issues.

    If you are unsure how to modify the message, you may need to consult documentation or seek assistance from a developer or technical support team.



    "depending on the platform" ??? ๐Ÿ˜‚

    Whole lotta GPT goin' on....

    User reported.