Send for Publishing email throws errors if user has Swedish culture setting
Discovered an interesting bug when using the send for publish/approval function. If you're using the english culture in umbraco, you get a summary (which doesn't even say what changed) and an "edit" button that simply directs you to the page that has been edited, in edit mode.
However, if the user is using swedish culture in umbraco they will get the same email except with four buttons. Edit, delete, publish, edit (but in swedish). None of these buttons work. They all lead to a umbraco/actions/editContent.aspx (publish,delete with same url) but these pages give a 404.
I don't want to force my users to use english but I can't find quite where to correct these urls?
Send for Publishing email throws errors if user has Swedish culture setting
Discovered an interesting bug when using the send for publish/approval function. If you're using the english culture in umbraco, you get a summary (which doesn't even say what changed) and an "edit" button that simply directs you to the page that has been edited, in edit mode.
However, if the user is using swedish culture in umbraco they will get the same email except with four buttons. Edit, delete, publish, edit (but in swedish). None of these buttons work. They all lead to a umbraco/actions/editContent.aspx (publish,delete with same url) but these pages give a 404.
I don't want to force my users to use english but I can't find quite where to correct these urls?
Hi!
Are these the strings that can be found in the email that are wrong? https://github.com/umbraco/Umbraco-CMS/blob/2f4feb925a66781529eeea779c409b3d73ea7fdd/src/Umbraco.Core/EmbeddedResources/Lang/sv.xml#L592-L598
If so, you can override them by creating a file in /config/lang/sv-SE.user.xml with the same keys and correct the links.
Hi Johan,
Those seem to be the correct strings, I've gone ahead and created the file as you said and it now works, thank you!
For anyone else who might have this problem, the old url in the xml looks like:
This needs to be changed to this to work:
Hi!
Great, if you feel up for it you can create a pull request with the changes so that it ships out to everyone :)
is working on a reply...