- Adding not about search feature
This commit is contained in:
parent
81eafe1219
commit
82469cff70
@ -76,6 +76,8 @@ namespace TelegramBotBase.Controls
|
|||||||
|
|
||||||
public String NoItemsLabel = Localizations.Default.Language["ButtonGrid_NoItems"];
|
public String NoItemsLabel = Localizations.Default.Language["ButtonGrid_NoItems"];
|
||||||
|
|
||||||
|
public String SearchLabel = Localizations.Default.Language["ButtonGrid_SearchFeature"];
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Layout of the buttons which should be displayed always on top.
|
/// Layout of the buttons which should be displayed always on top.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -179,6 +181,12 @@ namespace TelegramBotBase.Controls
|
|||||||
{
|
{
|
||||||
if (result.MessageText.StartsWith("🔍"))
|
if (result.MessageText.StartsWith("🔍"))
|
||||||
{
|
{
|
||||||
|
//Sent note about searching
|
||||||
|
if (this.SearchQuery == null)
|
||||||
|
{
|
||||||
|
await this.Device.Send(this.SearchLabel);
|
||||||
|
}
|
||||||
|
|
||||||
this.SearchQuery = null;
|
this.SearchQuery = null;
|
||||||
this.Updated();
|
this.Updated();
|
||||||
return;
|
return;
|
||||||
|
|||||||
@ -11,13 +11,21 @@ namespace TelegramBotBase.Localizations
|
|||||||
Values["Language"] = "English";
|
Values["Language"] = "English";
|
||||||
Values["ButtonGrid_Title"] = "Menu";
|
Values["ButtonGrid_Title"] = "Menu";
|
||||||
Values["ButtonGrid_NoItems"] = "There are no items.";
|
Values["ButtonGrid_NoItems"] = "There are no items.";
|
||||||
|
Values["ButtonGrid_PreviousPage"] = "◀️";
|
||||||
|
Values["ButtonGrid_NextPage"] = "▶️";
|
||||||
Values["ButtonGrid_CurrentPage"] = "Page {0} of {1}";
|
Values["ButtonGrid_CurrentPage"] = "Page {0} of {1}";
|
||||||
|
Values["ButtonGrid_SearchFeature"] = "💡 Send a message to filter the list. Click the 🔍 to reset the filter.";
|
||||||
Values["CalendarPicker_Title"] = "Pick date";
|
Values["CalendarPicker_Title"] = "Pick date";
|
||||||
|
Values["CalendarPicker_PreviousPage"] = "◀️";
|
||||||
|
Values["CalendarPicker_NextPage"] = "▶️";
|
||||||
Values["TreeView_Title"] = "Select node";
|
Values["TreeView_Title"] = "Select node";
|
||||||
Values["TreeView_LevelUp"] = "🔼 level up";
|
Values["TreeView_LevelUp"] = "🔼 level up";
|
||||||
Values["ToggleButton_On"] = "On";
|
Values["ToggleButton_On"] = "On";
|
||||||
Values["ToggleButton_Off"] = "Off";
|
Values["ToggleButton_Off"] = "Off";
|
||||||
|
Values["ToggleButton_OnIcon"] = "⚫";
|
||||||
|
Values["ToggleButton_OffIcon"] = "⚪";
|
||||||
Values["ToggleButton_Title"] = "Toggle";
|
Values["ToggleButton_Title"] = "Toggle";
|
||||||
|
Values["PromptDialog_Back"] = "Back";
|
||||||
Values["ToggleButton_Changed"] = "Setting changed";
|
Values["ToggleButton_Changed"] = "Setting changed";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -24,6 +24,7 @@ namespace TelegramBotBase.Localizations
|
|||||||
Values["ButtonGrid_PreviousPage"] = "◀️";
|
Values["ButtonGrid_PreviousPage"] = "◀️";
|
||||||
Values["ButtonGrid_NextPage"] = "▶️";
|
Values["ButtonGrid_NextPage"] = "▶️";
|
||||||
Values["ButtonGrid_CurrentPage"] = "Seite {0} von {1}";
|
Values["ButtonGrid_CurrentPage"] = "Seite {0} von {1}";
|
||||||
|
Values["ButtonGrid_SearchFeature"] = "💡 Sende eine Nachricht um die Liste zu filtern. Klicke die 🔍 um den Filter zurückzusetzen.";
|
||||||
Values["CalendarPicker_Title"] = "Datum auswählen";
|
Values["CalendarPicker_Title"] = "Datum auswählen";
|
||||||
Values["CalendarPicker_PreviousPage"] = "◀️";
|
Values["CalendarPicker_PreviousPage"] = "◀️";
|
||||||
Values["CalendarPicker_NextPage"] = "▶️";
|
Values["CalendarPicker_NextPage"] = "▶️";
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user