Release Details
This is a patch release of Translation Manager for Umbraco,
Things to make set creation easier:
Ability to just add all the configured domains to the target sites, great if you have LOTS of languages
Ability to quickly copy an existing set, so you can tweak and make new sets quickly
Licence file location was been incorrectly saved to ~/umbraco/licences (so putting a ~ folder in the root) this release will move it to the correct location of /umbraco/Licences (no ~) 44
You can set the licence values in appsettings.json - 45 - the value is over written if the licence file exists but it means you don't have to distribute the licence file if you don't want to.
Translation Manager 10 is distributed as a nuget package and can be added to your site in a couple of ways.
via a command line you can add Translation Manager
dotnet add package Jumoo.TranslationManager --version 10.1.0
You can add the dependency directly to your projects .csproj file.
<ItemGroup>
<PackageReference Include="Jumoo.TranslationManager" Version="10.1.0" />
</ItemGroup>
If you are old school . install-package still works
install-package Jumoo.TranslationManager -version 10.1.0