Skip to content

Commit

Permalink
Update ExpressionDescriptor.cs (#171)
Browse files Browse the repository at this point in the history
Added support for Czech language
  • Loading branch information
Betacart authored Mar 18, 2024
1 parent fd66e8e commit a43f882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ExpressionDescriptor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace CronExpressionDescriptor
public class ExpressionDescriptor
{
private readonly char[] m_specialCharacters = new char[] { '/', '-', ',', '*' };
private readonly string[] m_24hourTimeFormatTwoLetterISOLanguageName = new string[] { "ru", "uk", "de", "it", "tr", "pl", "ro", "da", "sl", "fi", "sv", "nb", "hu" };
private readonly string[] m_24hourTimeFormatTwoLetterISOLanguageName = new string[] { "ru", "uk", "de", "it", "tr", "pl", "ro", "da", "sl", "fi", "sv", "nb", "hu", "cs" };

private string m_expression;
private Options m_options;
Expand Down

0 comments on commit a43f882

Please sign in to comment.