Rhinocommon localization not working for .yak file

Hi I’m currently running into issues with localization after building a .yak file of my C# PlugIn for deployment.
I use Rhino.ApplicationSettings.AppearanceSettings.LanguageIdentifier and multiple .resx files for localization, I do this for every command individually.
This solution works fine when debugging, also when directly loading the .rhp via Drag&Drop as this is technically the same. However, when putting the .rhp in a .yak File in order for distribution, the PlugIn always uses the default language and not the one which is set in Rhino 8.
My .yak files contain:
-manifest.yml
-csharp.rhp
-vb.rhp
-toolbar.rui

Has anybody else ever experienced such problems?
I find it difficult to find a solution on my own as documentation on .yak is scarce and putting other .dlls in the .yak file has so far only caused trouble for me.

Solution was simple, all I needed to do was also copy the folders for each language and the project.resources.dll which they contain into the folder for the yak file.
Structure now looks like this:
-manifest.yml
-csharp.rhp
-vb.rhp
-toolbar.rui
-fr
-csharp.resources.dll
-de
-csharp.resources.dll
-cz
-csharp.resources.dll

I thought the .rhp would already contain the different resources.dll files, but this is not the case.