L10NSharp 5.0.0-beta0088

This is a prerelease version of L10NSharp.
There is a newer version of this package available.
See the version list below for details.
dotnet add package L10NSharp --version 5.0.0-beta0088
NuGet\Install-Package L10NSharp -Version 5.0.0-beta0088
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="L10NSharp" Version="5.0.0-beta0088" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add L10NSharp --version 5.0.0-beta0088
#r "nuget: L10NSharp, 5.0.0-beta0088"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install L10NSharp as a Cake Addin
#addin nuget:?package=L10NSharp&version=5.0.0-beta0088&prerelease

// Install L10NSharp as a Cake Tool
#tool nuget:?package=L10NSharp&version=5.0.0-beta0088&prerelease

L10NSharp is a .NET localization library for Windows Forms applications. It collects strings which needs localization when your application first runs and saves them in a XLIFF or TMX file. It can also dynamically collect strings at runtime.

Product Compatible and additional computed target framework versions.
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.6.1

    • No dependencies.

NuGet packages (15)

Showing the top 5 NuGet packages that depend on L10NSharp:

Package Downloads
SIL.Windows.Forms.Keyboarding The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

The SIL.Windows.Forms.Keyboarding library provides cross-platform functionality for keyboard selection and switching in Windows Forms applications. Currently, this library supports system and Keyman keyboards on Windows, and X keyboard extension (XKB) and Intelligent Input Bus (IBus) keyboards on Linux.

SIL.Windows.Forms.WritingSystems The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

SIL.Windows.Forms.WritingSystems contains Windows Forms UI elements for displaying and editing writing systems as defined by the SIL.WritingSystems assembly.

SIL.Windows.Forms.DblBundle The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Package Description

SIL.Windows.Forms The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

SIL.Windows.Forms contains Windows Forms classes for UI elements (controls and dialogs) that are commonly used across various SIL applications. SIL.Windows.Forms is similar to SIL.Core in that it does not contain classes that are specific to any domain.

SIL.Archiving The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

SIL.Archiving contains Windows Forms UI elements and classes for archiving data to REAP using the RAMP application.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.0-beta0003 0 4/19/2024
7.0.1-beta0001 63 4/15/2024
7.0.0 709 11/6/2023
7.0.0-beta0013 447 11/3/2023
7.0.0-beta0011 708 3/17/2023
7.0.0-beta0010 669 3/13/2023
6.1.0-beta0009 627 3/13/2023
6.1.0-beta0008 629 12/9/2022
6.1.0-beta0007 622 12/9/2022
6.0.1-beta0002 611 11/23/2022
6.0.0 5,935 11/23/2022
6.0.0-beta0018 590 11/21/2022
6.0.0-beta0017 633 10/7/2022
6.0.0-beta0015 632 8/24/2022
6.0.0-beta0013 624 8/24/2022
6.0.0-beta0003 667 7/12/2022
5.0.0 3,737 7/8/2022
5.0.0-beta0098 637 7/8/2022
5.0.0-beta0097 676 7/8/2022
5.0.0-beta0094 1,158 6/2/2022
5.0.0-beta0092 681 5/31/2022
5.0.0-beta0090 927 5/19/2022
5.0.0-beta0088 1,307 5/17/2022
5.0.0-beta0086 1,024 4/12/2022
5.0.0-beta0082 694 4/11/2022
5.0.0-beta0080 944 3/9/2022
5.0.0-beta0059 1,932 2/4/2022
5.0.0-beta.77 120 2/21/2022
5.0.0-beta.75 125 2/4/2022
4.2.0-beta0006 2,132 8/20/2021
4.2.0-beta0004 1,434 5/14/2021
4.1.1-beta0002 1,008 4/14/2021
4.1.0 12,989 3/4/2021
4.0.3 1,333 1/21/2020
4.0.2 1,430 7/9/2019
4.0.1 1,188 7/8/2019
4.0.0 1,634 5/16/2019

Changes since version 4.1.0

Added:
- option `LocalizationManager.ThrowIfManagerDisposed` to not throw if LM disposed (BL-9904)
- XliffBody.TransUnitsUnordered for where you just need to enumerate all of them.
- (Made public) XliffBody.AddTransUnit and .RemoveTransUnit for where you need to modify.
- XliffBody.TransUnitsForXml. This is necessarily public to support (backwards-compatible)
   serialization and deserialization in XML, but is not intended for any other purpose.

Changed:
- remove progress dialog when initializating Xliff localization managers (BL-11157)
- Made string retrieval operations on Xliff-based LocalizationManagers thread-safe
- Added ILocalizationManager parameter to StringsLocalizedHandler
- It's long been a convention that xliff file names are module.lang.xlf (e.g., Bloom.fr.xlf)
or else kept in language-code folders (.../en/Bloom.xlf) if UseLanguageCodeFolders is set.
With the latest changes, this is required: the language name indicated in these ways in the file
name must match the language declared in the target-language attribute, or at least match the
first element of the target-language (e.g., a file with target-languge es-ES may be stored in
file like Bloom.es.xlf or .../es/Bloom.xlf).

Removed:
- XliffBody.TransUnits, as there is no good way to make this thread-safe for all the ways
   it could be used, such as adding items to the list. (See Added for replacements.)

See full changelog at https://github.com/sillsdev/l10nsharp/blob/master/CHANGELOG.md