├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── PULL_REQUEST_TEMPLATE.md ├── codeql │ └── codeql-config.yml ├── copilot-instructions.md ├── dependabot.yml └── workflows │ ├── .devskim │ ├── benchmarks-baseline-vs-current.yml │ ├── codeql.yml │ ├── copilot-setup-steps.yml │ ├── devskim.yml │ └── jekyll-gh-pages.yml ├── .gitignore ├── AGENTS.md ├── NuSpecs ├── Humanizer.Core.af.nuspec ├── Humanizer.Core.ar.nuspec ├── Humanizer.Core.az.nuspec ├── Humanizer.Core.bg.nuspec ├── Humanizer.Core.bn.nuspec ├── Humanizer.Core.ca.nuspec ├── Humanizer.Core.cs.nuspec ├── Humanizer.Core.da.nuspec ├── Humanizer.Core.de.nuspec ├── Humanizer.Core.el.nuspec ├── Humanizer.Core.es.nuspec ├── Humanizer.Core.fa.nuspec ├── Humanizer.Core.fi.nuspec ├── Humanizer.Core.fil.nuspec ├── Humanizer.Core.fr.nuspec ├── Humanizer.Core.he.nuspec ├── Humanizer.Core.hr.nuspec ├── Humanizer.Core.hu.nuspec ├── Humanizer.Core.hy.nuspec ├── Humanizer.Core.id.nuspec ├── Humanizer.Core.is.nuspec ├── Humanizer.Core.it.nuspec ├── Humanizer.Core.ja.nuspec ├── Humanizer.Core.ko.nuspec ├── Humanizer.Core.ku.nuspec ├── Humanizer.Core.lb.nuspec ├── Humanizer.Core.lt.nuspec ├── Humanizer.Core.lv.nuspec ├── Humanizer.Core.ms.nuspec ├── Humanizer.Core.mt.nuspec ├── Humanizer.Core.nb.nuspec ├── Humanizer.Core.nl.nuspec ├── Humanizer.Core.nuspec ├── Humanizer.Core.pl.nuspec ├── Humanizer.Core.pt-BR.nuspec ├── Humanizer.Core.pt.nuspec ├── Humanizer.Core.ro.nuspec ├── Humanizer.Core.ru.nuspec ├── Humanizer.Core.sk.nuspec ├── Humanizer.Core.sl.nuspec ├── Humanizer.Core.sr-Latn.nuspec ├── Humanizer.Core.sr.nuspec ├── Humanizer.Core.sv.nuspec ├── Humanizer.Core.ta.nuspec.unused ├── Humanizer.Core.th.nuspec ├── Humanizer.Core.tr.nuspec ├── Humanizer.Core.uk.nuspec ├── Humanizer.Core.uz-Cyrl-UZ.nuspec ├── Humanizer.Core.uz-Latn-UZ.nuspec ├── Humanizer.Core.vi.nuspec ├── Humanizer.Core.zh-CN.nuspec ├── Humanizer.Core.zh-Hans.nuspec ├── Humanizer.Core.zh-Hant.nuspec └── Humanizer.nuspec ├── azure-pipelines.yml ├── docs ├── _config.yml ├── _layouts │ └── default.html ├── assets │ └── css │ │ └── style.css ├── extensibility.md ├── index.md ├── installation.md ├── localization.md ├── quick-start.md ├── string-dehumanization.md ├── string-humanization.md ├── string-truncation.md └── v3-namespace-migration.md ├── global.json ├── license.txt ├── logo.png ├── readme.md ├── release_notes.md ├── src ├── .editorconfig ├── Benchmarks │ ├── .editorconfig │ ├── Benchmarks.csproj │ ├── EnglishArticleBenchmarks.cs │ ├── EnglishToWordsBenchmark.cs │ ├── EnumBenchmarks.cs │ ├── GlobalUsings.cs │ ├── InflectorBenchmarks.cs │ ├── ItalianNumberBenchmarks.cs │ ├── MetricNumeralBenchmarks.cs │ ├── NumberToWordsBenchmarks.cs │ ├── OrdinalBenchmarks.cs │ ├── Program.cs │ ├── README.md │ ├── RomanNumeralBenchmarks.cs │ ├── StringHumanizeBenchmarks.cs │ ├── TimeOnlyToClockNotationConverterBenchmarks.cs │ ├── ToQuantityBenchmarks.cs │ ├── TransformersBenchmarks.cs │ ├── VocabularyBenchmarks.cs │ └── WordsToNumberBenchmarks.cs ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── Directory.Solution.targets ├── Humanizer.Analyzers.Tests │ ├── Humanizer.Analyzers.Tests.csproj │ ├── NamespaceMigrationAnalyzerTests.cs │ ├── NamespaceMigrationCodeFixTests.cs │ └── Verifiers.cs ├── Humanizer.Analyzers │ ├── AnalyzerReleases.Shipped.md │ ├── AnalyzerReleases.Unshipped.md │ ├── Humanizer.Analyzers.csproj │ ├── NamespaceMigrationAnalyzer.cs │ ├── NamespaceMigrationCodeFixProvider.cs │ └── README.md ├── Humanizer.Tests │ ├── .editorconfig │ ├── ApiApprover │ │ ├── PublicApiApprovalTest.Approve_Public_Api.DotNet10_0.verified.txt │ │ ├── PublicApiApprovalTest.Approve_Public_Api.DotNet8_0.verified.txt │ │ ├── PublicApiApprovalTest.Approve_Public_Api.Net4_8.verified.txt │ │ └── PublicApiApprovalTest.cs │ ├── ArticlePrefixSortTests.cs │ ├── BitFieldEnumHumanizeTests.cs │ ├── BitFieldEnumUnderTest.cs │ ├── Bytes │ │ ├── ArithmeticTests.cs │ │ ├── ByteRateTests.cs │ │ ├── ByteSizeExtensionsTests.cs │ │ ├── ComparingTests.cs │ │ ├── CreatingTests.cs │ │ ├── ParsingTests.cs │ │ ├── ToFullWordsTests.cs │ │ └── ToStringTests.cs │ ├── CasingTests.cs │ ├── CollectionHumanizeTests.cs │ ├── DateHumanize.cs │ ├── DateHumanizeDefaultStrategyTests.cs │ ├── DateOnlyHumanizeTests.cs │ ├── DateTimeHumanizePrecisionStrategyTests.cs │ ├── DateTimeOffsetHumanizeTests.cs │ ├── EnumHumanizeTests.cs │ ├── EnumUnderTest.cs │ ├── FluentDate │ │ ├── InDateTests.cs │ │ ├── InTests.cs │ │ ├── OnDateTests.cs │ │ ├── OnTests.cs │ │ └── PrepositionTests.cs │ ├── GlobalUsings.cs │ ├── HeadingTests.cs │ ├── Humanizer.Tests.csproj │ ├── InflectorTests.cs │ ├── Localisation │ │ ├── DefaultFormatterTests.cs │ │ ├── ResourcesTests.cs │ │ ├── af │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── ar │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── az │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── bg │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── bn-BD │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── ca │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── DateToOrdinalWordsTests.cs │ │ │ ├── NumberToWordsFeminineTest.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ ├── OrdinalizeTests.cs │ │ │ ├── TimeSpanHumanizeTests.cs │ │ │ └── TimeToClockNotationTests.cs │ │ ├── cs │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── da │ │ │ ├── DateHumanizeTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── de-CH │ │ │ └── NumberToWordsTests.cs │ │ ├── de-LI │ │ │ └── NumberToWordsTests.cs │ │ ├── de │ │ │ ├── Bytes │ │ │ │ ├── ByteRateTests.cs │ │ │ │ ├── ByteSizeExtensionsTests.cs │ │ │ │ ├── ToFullWordsTests.cs │ │ │ │ └── ToStringTests.cs │ │ │ ├── CollectionFormatterTests.cs │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── DateToOrdinalWordsTests.cs │ │ │ ├── HeadingTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ ├── OrdinalizeTests.cs │ │ │ ├── TimeSpanHumanizeTests.cs │ │ │ ├── TimeToClockNotationTests.cs │ │ │ └── TimeUnitToSymbolTests.cs │ │ ├── el │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToOrdinalWordsTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── en-IN │ │ │ └── NumberToWordsTests.cs │ │ ├── en │ │ │ ├── DateToOrdinalWordsTests.cs │ │ │ └── TimeToClockNotationTests.cs │ │ ├── es │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── DateToOrdinalWordsTests.cs │ │ │ ├── NumberToWordsFeminineTest.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ ├── OrdinalizeTests.cs │ │ │ ├── TimeSpanHumanizeTests.cs │ │ │ └── TimeToClockNotationTests.cs │ │ ├── fa │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── fi-FI │ │ │ ├── DateHumanizeTests.cs │ │ │ └── NumberToWordsTests.cs │ │ ├── fil-PH │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── fr-BE │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── fr-CH │ │ │ └── NumberToWordsTests.cs │ │ ├── fr │ │ │ ├── Bytes │ │ │ │ ├── ByteSizeExtensionsTests.cs │ │ │ │ ├── ToFullWordsTests.cs │ │ │ │ └── ToStringTests.cs │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── DateToOrdinalWordsTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ ├── OrdinalizeTests.cs │ │ │ ├── TimeOnlyHumanizeTests.cs │ │ │ ├── TimeSpanHumanizeTests.cs │ │ │ ├── TimeToClockNotationTests.cs │ │ │ └── TimeUnitToSymbolTests.cs │ │ ├── he │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── hr │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── hu │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── hy │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ ├── OrdinalizeTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── id │ │ │ ├── DateHumanizeTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── invariant │ │ │ ├── NumberToWordsTests.cs │ │ │ └── ToQuantityTests.cs │ │ ├── is │ │ │ ├── Bytes │ │ │ │ ├── ByteSizeExtensionsTests.cs │ │ │ │ ├── ToFullWordsTests.cs │ │ │ │ └── ToStringTests.cs │ │ │ ├── CollectionFormatterTests.cs │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── HeadingTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ ├── OrdinalizeTests.cs │ │ │ ├── ResourcesTests.cs │ │ │ ├── TimeOnlyHumanizeTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── it │ │ │ ├── CollectionFormatterTests.cs │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ ├── OrdinalizerTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── ja │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── ko-KR │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── ku │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── lb │ │ │ ├── Bytes │ │ │ │ ├── ByteRateTests.cs │ │ │ │ ├── ByteSizeExtensionsTests.cs │ │ │ │ ├── ToFullWordsTests.cs │ │ │ │ └── ToStringTests.cs │ │ │ ├── CollectionFormatterTests.cs │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── DateToOrdinalWordsTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ ├── OrdinalizeTests.cs │ │ │ ├── TimeOnlyHumanizeTests.cs │ │ │ ├── TimeSpanHumanizeTests.cs │ │ │ └── TimeToClockNotationTests.cs │ │ ├── lt │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── DateToOrdinalWordsTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── lv │ │ │ ├── DateToOrdinalWordsTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── ms-MY │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── mt │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── nb-NO │ │ │ ├── DateHumanizeTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── nb │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── nl │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ ├── OrdinalizeTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── pl │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── pt-BR │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ ├── OrdinalizeTests.cs │ │ │ ├── TimeSpanHumanizeTests.cs │ │ │ └── TimeToClockNotationTests.cs │ │ ├── pt │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ ├── OrdinalizeTests.cs │ │ │ ├── TimeSpanHumanizeTests.cs │ │ │ └── TimeToClockNotationTests.cs │ │ ├── ro-Ro │ │ │ ├── CollectionFormatterTests.cs │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ ├── OrdinalizerTests.cs │ │ │ └── TimeSpanHumanizerTests.cs │ │ ├── ru-RU │ │ │ ├── Bytes │ │ │ │ ├── ByteRateTests.cs │ │ │ │ ├── ByteSizeExtensionsTests.cs │ │ │ │ ├── ToFullWordsTests.cs │ │ │ │ └── ToStringTests.cs │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── HeadingTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ ├── OrdinalizeTests.cs │ │ │ ├── TimeSpanHumanizeTests.cs │ │ │ └── TimeUnitToSymbolTests.cs │ │ ├── sk │ │ │ ├── DateHumanizeTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── sl │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── sr-Latn │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTest.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── sr │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTest.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── sv │ │ │ ├── CollectionFormatterTests.cs │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── ta │ │ │ └── NumberToWordsTests.cs │ │ ├── th-TH │ │ │ ├── DateHumanizeTests.cs │ │ │ └── NumberToWordsTests.cs │ │ ├── tr │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ ├── OrdinalizeTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── uk-UA │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ ├── OrdinalizeTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── uz-Cyrl-UZ │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── uz-Latn-UZ │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── vi │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── zh-CN │ │ │ ├── DateHumanizeTests.cs │ │ │ ├── NumberToWordsTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── zh-HK │ │ │ ├── DateHumanizeTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ ├── zh-Hans │ │ │ ├── DateHumanizeTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ │ └── zh-Hant │ │ │ ├── DateHumanizeTests.cs │ │ │ └── TimeSpanHumanizeTests.cs │ ├── MetricNumeralTests.cs │ ├── ModuleInitializer.cs │ ├── NumberToNumberTests.cs │ ├── NumberToTimeSpanTests.cs │ ├── NumberToWordsTests.cs │ ├── OrdinalizeTests.cs │ ├── ResourceKeyTests.cs │ ├── RomanNumeralTests.cs │ ├── StringDehumanizeTests.cs │ ├── StringHumanizeTests.cs │ ├── TimeOnlyHumanizeTests.cs │ ├── TimeSpanHumanizeTests.cs │ ├── TimeUnitToSymbolTests.cs │ ├── ToQuantityTests.cs │ ├── TransformersTests.cs │ ├── TruncatorTests.cs │ ├── TupleizeTests.cs │ ├── UseCultureAttribute.cs │ ├── WordsToNumberTests.cs │ └── testconfig.json ├── Humanizer.slnx ├── Humanizer.snk ├── Humanizer │ ├── ArticlePrefixSort.cs │ ├── Bytes │ │ ├── ByteRate.cs │ │ ├── ByteSize.cs │ │ ├── ByteSizeExtensions.cs │ │ └── LICENSE │ ├── CasingExtensions.cs │ ├── ClockNotationRounding.cs │ ├── CollectionHumanizeExtensions.cs │ ├── Configuration │ │ ├── CollectionFormatterRegistry.cs │ │ ├── Configurator.cs │ │ ├── DateOnlyToOrdinalWordsConverterRegistry.cs │ │ ├── DateToOrdinalWordsConverterRegistry.cs │ │ ├── FormatterRegistry.cs │ │ ├── LocaliserRegistry.cs │ │ ├── NumberToWordsConverterRegistry.cs │ │ ├── OrdinalizerRegistry.cs │ │ ├── TimeOnlyToClockNotationConvertersRegistry.cs │ │ └── WordsToNumberConverterRegistry.cs │ ├── DateHumanizeExtensions.cs │ ├── DateTimeHumanizeStrategy │ │ ├── DateTimeHumanizeAlgorithms.cs │ │ ├── DefaultDateOnlyHumanizeStrategy.cs │ │ ├── DefaultDateTimeHumanizeStrategy.cs │ │ ├── DefaultDateTimeOffsetHumanizeStrategy.cs │ │ ├── DefaultTimeOnlyHumanizeStrategy.cs │ │ ├── IDateOnlyHumanizeStrategy.cs │ │ ├── IDateTimeHumanizeStrategy.cs │ │ ├── IDateTimeOffsetHumanizeStrategy.cs │ │ ├── ITimeOnlyHumanizeStrategy.cs │ │ ├── PrecisionDateOnlyHumanizeStrategy.cs │ │ ├── PrecisionDateTimeHumanizeStrategy.cs │ │ ├── PrecisionDateTimeOffsetHumanizeStrategy.cs │ │ └── PrecisionTimeOnlyHumanizeStrategy.cs │ ├── DateToOrdinalWordsExtensions.cs │ ├── EnumCache.cs │ ├── EnumDehumanizeExtensions.cs │ ├── EnumHumanizeExtensions.cs │ ├── FluentDate │ │ ├── In.Months.cs │ │ ├── In.Months.tt │ │ ├── In.SomeTimeFrom.cs │ │ ├── In.SomeTimeFrom.tt │ │ ├── In.cs │ │ ├── InDate.Months.cs │ │ ├── InDate.Months.tt │ │ ├── InDate.SomeTimeFrom.cs │ │ ├── InDate.SomeTimeFrom.tt │ │ ├── InDate.cs │ │ ├── On.Days.cs │ │ ├── On.Days.tt │ │ ├── OnDate.Days.cs │ │ ├── OnDate.Days.tt │ │ └── PrepositionsExtensions.cs │ ├── GlobalUsings.cs │ ├── GrammaticalCase.cs │ ├── GrammaticalGender.cs │ ├── HeadingExtensions.cs │ ├── Humanizer.csproj │ ├── Inflections │ │ ├── LICENSE │ │ ├── Vocabularies.cs │ │ └── Vocabulary.cs │ ├── InflectorExtensions.cs │ ├── LetterCasing.cs │ ├── Localisation │ │ ├── CollectionFormatters │ │ │ ├── DefaultCollectionFormatter.cs │ │ │ ├── ICollectionFormatter.cs │ │ │ └── OxfordStyleCollectionFormatter.cs │ │ ├── DataUnit.cs │ │ ├── DateToOrdinalWords │ │ │ ├── CaDateOnlyToOrdinalWordsConverter.cs │ │ │ ├── CaDateToOrdinalWordsConverter.cs │ │ │ ├── DefaultDateOnlyToOrdinalWordConverter.cs │ │ │ ├── DefaultDateToOrdinalWordConverter.cs │ │ │ ├── EsDateOnlyToOrdinalWordsConverter.cs │ │ │ ├── EsDateToOrdinalWordsConverter.cs │ │ │ ├── FrDateOnlyToOrdinalWordsConverter.cs │ │ │ ├── FrDateToOrdinalWordsConverter.cs │ │ │ ├── IDateOnlyToOrdinalWordConverter.cs │ │ │ ├── IDateToOrdinalWordConverter.cs │ │ │ ├── LtDateOnlyToOrdinalWordsConverter.cs │ │ │ ├── LtDateToOrdinalWordsConverter.cs │ │ │ ├── UsDateOnlyToOrdinalWordsConverter.cs │ │ │ └── UsDateToOrdinalWordsConverter.cs │ │ ├── Formatters │ │ │ ├── ArabicFormatter.cs │ │ │ ├── BulgarianFormatter.cs │ │ │ ├── CatalanFormatter.cs │ │ │ ├── CroatianFormatter.cs │ │ │ ├── CzechSlovakPolishFormatter.cs │ │ │ ├── DefaultFormatter.cs │ │ │ ├── FrenchFormatter.cs │ │ │ ├── GermanFormatter.cs │ │ │ ├── HebrewFormatter.cs │ │ │ ├── IFormatter.cs │ │ │ ├── IcelandicFormatter.cs │ │ │ ├── LithuanianFormatter.cs │ │ │ ├── LuxembourgishFormatter.cs │ │ │ ├── MalteseFormatter.cs │ │ │ ├── RomanianFormatter.cs │ │ │ ├── RussianFormatter.cs │ │ │ ├── SerbianFormatter.cs │ │ │ ├── SlovenianFormatter.cs │ │ │ └── UkrainianFormatter.cs │ │ ├── GrammaticalNumber │ │ │ ├── LithuanianNumberForm.cs │ │ │ ├── LithuanianNumberFormDetector.cs │ │ │ ├── RussianGrammaticalNumber.cs │ │ │ └── RussianGrammaticalNumberDetector.cs │ │ ├── NumberToWords │ │ │ ├── AfrikaansNumberToWordsConverter.cs │ │ │ ├── ArabicNumberToWordsConverter.cs │ │ │ ├── ArmenianNumberToWordsConverter.cs │ │ │ ├── AzerbaijaniNumberToWordsConverter.cs │ │ │ ├── BanglaNumberToWordsConverter.cs │ │ │ ├── BrazilianPortugueseNumberToWordsConverter.cs │ │ │ ├── BulgarianNumberToWordsConverter.cs │ │ │ ├── CatalanNumberToWordsConverter.cs │ │ │ ├── CentralKurdishNumberToWordsConverter.cs │ │ │ ├── ChineseNumberToWordsConverter.cs │ │ │ ├── CroatianNumberToWordsConverter.cs │ │ │ ├── CzechNumberToWordsConverter.cs │ │ │ ├── DefaultNumberToWordsConverter.cs │ │ │ ├── DutchNumberToWordsConverter.cs │ │ │ ├── EnglishNumberToWordsConverter.cs │ │ │ ├── FarsiNumberToWordsConverter.cs │ │ │ ├── FinnishNumberToWordsConverter.cs │ │ │ ├── FrenchBelgianNumberToWordsConverter.cs │ │ │ ├── FrenchNumberToWordsConverter.cs │ │ │ ├── FrenchNumberToWordsConverterBase.cs │ │ │ ├── FrenchSwissNumberToWordsConverter.cs │ │ │ ├── GenderedNumberToWordsConverter.cs │ │ │ ├── GenderlessNumberToWordsConverter.cs │ │ │ ├── GermanNumberToWordsConverter.cs │ │ │ ├── GermanNumberToWordsConverterBase.cs │ │ │ ├── GermanSwissLiechtensteinNumberToWordsConverter.cs │ │ │ ├── GreekNumberToWordsConverter.cs │ │ │ ├── HebrewNumberToWordsConverter.cs │ │ │ ├── HungarianNumberToWordsConverter.cs │ │ │ ├── INumberToWordsConverter.cs │ │ │ ├── IcelandicNumberToWordsConverter.cs │ │ │ ├── IndianNumberToWordsConverter.cs │ │ │ ├── Italian │ │ │ │ ├── ItalianCardinalNumberCruncher.cs │ │ │ │ └── ItalianOrdinalNumberCruncher.cs │ │ │ ├── ItalianNumberToWordsConverter.cs │ │ │ ├── JapaneseNumberToWordsConverter.cs │ │ │ ├── KoreanNumberToWordsConverter.cs │ │ │ ├── LatvianNumberToWordsConverter.cs │ │ │ ├── LithuanianNumberToWordsConverter.cs │ │ │ ├── LuxembourgishNumberToWordsConverter.cs │ │ │ ├── MalteseNumberToWordsConvertor.cs │ │ │ ├── NorwegianBokmalNumberToWordsConverter.cs │ │ │ ├── PolishNumberToWordsConverter.cs │ │ │ ├── PortugueseNumberToWordsConverter.cs │ │ │ ├── Romanian │ │ │ │ ├── RomanianCardinalNumberConverter.cs │ │ │ │ └── RomanianOrdinalNumberConverter.cs │ │ │ ├── RomanianNumberToWordsConverter.cs │ │ │ ├── RussianNumberToWordsConverter.cs │ │ │ ├── SerbianCyrlNumberToWordsConverter.cs │ │ │ ├── SerbianNumberToWordsConverter.cs │ │ │ ├── SlovenianNumberToWordsConverter.cs │ │ │ ├── SpanishNumberToWordsConverter.cs │ │ │ ├── SwedishNumberToWordsConverter.cs │ │ │ ├── TamilNumberToWordsConverter.cs │ │ │ ├── ThaiNumberToWordsConverter.cs │ │ │ ├── TurkishNumberToWordConverter.cs │ │ │ ├── UkrainianNumberToWordsConverter.cs │ │ │ ├── UzbekCyrlNumberToWordConverter.cs │ │ │ ├── UzbekLatnNumberToWordConverter.cs │ │ │ └── VietnameseNumberToWordsConverter.cs │ │ ├── Ordinalizers │ │ │ ├── ArmenianOrdinalizer.cs │ │ │ ├── AzerbaijaniOrdinalizer.cs │ │ │ ├── CatalanOrdinalizer.cs │ │ │ ├── DefaultOrdinalizer.cs │ │ │ ├── DutchOrdinalizer.cs │ │ │ ├── EnglishOrdinalizer.cs │ │ │ ├── FrenchOrdinalizer.cs │ │ │ ├── GermanOrdinalizer.cs │ │ │ ├── HungarianOrdinalizer.cs │ │ │ ├── IOrdinalizer.cs │ │ │ ├── IcelandicOrdinalizer.cs │ │ │ ├── ItalianOrdinalizer.cs │ │ │ ├── LuxembourgishOrdinalizer.cs │ │ │ ├── PortugueseOrdinalizer.cs │ │ │ ├── RomanianOrdinalizer.cs │ │ │ ├── RussianOrdinalizer.cs │ │ │ ├── SpanishOrdinalizer.cs │ │ │ ├── TurkishOrdinalizer.cs │ │ │ └── UkrainianOrdinalizer.cs │ │ ├── ResourceKeys.Common.cs │ │ ├── ResourceKeys.DateHumanize.cs │ │ ├── ResourceKeys.TimeSpanHumanize.cs │ │ ├── ResourceKeys.TimeUnitSymbol.cs │ │ ├── Resources.cs │ │ ├── Tense.cs │ │ ├── TimeToClockNotation │ │ │ ├── BrazilianPortugueseTimeOnlyToClockNotationConverter.cs │ │ │ ├── CaTimeOnlyToClockNotationConverter.cs │ │ │ ├── DefaultTimeOnlyToClockNotationConverter.cs │ │ │ ├── EsTimeOnlyToClockNotationConverter.cs │ │ │ ├── FrTimeOnlyToClockNotationConverter.cs │ │ │ ├── GermanTimeOnlyToClockNotationConverter.cs │ │ │ ├── ITimeOnlyToClockNotationConverter.cs │ │ │ ├── LbTimeOnlyToClockNotationConverter.cs │ │ │ └── PortugueseTimeOnlyToClockNotationConverter.cs │ │ ├── TimeUnit.cs │ │ └── WordsToNumber │ │ │ ├── DefaultWordsToNumberConverter.cs │ │ │ ├── EnglishWordsToNumberConverter.cs │ │ │ ├── GenderlessWordsToNumberConverter.cs │ │ │ └── IWordsToNumberConverter.cs │ ├── MetricNumeralExtensions.cs │ ├── MetricNumeralFormats.cs │ ├── NoMatchFoundException.cs │ ├── NumberToNumberExtensions.cs │ ├── NumberToTimeSpanExtensions.cs │ ├── NumberToWordsExtension.cs │ ├── OnNoMatch.cs │ ├── OrdinalizeExtensions.cs │ ├── Plurality.cs │ ├── PolyfillShims.cs │ ├── PolyfillShims2.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.af.resx │ │ ├── Resources.ar.resx │ │ ├── Resources.az.resx │ │ ├── Resources.bg.resx │ │ ├── Resources.bn.resx │ │ ├── Resources.ca.resx │ │ ├── Resources.cs.resx │ │ ├── Resources.da.resx │ │ ├── Resources.de.resx │ │ ├── Resources.el.resx │ │ ├── Resources.es.resx │ │ ├── Resources.fa.resx │ │ ├── Resources.fi.resx │ │ ├── Resources.fil.resx │ │ ├── Resources.fr.resx │ │ ├── Resources.he.resx │ │ ├── Resources.hr.resx │ │ ├── Resources.hu.resx │ │ ├── Resources.hy.resx │ │ ├── Resources.id.resx │ │ ├── Resources.is.resx │ │ ├── Resources.it.resx │ │ ├── Resources.ja.resx │ │ ├── Resources.ko.resx │ │ ├── Resources.ku.resx │ │ ├── Resources.lb.resx │ │ ├── Resources.lt.resx │ │ ├── Resources.lv.resx │ │ ├── Resources.ms.resx │ │ ├── Resources.mt.resx │ │ ├── Resources.nb.resx │ │ ├── Resources.nl.resx │ │ ├── Resources.pl.resx │ │ ├── Resources.pt-BR.resx │ │ ├── Resources.pt.resx │ │ ├── Resources.resx │ │ ├── Resources.ro.resx │ │ ├── Resources.ru.resx │ │ ├── Resources.sk.resx │ │ ├── Resources.sl.resx │ │ ├── Resources.sr-Latn.resx │ │ ├── Resources.sr.resx │ │ ├── Resources.sv.resx │ │ ├── Resources.th.resx │ │ ├── Resources.tr.resx │ │ ├── Resources.uk.resx │ │ ├── Resources.uz-Cyrl-UZ.resx │ │ ├── Resources.uz-Latn-UZ.resx │ │ ├── Resources.vi.resx │ │ ├── Resources.zh-CN.resx │ │ ├── Resources.zh-Hans.resx │ │ └── Resources.zh-Hant.resx │ ├── RomanNumeralExtensions.cs │ ├── StringDehumanizeExtensions.cs │ ├── StringHumanizeExtensions.cs │ ├── TimeOnlyToClockNotationExtensions.cs │ ├── TimeSpanHumanizeExtensions.cs │ ├── TimeUnitToSymbolExtensions.cs │ ├── ToQuantityExtensions.cs │ ├── Transformer │ │ ├── ICulturedStringTransformer.cs │ │ ├── IStringTransformer.cs │ │ ├── To.cs │ │ ├── ToLowerCase.cs │ │ ├── ToSentenceCase.cs │ │ ├── ToTitleCase.cs │ │ └── ToUpperCase.cs │ ├── TruncateExtensions.cs │ ├── TruncateFrom.cs │ ├── Truncation │ │ ├── DynamicLengthAndPreserveWordsTruncator.cs │ │ ├── DynamicNumberOfCharactersAndPreserveWordTruncator.cs │ │ ├── FixedLengthTruncator.cs │ │ ├── FixedNumberOfCharactersTruncator.cs │ │ ├── FixedNumberOfWordsTruncator.cs │ │ ├── ITruncator.cs │ │ └── Truncator.cs │ ├── TupleizeExtensions.cs │ ├── WordForm.cs │ └── WordsToNumberExtension.cs ├── ResXManager.config.xml ├── nuget.config └── scripts │ └── split-benchmark-results.ps1 ├── verify-packages.ps1 └── version.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/.github/codeql/codeql-config.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/.devskim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/.github/workflows/.devskim -------------------------------------------------------------------------------- /.github/workflows/benchmarks-baseline-vs-current.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/.github/workflows/benchmarks-baseline-vs-current.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/devskim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/.github/workflows/devskim.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll-gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/.github/workflows/jekyll-gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/AGENTS.md -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.af.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.af.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.ar.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.ar.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.az.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.az.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.bg.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.bg.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.bn.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.bn.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.ca.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.ca.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.cs.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.cs.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.da.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.da.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.de.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.de.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.el.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.el.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.es.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.es.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.fa.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.fa.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.fi.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.fi.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.fil.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.fil.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.fr.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.fr.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.he.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.he.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.hr.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.hr.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.hu.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.hu.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.hy.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.hy.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.id.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.id.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.is.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.is.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.it.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.it.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.ja.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.ja.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.ko.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.ko.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.ku.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.ku.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.lb.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.lb.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.lt.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.lt.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.lv.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.lv.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.ms.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.ms.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.mt.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.mt.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.nb.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.nb.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.nl.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.nl.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.pl.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.pl.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.pt-BR.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.pt-BR.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.pt.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.pt.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.ro.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.ro.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.ru.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.ru.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.sk.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.sk.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.sl.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.sl.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.sr-Latn.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.sr-Latn.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.sr.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.sr.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.sv.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.sv.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.ta.nuspec.unused: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.ta.nuspec.unused -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.th.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.th.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.tr.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.tr.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.uk.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.uk.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.uz-Cyrl-UZ.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.uz-Cyrl-UZ.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.uz-Latn-UZ.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.uz-Latn-UZ.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.vi.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.vi.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.zh-CN.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.zh-CN.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.zh-Hans.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.zh-Hans.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.Core.zh-Hant.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.Core.zh-Hant.nuspec -------------------------------------------------------------------------------- /NuSpecs/Humanizer.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/NuSpecs/Humanizer.nuspec -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/docs/assets/css/style.css -------------------------------------------------------------------------------- /docs/extensibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/docs/extensibility.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/localization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/docs/localization.md -------------------------------------------------------------------------------- /docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/docs/quick-start.md -------------------------------------------------------------------------------- /docs/string-dehumanization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/docs/string-dehumanization.md -------------------------------------------------------------------------------- /docs/string-humanization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/docs/string-humanization.md -------------------------------------------------------------------------------- /docs/string-truncation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/docs/string-truncation.md -------------------------------------------------------------------------------- /docs/v3-namespace-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/docs/v3-namespace-migration.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/global.json -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/license.txt -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/logo.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/readme.md -------------------------------------------------------------------------------- /release_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/release_notes.md -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/Benchmarks/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/.editorconfig -------------------------------------------------------------------------------- /src/Benchmarks/Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/Benchmarks.csproj -------------------------------------------------------------------------------- /src/Benchmarks/EnglishArticleBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/EnglishArticleBenchmarks.cs -------------------------------------------------------------------------------- /src/Benchmarks/EnglishToWordsBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/EnglishToWordsBenchmark.cs -------------------------------------------------------------------------------- /src/Benchmarks/EnumBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/EnumBenchmarks.cs -------------------------------------------------------------------------------- /src/Benchmarks/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Benchmarks/InflectorBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/InflectorBenchmarks.cs -------------------------------------------------------------------------------- /src/Benchmarks/ItalianNumberBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/ItalianNumberBenchmarks.cs -------------------------------------------------------------------------------- /src/Benchmarks/MetricNumeralBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/MetricNumeralBenchmarks.cs -------------------------------------------------------------------------------- /src/Benchmarks/NumberToWordsBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/NumberToWordsBenchmarks.cs -------------------------------------------------------------------------------- /src/Benchmarks/OrdinalBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/OrdinalBenchmarks.cs -------------------------------------------------------------------------------- /src/Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/Program.cs -------------------------------------------------------------------------------- /src/Benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/README.md -------------------------------------------------------------------------------- /src/Benchmarks/RomanNumeralBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/RomanNumeralBenchmarks.cs -------------------------------------------------------------------------------- /src/Benchmarks/StringHumanizeBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/StringHumanizeBenchmarks.cs -------------------------------------------------------------------------------- /src/Benchmarks/TimeOnlyToClockNotationConverterBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/TimeOnlyToClockNotationConverterBenchmarks.cs -------------------------------------------------------------------------------- /src/Benchmarks/ToQuantityBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/ToQuantityBenchmarks.cs -------------------------------------------------------------------------------- /src/Benchmarks/TransformersBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/TransformersBenchmarks.cs -------------------------------------------------------------------------------- /src/Benchmarks/VocabularyBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/VocabularyBenchmarks.cs -------------------------------------------------------------------------------- /src/Benchmarks/WordsToNumberBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Benchmarks/WordsToNumberBenchmarks.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/Directory.Solution.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Directory.Solution.targets -------------------------------------------------------------------------------- /src/Humanizer.Analyzers.Tests/Humanizer.Analyzers.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Analyzers.Tests/Humanizer.Analyzers.Tests.csproj -------------------------------------------------------------------------------- /src/Humanizer.Analyzers.Tests/NamespaceMigrationAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Analyzers.Tests/NamespaceMigrationAnalyzerTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Analyzers.Tests/NamespaceMigrationCodeFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Analyzers.Tests/NamespaceMigrationCodeFixTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Analyzers.Tests/Verifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Analyzers.Tests/Verifiers.cs -------------------------------------------------------------------------------- /src/Humanizer.Analyzers/AnalyzerReleases.Shipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Analyzers/AnalyzerReleases.Shipped.md -------------------------------------------------------------------------------- /src/Humanizer.Analyzers/AnalyzerReleases.Unshipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Analyzers/AnalyzerReleases.Unshipped.md -------------------------------------------------------------------------------- /src/Humanizer.Analyzers/Humanizer.Analyzers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Analyzers/Humanizer.Analyzers.csproj -------------------------------------------------------------------------------- /src/Humanizer.Analyzers/NamespaceMigrationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Analyzers/NamespaceMigrationAnalyzer.cs -------------------------------------------------------------------------------- /src/Humanizer.Analyzers/NamespaceMigrationCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Analyzers/NamespaceMigrationCodeFixProvider.cs -------------------------------------------------------------------------------- /src/Humanizer.Analyzers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Analyzers/README.md -------------------------------------------------------------------------------- /src/Humanizer.Tests/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/.editorconfig -------------------------------------------------------------------------------- /src/Humanizer.Tests/ApiApprover/PublicApiApprovalTest.Approve_Public_Api.DotNet10_0.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/ApiApprover/PublicApiApprovalTest.Approve_Public_Api.DotNet10_0.verified.txt -------------------------------------------------------------------------------- /src/Humanizer.Tests/ApiApprover/PublicApiApprovalTest.Approve_Public_Api.DotNet8_0.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/ApiApprover/PublicApiApprovalTest.Approve_Public_Api.DotNet8_0.verified.txt -------------------------------------------------------------------------------- /src/Humanizer.Tests/ApiApprover/PublicApiApprovalTest.Approve_Public_Api.Net4_8.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/ApiApprover/PublicApiApprovalTest.Approve_Public_Api.Net4_8.verified.txt -------------------------------------------------------------------------------- /src/Humanizer.Tests/ApiApprover/PublicApiApprovalTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/ApiApprover/PublicApiApprovalTest.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/ArticlePrefixSortTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/ArticlePrefixSortTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/BitFieldEnumHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/BitFieldEnumHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/BitFieldEnumUnderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/BitFieldEnumUnderTest.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Bytes/ArithmeticTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Bytes/ArithmeticTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Bytes/ByteRateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Bytes/ByteRateTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Bytes/ByteSizeExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Bytes/ByteSizeExtensionsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Bytes/ComparingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Bytes/ComparingTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Bytes/CreatingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Bytes/CreatingTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Bytes/ParsingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Bytes/ParsingTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Bytes/ToFullWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Bytes/ToFullWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Bytes/ToStringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Bytes/ToStringTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/CasingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/CasingTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/CollectionHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/CollectionHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/DateHumanize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/DateHumanize.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/DateHumanizeDefaultStrategyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/DateHumanizeDefaultStrategyTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/DateOnlyHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/DateOnlyHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/DateTimeHumanizePrecisionStrategyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/DateTimeHumanizePrecisionStrategyTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/DateTimeOffsetHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/DateTimeOffsetHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/EnumHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/EnumHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/EnumUnderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/EnumUnderTest.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/FluentDate/InDateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/FluentDate/InDateTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/FluentDate/InTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/FluentDate/InTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/FluentDate/OnDateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/FluentDate/OnDateTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/FluentDate/OnTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/FluentDate/OnTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/FluentDate/PrepositionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/FluentDate/PrepositionTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/HeadingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/HeadingTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Humanizer.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Humanizer.Tests.csproj -------------------------------------------------------------------------------- /src/Humanizer.Tests/InflectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/InflectorTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/DefaultFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/DefaultFormatterTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ResourcesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ResourcesTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/af/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/af/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/af/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/af/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/af/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/af/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ar/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ar/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ar/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ar/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ar/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ar/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/az/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/az/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/az/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/az/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/az/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/az/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/bg/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/bg/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/bg/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/bg/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/bg/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/bg/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/bn-BD/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/bn-BD/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/bn-BD/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/bn-BD/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/bn-BD/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/bn-BD/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ca/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ca/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ca/DateToOrdinalWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ca/DateToOrdinalWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ca/NumberToWordsFeminineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ca/NumberToWordsFeminineTest.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ca/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ca/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ca/OrdinalizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ca/OrdinalizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ca/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ca/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ca/TimeToClockNotationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ca/TimeToClockNotationTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/cs/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/cs/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/cs/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/cs/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/cs/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/cs/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/da/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/da/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/da/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/da/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/de-CH/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/de-CH/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/de-LI/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/de-LI/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/de/Bytes/ByteRateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/de/Bytes/ByteRateTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/de/Bytes/ByteSizeExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/de/Bytes/ByteSizeExtensionsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/de/Bytes/ToFullWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/de/Bytes/ToFullWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/de/Bytes/ToStringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/de/Bytes/ToStringTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/de/CollectionFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/de/CollectionFormatterTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/de/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/de/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/de/DateToOrdinalWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/de/DateToOrdinalWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/de/HeadingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/de/HeadingTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/de/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/de/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/de/OrdinalizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/de/OrdinalizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/de/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/de/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/de/TimeToClockNotationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/de/TimeToClockNotationTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/de/TimeUnitToSymbolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/de/TimeUnitToSymbolTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/el/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/el/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/el/NumberToOrdinalWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/el/NumberToOrdinalWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/el/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/el/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/el/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/el/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/en-IN/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/en-IN/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/en/DateToOrdinalWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/en/DateToOrdinalWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/en/TimeToClockNotationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/en/TimeToClockNotationTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/es/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/es/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/es/DateToOrdinalWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/es/DateToOrdinalWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/es/NumberToWordsFeminineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/es/NumberToWordsFeminineTest.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/es/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/es/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/es/OrdinalizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/es/OrdinalizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/es/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/es/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/es/TimeToClockNotationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/es/TimeToClockNotationTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fa/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fa/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fa/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fa/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fa/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fa/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fi-FI/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fi-FI/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fi-FI/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fi-FI/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fil-PH/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fil-PH/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fr-BE/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fr-BE/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fr-BE/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fr-BE/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fr-BE/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fr-BE/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fr-CH/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fr-CH/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fr/Bytes/ByteSizeExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fr/Bytes/ByteSizeExtensionsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fr/Bytes/ToFullWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fr/Bytes/ToFullWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fr/Bytes/ToStringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fr/Bytes/ToStringTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fr/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fr/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fr/DateToOrdinalWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fr/DateToOrdinalWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fr/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fr/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fr/OrdinalizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fr/OrdinalizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fr/TimeOnlyHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fr/TimeOnlyHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fr/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fr/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fr/TimeToClockNotationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fr/TimeToClockNotationTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/fr/TimeUnitToSymbolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/fr/TimeUnitToSymbolTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/he/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/he/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/he/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/he/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/he/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/he/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/hr/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/hr/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/hr/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/hr/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/hr/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/hr/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/hu/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/hu/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/hu/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/hu/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/hu/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/hu/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/hy/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/hy/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/hy/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/hy/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/hy/OrdinalizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/hy/OrdinalizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/hy/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/hy/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/id/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/id/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/id/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/id/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/invariant/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/invariant/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/invariant/ToQuantityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/invariant/ToQuantityTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/is/Bytes/ByteSizeExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/is/Bytes/ByteSizeExtensionsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/is/Bytes/ToFullWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/is/Bytes/ToFullWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/is/Bytes/ToStringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/is/Bytes/ToStringTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/is/CollectionFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/is/CollectionFormatterTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/is/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/is/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/is/HeadingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/is/HeadingTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/is/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/is/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/is/OrdinalizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/is/OrdinalizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/is/ResourcesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/is/ResourcesTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/is/TimeOnlyHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/is/TimeOnlyHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/is/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/is/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/it/CollectionFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/it/CollectionFormatterTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/it/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/it/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/it/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/it/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/it/OrdinalizerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/it/OrdinalizerTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/it/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/it/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ja/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ja/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ja/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ja/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ja/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ja/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ko-KR/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ko-KR/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ko-KR/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ko-KR/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ku/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ku/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ku/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ku/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ku/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ku/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lb/Bytes/ByteRateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lb/Bytes/ByteRateTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lb/Bytes/ByteSizeExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lb/Bytes/ByteSizeExtensionsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lb/Bytes/ToFullWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lb/Bytes/ToFullWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lb/Bytes/ToStringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lb/Bytes/ToStringTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lb/CollectionFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lb/CollectionFormatterTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lb/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lb/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lb/DateToOrdinalWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lb/DateToOrdinalWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lb/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lb/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lb/OrdinalizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lb/OrdinalizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lb/TimeOnlyHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lb/TimeOnlyHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lb/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lb/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lb/TimeToClockNotationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lb/TimeToClockNotationTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lt/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lt/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lt/DateToOrdinalWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lt/DateToOrdinalWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lt/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lt/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lt/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lt/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lv/DateToOrdinalWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lv/DateToOrdinalWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lv/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lv/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/lv/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/lv/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ms-MY/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ms-MY/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/mt/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/mt/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/mt/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/mt/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/mt/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/mt/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/nb-NO/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/nb-NO/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/nb-NO/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/nb-NO/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/nb/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/nb/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/nb/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/nb/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/nb/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/nb/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/nl/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/nl/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/nl/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/nl/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/nl/OrdinalizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/nl/OrdinalizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/nl/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/nl/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/pl/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/pl/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/pl/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/pl/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/pl/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/pl/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/pt-BR/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/pt-BR/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/pt-BR/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/pt-BR/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/pt-BR/OrdinalizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/pt-BR/OrdinalizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/pt-BR/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/pt-BR/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/pt-BR/TimeToClockNotationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/pt-BR/TimeToClockNotationTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/pt/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/pt/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/pt/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/pt/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/pt/OrdinalizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/pt/OrdinalizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/pt/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/pt/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/pt/TimeToClockNotationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/pt/TimeToClockNotationTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ro-Ro/CollectionFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ro-Ro/CollectionFormatterTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ro-Ro/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ro-Ro/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ro-Ro/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ro-Ro/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ro-Ro/OrdinalizerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ro-Ro/OrdinalizerTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ro-Ro/TimeSpanHumanizerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ro-Ro/TimeSpanHumanizerTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ru-RU/Bytes/ByteRateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ru-RU/Bytes/ByteRateTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ru-RU/Bytes/ByteSizeExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ru-RU/Bytes/ByteSizeExtensionsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ru-RU/Bytes/ToFullWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ru-RU/Bytes/ToFullWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ru-RU/Bytes/ToStringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ru-RU/Bytes/ToStringTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ru-RU/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ru-RU/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ru-RU/HeadingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ru-RU/HeadingTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ru-RU/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ru-RU/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ru-RU/OrdinalizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ru-RU/OrdinalizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ru-RU/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ru-RU/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ru-RU/TimeUnitToSymbolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ru-RU/TimeUnitToSymbolTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/sk/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/sk/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/sk/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/sk/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/sl/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/sl/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/sl/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/sl/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/sl/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/sl/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/sr-Latn/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/sr-Latn/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/sr-Latn/NumberToWordsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/sr-Latn/NumberToWordsTest.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/sr-Latn/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/sr-Latn/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/sr/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/sr/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/sr/NumberToWordsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/sr/NumberToWordsTest.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/sr/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/sr/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/sv/CollectionFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/sv/CollectionFormatterTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/sv/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/sv/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/sv/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/sv/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/sv/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/sv/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/ta/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/ta/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/th-TH/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/th-TH/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/th-TH/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/th-TH/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/tr/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/tr/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/tr/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/tr/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/tr/OrdinalizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/tr/OrdinalizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/tr/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/tr/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/uk-UA/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/uk-UA/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/uk-UA/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/uk-UA/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/uk-UA/OrdinalizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/uk-UA/OrdinalizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/uk-UA/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/uk-UA/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/uz-Cyrl-UZ/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/uz-Cyrl-UZ/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/uz-Cyrl-UZ/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/uz-Cyrl-UZ/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/uz-Cyrl-UZ/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/uz-Cyrl-UZ/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/uz-Latn-UZ/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/uz-Latn-UZ/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/uz-Latn-UZ/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/uz-Latn-UZ/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/uz-Latn-UZ/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/uz-Latn-UZ/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/vi/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/vi/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/vi/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/vi/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/vi/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/vi/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/zh-CN/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/zh-CN/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/zh-CN/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/zh-CN/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/zh-CN/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/zh-CN/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/zh-HK/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/zh-HK/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/zh-HK/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/zh-HK/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/zh-Hans/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/zh-Hans/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/zh-Hans/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/zh-Hans/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/zh-Hant/DateHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/zh-Hant/DateHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/Localisation/zh-Hant/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/Localisation/zh-Hant/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/MetricNumeralTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/MetricNumeralTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/NumberToNumberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/NumberToNumberTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/NumberToTimeSpanTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/NumberToTimeSpanTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/NumberToWordsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/NumberToWordsTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/OrdinalizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/OrdinalizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/ResourceKeyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/ResourceKeyTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/RomanNumeralTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/RomanNumeralTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/StringDehumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/StringDehumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/StringHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/StringHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/TimeOnlyHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/TimeOnlyHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/TimeSpanHumanizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/TimeSpanHumanizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/TimeUnitToSymbolTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/TimeUnitToSymbolTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/ToQuantityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/ToQuantityTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/TransformersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/TransformersTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/TruncatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/TruncatorTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/TupleizeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/TupleizeTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/UseCultureAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/UseCultureAttribute.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/WordsToNumberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/WordsToNumberTests.cs -------------------------------------------------------------------------------- /src/Humanizer.Tests/testconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.Tests/testconfig.json -------------------------------------------------------------------------------- /src/Humanizer.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.slnx -------------------------------------------------------------------------------- /src/Humanizer.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer.snk -------------------------------------------------------------------------------- /src/Humanizer/ArticlePrefixSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/ArticlePrefixSort.cs -------------------------------------------------------------------------------- /src/Humanizer/Bytes/ByteRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Bytes/ByteRate.cs -------------------------------------------------------------------------------- /src/Humanizer/Bytes/ByteSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Bytes/ByteSize.cs -------------------------------------------------------------------------------- /src/Humanizer/Bytes/ByteSizeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Bytes/ByteSizeExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/Bytes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Bytes/LICENSE -------------------------------------------------------------------------------- /src/Humanizer/CasingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/CasingExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/ClockNotationRounding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/ClockNotationRounding.cs -------------------------------------------------------------------------------- /src/Humanizer/CollectionHumanizeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/CollectionHumanizeExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/Configuration/CollectionFormatterRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Configuration/CollectionFormatterRegistry.cs -------------------------------------------------------------------------------- /src/Humanizer/Configuration/Configurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Configuration/Configurator.cs -------------------------------------------------------------------------------- /src/Humanizer/Configuration/DateOnlyToOrdinalWordsConverterRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Configuration/DateOnlyToOrdinalWordsConverterRegistry.cs -------------------------------------------------------------------------------- /src/Humanizer/Configuration/DateToOrdinalWordsConverterRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Configuration/DateToOrdinalWordsConverterRegistry.cs -------------------------------------------------------------------------------- /src/Humanizer/Configuration/FormatterRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Configuration/FormatterRegistry.cs -------------------------------------------------------------------------------- /src/Humanizer/Configuration/LocaliserRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Configuration/LocaliserRegistry.cs -------------------------------------------------------------------------------- /src/Humanizer/Configuration/NumberToWordsConverterRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Configuration/NumberToWordsConverterRegistry.cs -------------------------------------------------------------------------------- /src/Humanizer/Configuration/OrdinalizerRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Configuration/OrdinalizerRegistry.cs -------------------------------------------------------------------------------- /src/Humanizer/Configuration/TimeOnlyToClockNotationConvertersRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Configuration/TimeOnlyToClockNotationConvertersRegistry.cs -------------------------------------------------------------------------------- /src/Humanizer/Configuration/WordsToNumberConverterRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Configuration/WordsToNumberConverterRegistry.cs -------------------------------------------------------------------------------- /src/Humanizer/DateHumanizeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/DateHumanizeExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/DateTimeHumanizeStrategy/DateTimeHumanizeAlgorithms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/DateTimeHumanizeStrategy/DateTimeHumanizeAlgorithms.cs -------------------------------------------------------------------------------- /src/Humanizer/DateTimeHumanizeStrategy/DefaultDateOnlyHumanizeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/DateTimeHumanizeStrategy/DefaultDateOnlyHumanizeStrategy.cs -------------------------------------------------------------------------------- /src/Humanizer/DateTimeHumanizeStrategy/DefaultDateTimeHumanizeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/DateTimeHumanizeStrategy/DefaultDateTimeHumanizeStrategy.cs -------------------------------------------------------------------------------- /src/Humanizer/DateTimeHumanizeStrategy/DefaultDateTimeOffsetHumanizeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/DateTimeHumanizeStrategy/DefaultDateTimeOffsetHumanizeStrategy.cs -------------------------------------------------------------------------------- /src/Humanizer/DateTimeHumanizeStrategy/DefaultTimeOnlyHumanizeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/DateTimeHumanizeStrategy/DefaultTimeOnlyHumanizeStrategy.cs -------------------------------------------------------------------------------- /src/Humanizer/DateTimeHumanizeStrategy/IDateOnlyHumanizeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/DateTimeHumanizeStrategy/IDateOnlyHumanizeStrategy.cs -------------------------------------------------------------------------------- /src/Humanizer/DateTimeHumanizeStrategy/IDateTimeHumanizeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/DateTimeHumanizeStrategy/IDateTimeHumanizeStrategy.cs -------------------------------------------------------------------------------- /src/Humanizer/DateTimeHumanizeStrategy/IDateTimeOffsetHumanizeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/DateTimeHumanizeStrategy/IDateTimeOffsetHumanizeStrategy.cs -------------------------------------------------------------------------------- /src/Humanizer/DateTimeHumanizeStrategy/ITimeOnlyHumanizeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/DateTimeHumanizeStrategy/ITimeOnlyHumanizeStrategy.cs -------------------------------------------------------------------------------- /src/Humanizer/DateTimeHumanizeStrategy/PrecisionDateOnlyHumanizeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/DateTimeHumanizeStrategy/PrecisionDateOnlyHumanizeStrategy.cs -------------------------------------------------------------------------------- /src/Humanizer/DateTimeHumanizeStrategy/PrecisionDateTimeHumanizeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/DateTimeHumanizeStrategy/PrecisionDateTimeHumanizeStrategy.cs -------------------------------------------------------------------------------- /src/Humanizer/DateTimeHumanizeStrategy/PrecisionDateTimeOffsetHumanizeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/DateTimeHumanizeStrategy/PrecisionDateTimeOffsetHumanizeStrategy.cs -------------------------------------------------------------------------------- /src/Humanizer/DateTimeHumanizeStrategy/PrecisionTimeOnlyHumanizeStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/DateTimeHumanizeStrategy/PrecisionTimeOnlyHumanizeStrategy.cs -------------------------------------------------------------------------------- /src/Humanizer/DateToOrdinalWordsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/DateToOrdinalWordsExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/EnumCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/EnumCache.cs -------------------------------------------------------------------------------- /src/Humanizer/EnumDehumanizeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/EnumDehumanizeExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/EnumHumanizeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/EnumHumanizeExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/FluentDate/In.Months.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/FluentDate/In.Months.cs -------------------------------------------------------------------------------- /src/Humanizer/FluentDate/In.Months.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/FluentDate/In.Months.tt -------------------------------------------------------------------------------- /src/Humanizer/FluentDate/In.SomeTimeFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/FluentDate/In.SomeTimeFrom.cs -------------------------------------------------------------------------------- /src/Humanizer/FluentDate/In.SomeTimeFrom.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/FluentDate/In.SomeTimeFrom.tt -------------------------------------------------------------------------------- /src/Humanizer/FluentDate/In.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/FluentDate/In.cs -------------------------------------------------------------------------------- /src/Humanizer/FluentDate/InDate.Months.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/FluentDate/InDate.Months.cs -------------------------------------------------------------------------------- /src/Humanizer/FluentDate/InDate.Months.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/FluentDate/InDate.Months.tt -------------------------------------------------------------------------------- /src/Humanizer/FluentDate/InDate.SomeTimeFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/FluentDate/InDate.SomeTimeFrom.cs -------------------------------------------------------------------------------- /src/Humanizer/FluentDate/InDate.SomeTimeFrom.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/FluentDate/InDate.SomeTimeFrom.tt -------------------------------------------------------------------------------- /src/Humanizer/FluentDate/InDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/FluentDate/InDate.cs -------------------------------------------------------------------------------- /src/Humanizer/FluentDate/On.Days.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/FluentDate/On.Days.cs -------------------------------------------------------------------------------- /src/Humanizer/FluentDate/On.Days.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/FluentDate/On.Days.tt -------------------------------------------------------------------------------- /src/Humanizer/FluentDate/OnDate.Days.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/FluentDate/OnDate.Days.cs -------------------------------------------------------------------------------- /src/Humanizer/FluentDate/OnDate.Days.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/FluentDate/OnDate.Days.tt -------------------------------------------------------------------------------- /src/Humanizer/FluentDate/PrepositionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/FluentDate/PrepositionsExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Humanizer/GrammaticalCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/GrammaticalCase.cs -------------------------------------------------------------------------------- /src/Humanizer/GrammaticalGender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/GrammaticalGender.cs -------------------------------------------------------------------------------- /src/Humanizer/HeadingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/HeadingExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/Humanizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Humanizer.csproj -------------------------------------------------------------------------------- /src/Humanizer/Inflections/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Inflections/LICENSE -------------------------------------------------------------------------------- /src/Humanizer/Inflections/Vocabularies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Inflections/Vocabularies.cs -------------------------------------------------------------------------------- /src/Humanizer/Inflections/Vocabulary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Inflections/Vocabulary.cs -------------------------------------------------------------------------------- /src/Humanizer/InflectorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/InflectorExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/LetterCasing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/LetterCasing.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/CollectionFormatters/DefaultCollectionFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/CollectionFormatters/DefaultCollectionFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/CollectionFormatters/ICollectionFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/CollectionFormatters/ICollectionFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/CollectionFormatters/OxfordStyleCollectionFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/CollectionFormatters/OxfordStyleCollectionFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/DataUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/DataUnit.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/DateToOrdinalWords/CaDateOnlyToOrdinalWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/DateToOrdinalWords/CaDateOnlyToOrdinalWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/DateToOrdinalWords/CaDateToOrdinalWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/DateToOrdinalWords/CaDateToOrdinalWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/DateToOrdinalWords/DefaultDateOnlyToOrdinalWordConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/DateToOrdinalWords/DefaultDateOnlyToOrdinalWordConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/DateToOrdinalWords/DefaultDateToOrdinalWordConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/DateToOrdinalWords/DefaultDateToOrdinalWordConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/DateToOrdinalWords/EsDateOnlyToOrdinalWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/DateToOrdinalWords/EsDateOnlyToOrdinalWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/DateToOrdinalWords/EsDateToOrdinalWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/DateToOrdinalWords/EsDateToOrdinalWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/DateToOrdinalWords/FrDateOnlyToOrdinalWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/DateToOrdinalWords/FrDateOnlyToOrdinalWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/DateToOrdinalWords/FrDateToOrdinalWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/DateToOrdinalWords/FrDateToOrdinalWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/DateToOrdinalWords/IDateOnlyToOrdinalWordConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/DateToOrdinalWords/IDateOnlyToOrdinalWordConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/DateToOrdinalWords/IDateToOrdinalWordConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/DateToOrdinalWords/IDateToOrdinalWordConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/DateToOrdinalWords/LtDateOnlyToOrdinalWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/DateToOrdinalWords/LtDateOnlyToOrdinalWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/DateToOrdinalWords/LtDateToOrdinalWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/DateToOrdinalWords/LtDateToOrdinalWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/DateToOrdinalWords/UsDateOnlyToOrdinalWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/DateToOrdinalWords/UsDateOnlyToOrdinalWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/DateToOrdinalWords/UsDateToOrdinalWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/DateToOrdinalWords/UsDateToOrdinalWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/ArabicFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/ArabicFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/BulgarianFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/BulgarianFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/CatalanFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/CatalanFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/CroatianFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/CroatianFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/CzechSlovakPolishFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/CzechSlovakPolishFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/DefaultFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/DefaultFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/FrenchFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/FrenchFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/GermanFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/GermanFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/HebrewFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/HebrewFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/IFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/IFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/IcelandicFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/IcelandicFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/LithuanianFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/LithuanianFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/LuxembourgishFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/LuxembourgishFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/MalteseFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/MalteseFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/RomanianFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/RomanianFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/RussianFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/RussianFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/SerbianFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/SerbianFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/SlovenianFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/SlovenianFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Formatters/UkrainianFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Formatters/UkrainianFormatter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/GrammaticalNumber/LithuanianNumberForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/GrammaticalNumber/LithuanianNumberForm.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/GrammaticalNumber/LithuanianNumberFormDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/GrammaticalNumber/LithuanianNumberFormDetector.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/GrammaticalNumber/RussianGrammaticalNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/GrammaticalNumber/RussianGrammaticalNumber.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/GrammaticalNumber/RussianGrammaticalNumberDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/GrammaticalNumber/RussianGrammaticalNumberDetector.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/AfrikaansNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/AfrikaansNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/ArabicNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/ArabicNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/ArmenianNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/ArmenianNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/AzerbaijaniNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/AzerbaijaniNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/BanglaNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/BanglaNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/BrazilianPortugueseNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/BrazilianPortugueseNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/BulgarianNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/BulgarianNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/CatalanNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/CatalanNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/CentralKurdishNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/CentralKurdishNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/ChineseNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/ChineseNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/CroatianNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/CroatianNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/CzechNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/CzechNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/DefaultNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/DefaultNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/DutchNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/DutchNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/EnglishNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/EnglishNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/FarsiNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/FarsiNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/FinnishNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/FinnishNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/FrenchBelgianNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/FrenchBelgianNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/FrenchNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/FrenchNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/FrenchNumberToWordsConverterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/FrenchNumberToWordsConverterBase.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/FrenchSwissNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/FrenchSwissNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/GenderedNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/GenderedNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/GenderlessNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/GenderlessNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/GermanNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/GermanNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/GermanNumberToWordsConverterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/GermanNumberToWordsConverterBase.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/GermanSwissLiechtensteinNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/GermanSwissLiechtensteinNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/GreekNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/GreekNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/HebrewNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/HebrewNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/HungarianNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/HungarianNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/INumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/INumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/IcelandicNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/IcelandicNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/IndianNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/IndianNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/Italian/ItalianCardinalNumberCruncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/Italian/ItalianCardinalNumberCruncher.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/Italian/ItalianOrdinalNumberCruncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/Italian/ItalianOrdinalNumberCruncher.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/ItalianNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/ItalianNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/JapaneseNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/JapaneseNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/KoreanNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/KoreanNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/LatvianNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/LatvianNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/LithuanianNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/LithuanianNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/LuxembourgishNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/LuxembourgishNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/MalteseNumberToWordsConvertor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/MalteseNumberToWordsConvertor.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/NorwegianBokmalNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/NorwegianBokmalNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/PolishNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/PolishNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/PortugueseNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/PortugueseNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/Romanian/RomanianCardinalNumberConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/Romanian/RomanianCardinalNumberConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/Romanian/RomanianOrdinalNumberConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/Romanian/RomanianOrdinalNumberConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/RomanianNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/RomanianNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/RussianNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/RussianNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/SerbianCyrlNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/SerbianCyrlNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/SerbianNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/SerbianNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/SlovenianNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/SlovenianNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/SpanishNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/SpanishNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/SwedishNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/SwedishNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/TamilNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/TamilNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/ThaiNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/ThaiNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/TurkishNumberToWordConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/TurkishNumberToWordConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/UkrainianNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/UkrainianNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/UzbekCyrlNumberToWordConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/UzbekCyrlNumberToWordConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/UzbekLatnNumberToWordConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/UzbekLatnNumberToWordConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/NumberToWords/VietnameseNumberToWordsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/NumberToWords/VietnameseNumberToWordsConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/ArmenianOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/ArmenianOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/AzerbaijaniOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/AzerbaijaniOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/CatalanOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/CatalanOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/DefaultOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/DefaultOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/DutchOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/DutchOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/EnglishOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/EnglishOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/FrenchOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/FrenchOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/GermanOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/GermanOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/HungarianOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/HungarianOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/IOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/IOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/IcelandicOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/IcelandicOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/ItalianOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/ItalianOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/LuxembourgishOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/LuxembourgishOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/PortugueseOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/PortugueseOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/RomanianOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/RomanianOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/RussianOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/RussianOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/SpanishOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/SpanishOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/TurkishOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/TurkishOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Ordinalizers/UkrainianOrdinalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Ordinalizers/UkrainianOrdinalizer.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/ResourceKeys.Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/ResourceKeys.Common.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/ResourceKeys.DateHumanize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/ResourceKeys.DateHumanize.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/ResourceKeys.TimeSpanHumanize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/ResourceKeys.TimeSpanHumanize.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/ResourceKeys.TimeUnitSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/ResourceKeys.TimeUnitSymbol.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Resources.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/Tense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/Tense.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/TimeToClockNotation/BrazilianPortugueseTimeOnlyToClockNotationConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/TimeToClockNotation/BrazilianPortugueseTimeOnlyToClockNotationConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/TimeToClockNotation/CaTimeOnlyToClockNotationConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/TimeToClockNotation/CaTimeOnlyToClockNotationConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/TimeToClockNotation/DefaultTimeOnlyToClockNotationConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/TimeToClockNotation/DefaultTimeOnlyToClockNotationConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/TimeToClockNotation/EsTimeOnlyToClockNotationConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/TimeToClockNotation/EsTimeOnlyToClockNotationConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/TimeToClockNotation/FrTimeOnlyToClockNotationConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/TimeToClockNotation/FrTimeOnlyToClockNotationConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/TimeToClockNotation/GermanTimeOnlyToClockNotationConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/TimeToClockNotation/GermanTimeOnlyToClockNotationConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/TimeToClockNotation/ITimeOnlyToClockNotationConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/TimeToClockNotation/ITimeOnlyToClockNotationConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/TimeToClockNotation/LbTimeOnlyToClockNotationConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/TimeToClockNotation/LbTimeOnlyToClockNotationConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/TimeToClockNotation/PortugueseTimeOnlyToClockNotationConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/TimeToClockNotation/PortugueseTimeOnlyToClockNotationConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/TimeUnit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/TimeUnit.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/WordsToNumber/DefaultWordsToNumberConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/WordsToNumber/DefaultWordsToNumberConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/WordsToNumber/EnglishWordsToNumberConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/WordsToNumber/EnglishWordsToNumberConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/WordsToNumber/GenderlessWordsToNumberConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/WordsToNumber/GenderlessWordsToNumberConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/Localisation/WordsToNumber/IWordsToNumberConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Localisation/WordsToNumber/IWordsToNumberConverter.cs -------------------------------------------------------------------------------- /src/Humanizer/MetricNumeralExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/MetricNumeralExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/MetricNumeralFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/MetricNumeralFormats.cs -------------------------------------------------------------------------------- /src/Humanizer/NoMatchFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/NoMatchFoundException.cs -------------------------------------------------------------------------------- /src/Humanizer/NumberToNumberExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/NumberToNumberExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/NumberToTimeSpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/NumberToTimeSpanExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/NumberToWordsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/NumberToWordsExtension.cs -------------------------------------------------------------------------------- /src/Humanizer/OnNoMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/OnNoMatch.cs -------------------------------------------------------------------------------- /src/Humanizer/OrdinalizeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/OrdinalizeExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/Plurality.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Plurality.cs -------------------------------------------------------------------------------- /src/Humanizer/PolyfillShims.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/PolyfillShims.cs -------------------------------------------------------------------------------- /src/Humanizer/PolyfillShims2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/PolyfillShims2.cs -------------------------------------------------------------------------------- /src/Humanizer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.af.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.af.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.ar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.ar.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.az.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.az.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.bg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.bg.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.bn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.bn.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.ca.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.ca.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.cs.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.cs.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.da.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.da.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.de.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.el.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.el.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.es.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.es.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.fa.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.fa.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.fi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.fi.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.fil.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.fil.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.fr.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.he.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.he.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.hr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.hr.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.hu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.hu.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.hy.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.hy.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.id.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.id.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.is.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.is.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.it.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.ja.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.ko.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.ku.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.ku.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.lb.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.lb.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.lt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.lt.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.lv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.lv.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.ms.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.ms.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.mt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.mt.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.nb.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.nb.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.nl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.nl.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.pl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.pl.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.pt-BR.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.pt.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.ro.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.ro.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.ru.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.sk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.sk.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.sl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.sl.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.sr-Latn.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.sr-Latn.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.sr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.sr.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.sv.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.sv.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.th.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.th.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.tr.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.uk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.uk.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.uz-Cyrl-UZ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.uz-Cyrl-UZ.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.uz-Latn-UZ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.uz-Latn-UZ.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.vi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.vi.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.zh-CN.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.zh-Hans.resx -------------------------------------------------------------------------------- /src/Humanizer/Properties/Resources.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Properties/Resources.zh-Hant.resx -------------------------------------------------------------------------------- /src/Humanizer/RomanNumeralExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/RomanNumeralExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/StringDehumanizeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/StringDehumanizeExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/StringHumanizeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/StringHumanizeExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/TimeOnlyToClockNotationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/TimeOnlyToClockNotationExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/TimeSpanHumanizeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/TimeSpanHumanizeExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/TimeUnitToSymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/TimeUnitToSymbolExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/ToQuantityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/ToQuantityExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/Transformer/ICulturedStringTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Transformer/ICulturedStringTransformer.cs -------------------------------------------------------------------------------- /src/Humanizer/Transformer/IStringTransformer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Transformer/IStringTransformer.cs -------------------------------------------------------------------------------- /src/Humanizer/Transformer/To.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Transformer/To.cs -------------------------------------------------------------------------------- /src/Humanizer/Transformer/ToLowerCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Transformer/ToLowerCase.cs -------------------------------------------------------------------------------- /src/Humanizer/Transformer/ToSentenceCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Transformer/ToSentenceCase.cs -------------------------------------------------------------------------------- /src/Humanizer/Transformer/ToTitleCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Transformer/ToTitleCase.cs -------------------------------------------------------------------------------- /src/Humanizer/Transformer/ToUpperCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Transformer/ToUpperCase.cs -------------------------------------------------------------------------------- /src/Humanizer/TruncateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/TruncateExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/TruncateFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/TruncateFrom.cs -------------------------------------------------------------------------------- /src/Humanizer/Truncation/DynamicLengthAndPreserveWordsTruncator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Truncation/DynamicLengthAndPreserveWordsTruncator.cs -------------------------------------------------------------------------------- /src/Humanizer/Truncation/DynamicNumberOfCharactersAndPreserveWordTruncator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Truncation/DynamicNumberOfCharactersAndPreserveWordTruncator.cs -------------------------------------------------------------------------------- /src/Humanizer/Truncation/FixedLengthTruncator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Truncation/FixedLengthTruncator.cs -------------------------------------------------------------------------------- /src/Humanizer/Truncation/FixedNumberOfCharactersTruncator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Truncation/FixedNumberOfCharactersTruncator.cs -------------------------------------------------------------------------------- /src/Humanizer/Truncation/FixedNumberOfWordsTruncator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Truncation/FixedNumberOfWordsTruncator.cs -------------------------------------------------------------------------------- /src/Humanizer/Truncation/ITruncator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Truncation/ITruncator.cs -------------------------------------------------------------------------------- /src/Humanizer/Truncation/Truncator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/Truncation/Truncator.cs -------------------------------------------------------------------------------- /src/Humanizer/TupleizeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/TupleizeExtensions.cs -------------------------------------------------------------------------------- /src/Humanizer/WordForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/WordForm.cs -------------------------------------------------------------------------------- /src/Humanizer/WordsToNumberExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/Humanizer/WordsToNumberExtension.cs -------------------------------------------------------------------------------- /src/ResXManager.config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/ResXManager.config.xml -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/nuget.config -------------------------------------------------------------------------------- /src/scripts/split-benchmark-results.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/src/scripts/split-benchmark-results.ps1 -------------------------------------------------------------------------------- /verify-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/verify-packages.ps1 -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Humanizr/Humanizer/HEAD/version.json --------------------------------------------------------------------------------