PseudoLocalizer.Core
0.9.0
See the version list below for details.
dotnet add package PseudoLocalizer.Core --version 0.9.0
NuGet\Install-Package PseudoLocalizer.Core -Version 0.9.0
<PackageReference Include="PseudoLocalizer.Core" Version="0.9.0" />
paket add PseudoLocalizer.Core --version 0.9.0
#r "nuget: PseudoLocalizer.Core, 0.9.0"
// Install PseudoLocalizer.Core as a Cake Addin #addin nuget:?package=PseudoLocalizer.Core&version=0.9.0 // Install PseudoLocalizer.Core as a Cake Tool #tool nuget:?package=PseudoLocalizer.Core&version=0.9.0
Pseudolocalizer
Introduction
Pseudolocalizer is a .NET Global Tool for testing internationalization aspects of software. Specifically, it reads string values from resource files in the resx, XLIFF, or GetText Portable Object (PO) format and generates fake translations for the "qps-Ploc" pseudo-locale (MSDN).
The tool is run from the command line and provides the following options for the fake translation:
- Add accents on all letters so that non-localized text can be spotted - but without making the text unreadable.
- Make all words 30% longer, to ensure that there is room for translations.
- Add brackets to show the start and end of each localized string. This makes it possible to spot strings that have been cut off.
- Reverse all words ("mirror"), to simulate right-to-left locales.
- Replace all characters with underscores so that non-localized text can be spotted.
See also
- WPF Localization Guidance Whitepaper by Rick Strahl and Michele Leroux Bustamante
- Stack Overflow: How to use enable pseudo-locale in Windows for testing?
Installation
To install the tool from NuGet using the .NET SDK run:
dotnet tool install --global PseudoLocalize
Usage
Usage: pseudo-localize [/l] [/a] [/b] [/m] [/u] [/c culture] file [file...]
Generates pseudo-localized versions of the specified input file(s).
The input files must be resource files in Resx, Xlf, or PO file format.
The output will be written to a file next to the original, with .qps-Ploc
(or the output culture you specify) appended to its name. For example, if
the input file is X:\Foo\Bar.resx, then the output file will be
X:\Foo\Bar.qps-Ploc.resx.
Options:
/h, --help Show command line help.
/v, --version Show the version of the tool.
/l, --lengthen Make all words 30% longer, to ensure that there is room for translations.
/a, --accents Add accents on all letters so that non-localized text can be spotted.
/b, --brackets Add brackets to show the start and end of each localized string.
This makes it possible to spot cut off strings.
/m, --mirror Reverse all words ("mirror").
/u, --underscores Replace all characters with underscores.
/c, --culture Use the following string as the culture code in the output file name(s).
/o, --overwrite Overwrites the input file(s) with the pseudo-localized version.
/f, --force Suppresses the confirmation prompt for the --overwrite option.
The default options, if none are given, are: /l /a /b.
Library
The core functionality is also available as a NuGet package, as well as a NuGet package that plugs into the Humanizer library.
These allow you to programmatically pseudo-localize strings for other scenarios not catered for by the PseudoLocalize tool itself.
Took at look at the source code for PseudoLocalize for examples of how to use the library to pseudo-localize strings and process streams.
Packages | Latest Version |
---|---|
PseudoLocalizer.Core |
|
PseudoLocalizer.Humanizer |
Installation
dotnet add package PseudoLocalizer.Core
dotnet add package PseudoLocalizer.Humanizer
Usage with Humanizer
To register pseudo-localization for Humanizer, add the following snippet to your application:
new PseudoLocalizer.Humanizer.PseudoHumanizer().Register();
Feedback
Any feedback or issues can be added to the issues for this project in GitHub.
Repository
The repository is hosted in GitHub: https://github.com/martincostello/Pseudolocalizer.git
License
This project is licensed under the MIT license.
Building and Testing
Compiling the tool yourself requires Git and the .NET SDK to be installed.
To build and test the tool locally from a terminal/command-line, run the following set of commands:
git clone https://github.com/martincostello/Pseudolocalizer.git
cd Pseudolocalizer
./build.sh
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Karambolo.PO.Compact (>= 1.3.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on PseudoLocalizer.Core:
Package | Downloads |
---|---|
PseudoLocalizer.Humanizer
A library containing extensions for Humanizer to apply pseudo-localization to strings. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.10.0 | 53 | 11/13/2024 |
0.9.1 | 1,383 | 6/7/2024 |
0.9.0 | 742 | 11/14/2023 |
0.8.0 | 1,436 | 11/8/2022 |
0.7.0 | 2,198 | 1/31/2022 |
0.6.0 | 493 | 11/19/2021 |
0.5.0 | 478 | 11/8/2021 |
0.4.1 | 754 | 7/12/2021 |
0.4.0 | 668 | 5/6/2021 |
0.3.0 | 1,127 | 9/16/2020 |
0.2.1 | 1,241 | 10/8/2019 |
0.2.0 | 706 | 9/23/2019 |
0.1.2 | 864 | 5/1/2019 |
0.1.1 | 818 | 2/18/2019 |
0.1.1-beta-1589 | 624 | 2/15/2019 |
0.1.0 | 1,243 | 12/9/2018 |
0.1.0-beta-1521 | 1,046 | 12/9/2018 |
0.1.0-beta-1433 | 704 | 11/15/2018 |
0.1.0-beta-1402 | 638 | 11/11/2018 |
See https://github.com/martincostello/Pseudolocalizer/releases for details.