The TRANSLATE() function is for replacing characters with other characters. Watch out for two things. Remember to trim the trailing blanks from your variable's value. And the arguments for TRANSLATE() are in the opposite order of what you normally expect.
data want;
set have;
myvar = translate(trim(myvar),'-',' ');
run;
PS Please post text as text, not as photographs.