I have a question regarding i18n in Vscode extensions. This is my use case: I have an extension that contributes a command that displays a message. This message is translated and localized using "vscode-nls". Is it possible to create another extension that depends on the first one and uses the same command but displaying another message ? I understand that it is possible to pass another string to the command as parameter, but i want somehow to replace original value(defined in the parent extension) by a new one using message key defined in the first extension. Please advise.
Regards, Slavik.