diff --git a/src/DateTimeExtensions/NaturalText/CultureStrategies/IT_ITNaturalTimeStrategy.cs b/src/DateTimeExtensions/NaturalText/CultureStrategies/IT_ITNaturalTimeStrategy.cs index 6d0461c..d7c762f 100644 --- a/src/DateTimeExtensions/NaturalText/CultureStrategies/IT_ITNaturalTimeStrategy.cs +++ b/src/DateTimeExtensions/NaturalText/CultureStrategies/IT_ITNaturalTimeStrategy.cs @@ -1,7 +1,7 @@ #region License // -// Copyright (c) 2011-2012, João Matos Silva +// Copyright (c) 2011-2012, Jo�o Matos Silva // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -60,11 +60,11 @@ protected override string Pluralize(string text, int value) // referring to hours if (text.EndsWith("a")) { - return text + "e"; + return text.Remove(text.Length -1, 1) + "e"; } // referring to years, months, days, minutes and seconds - return text + "i"; + return text.Remove(text.Length -1, 1) + "i"; } } } \ No newline at end of file