Hi,
I have looked in the the example as outlined in https://docs.microsoft.com/en-us/dynamics365/unified-operations/retail/dev-itpro/pos-view-extension
If I would like to support more languages then en-us I assume that I should add one more language file. But how should I modify the manifest.json file to support more then one language and is POS capable to choose language based on the user / worker setup?
Yes, can change POS language by setting it up at worker level.
Below code snippet to from SampleExtension's manifest file. You can refer to the complete solution on to add resource file.
"$schema": "../schemas/manifestSchema.json",
"name": "Pos_Extensibility_Samples",
"publisher": "Microsoft",
"version": "7.2.0",
"minimumPosVersion": "7.2.0.0",
"components": {
"resources": {
"supportedUICultures": [ "de", "en-US", "fr" ],
"fallbackUICulture": "en-US",
"culturesDirectoryPath": "Resources/Strings",
"stringResourcesFileName": "resources.resjson",
"cultureInfoOverridesFilePath": "Resources/cultureInfoOverrides.json"
},
Cheers,
Aniket