diff --git a/src/components/Blazor/CalendarResourceStrings.cs b/src/components/Blazor/CalendarResourceStrings.cs
index 770285b8..cb4cc0cf 100644
--- a/src/components/Blazor/CalendarResourceStrings.cs
+++ b/src/components/Blazor/CalendarResourceStrings.cs
@@ -2,6 +2,10 @@
namespace IgniteUI.Blazor.Controls
{
+ ///
+ /// The localized strings used by the calendar views, exposed through the ResourceStrings
+ /// property of and .
+ ///
public partial class IgbCalendarResourceStrings : BaseRendererElement
{
public override string Type { get { return "WebCalendarResourceStrings"; } }
@@ -17,6 +21,10 @@ public IgbCalendarResourceStrings() : base()
private string _selectMonth;
partial void OnSelectMonthChanging(ref string newValue);
+
+ ///
+ /// Text for the accessible label of the header button that switches the calendar to the months view.
+ ///
[Parameter]
public string SelectMonth
{
@@ -34,6 +42,10 @@ public string SelectMonth
private string _selectYear;
partial void OnSelectYearChanging(ref string newValue);
+
+ ///
+ /// Text for the accessible label of the header button that switches the calendar to the years view.
+ ///
[Parameter]
public string SelectYear
{
@@ -51,6 +63,11 @@ public string SelectYear
private string _selectDate;
partial void OnSelectDateChanging(ref string newValue);
+
+ ///
+ /// Title shown in the calendar header until a date is selected, in single selection mode.
+ /// Defaults to Select Date.
+ ///
[Parameter]
public string SelectDate
{
@@ -68,6 +85,11 @@ public string SelectDate
private string _selectRange;
partial void OnSelectRangeChanging(ref string newValue);
+
+ ///
+ /// Title shown in the calendar header until a range is selected, in range selection mode.
+ /// Defaults to Select Range.
+ ///
[Parameter]
public string SelectRange
{
@@ -85,6 +107,13 @@ public string SelectRange
private string _selectedDate;
partial void OnSelectedDateChanging(ref string newValue);
+
+ ///
+ /// The label for the currently selected date.
+ ///
+ ///
+ /// Not mapped to any string in the current localization pipeline and has no effect.
+ ///
[Parameter]
public string SelectedDate
{
@@ -102,6 +131,11 @@ public string SelectedDate
private string _startDate;
partial void OnStartDateChanging(ref string newValue);
+
+ ///
+ /// Placeholder shown in the calendar header in place of the range start date until one is
+ /// selected. Defaults to Start.
+ ///
[Parameter]
public string StartDate
{
@@ -119,6 +153,11 @@ public string StartDate
private string _endDate;
partial void OnEndDateChanging(ref string newValue);
+
+ ///
+ /// Placeholder shown in the calendar header in place of the range end date until one is
+ /// selected. Defaults to End.
+ ///
[Parameter]
public string EndDate
{
@@ -136,6 +175,11 @@ public string EndDate
private string _previousMonth;
partial void OnPreviousMonthChanging(ref string newValue);
+
+ ///
+ /// The label of the navigation button that moves the days view one month back.
+ /// Defaults to Previous Month.
+ ///
[Parameter]
public string PreviousMonth
{
@@ -153,6 +197,11 @@ public string PreviousMonth
private string _nextMonth;
partial void OnNextMonthChanging(ref string newValue);
+
+ ///
+ /// The label of the navigation button that moves the days view one month forward.
+ /// Defaults to Next Month.
+ ///
[Parameter]
public string NextMonth
{
@@ -170,6 +219,11 @@ public string NextMonth
private string _previousYear;
partial void OnPreviousYearChanging(ref string newValue);
+
+ ///
+ /// The label of the navigation button that moves the months view one year back.
+ /// Defaults to Previous Year.
+ ///
[Parameter]
public string PreviousYear
{
@@ -187,6 +241,11 @@ public string PreviousYear
private string _nextYear;
partial void OnNextYearChanging(ref string newValue);
+
+ ///
+ /// The label of the navigation button that moves the months view one year forward.
+ /// Defaults to Next Year.
+ ///
[Parameter]
public string NextYear
{
@@ -204,6 +263,11 @@ public string NextYear
private string _previousYears;
partial void OnPreviousYearsChanging(ref string newValue);
+
+ ///
+ /// The label of the navigation button that moves the years view one page back.
+ /// Defaults to Previous {0} Years, where {0} is the number of years on a page.
+ ///
[Parameter]
public string PreviousYears
{
@@ -221,6 +285,11 @@ public string PreviousYears
private string _nextYears;
partial void OnNextYearsChanging(ref string newValue);
+
+ ///
+ /// The label of the navigation button that moves the years view one page forward.
+ /// Defaults to Next {0} Years, where {0} is the number of years on a page.
+ ///
[Parameter]
public string NextYears
{
@@ -238,6 +307,10 @@ public string NextYears
private string _weekLabel;
partial void OnWeekLabelChanging(ref string newValue);
+
+ ///
+ /// The header of the week numbers column in the days view. Defaults to Wk.
+ ///
[Parameter]
public string WeekLabel
{