murxh
murxh
So far edits where a space had been replaced with a nbsp (or vice versa) are not shown. This fix addresses this by creating a 'word' when one or more...
ApplyTemplateOptions.Merge -> Prepend/Append for TranslationProviders and Termbases. Does not break existing settings file ASPT.xml (Merge value translates to Prepend for TranslationProviders and Append for Termbases)
Exporting SDLTMs having the same name to the same export folder fails.
retrieving source/target language is not required here and might result in a null reference (Sourcefile)
https://github.com/RWS/Sdl-Community/blob/0244cb92ce0ef96a8ae84d087030e41547332e6a/StudioViews/StudioViews/Services/ProjectFileService.cs#L234 ProjectFileService.GetProjectFiles fails silently if it encounters invalid xml chars (like 0x1C, 0x1E, ...), resulting in an empty export file without any warning to the user An easy fix would...
https://github.com/RWS/Sdl-Community/blob/d0930700ce7ff2e7e2f774ceac69acbf31da30e8/StudioViews/StudioViews/Services/ProjectService.cs#L92 change `var internalProjectField = type.GetField("_project", BindingFlags.NonPublic | BindingFlags.Instance); ` to `var internalProjectField = type.GetProperty("InternalProject", BindingFlags.NonPublic | BindingFlags.Instance);` see also: https://github.com/RWS/Sdl-Community/blob/d0930700ce7ff2e7e2f774ceac69acbf31da30e8/ApplyStudioProjectTemplate/Sdl.Community.ApplyStudioProjectTemplate/ApplyStudioProjectTemplateAction.cs#L673