_Please describe what should happen_
When you delete a sprite the pop-up asking for confirmation should be translated into the scratchers language.
_Describe what actually happens_
The alert is always in English - it's not wrapped in a localization call.
https://github.com/LLK/scratch-gui/blob/89dc5c0781100091650966babf5364ff07c63e9b/src/containers/sprite-selector-item.jsx#L80
If anyone wants to implement this, it requires a few things. You can use a component like the playback-step.jsx for reference
injectIntl before exporting exampleWorking on it, but export default is only allowed once...
You can change the bottom of the file to something like
export default connect(
mapStateToProps,
mapDispatchToProps
)(injectIntl(SpriteSelectorItem));
@paulkaplan thanks!
Most helpful comment
If anyone wants to implement this, it requires a few things. You can use a component like the
playback-step.jsxfor referenceinjectIntlbefore exporting example