diff --git a/Wino.Core.Domain/Translations/en_US/resources.json b/Wino.Core.Domain/Translations/en_US/resources.json
index f44bc796..d7c71364 100644
--- a/Wino.Core.Domain/Translations/en_US/resources.json
+++ b/Wino.Core.Domain/Translations/en_US/resources.json
@@ -323,6 +323,7 @@
"SynchronizationFolderReport_Failed": "synchronization is failed",
"SearchBarPlaceholder": "Search",
"SearchingIn": "Searching in",
+ "SearchPivotName": "Results",
"SettingsAboutGithub_Description": "Go to issue tracker GitHub repository.",
"SettingsAboutGithub_Title": "GitHub",
"SettingsAccountManagementAppendMessage_Title": "Append messages to Sent folder",
diff --git a/Wino.Core.Domain/Translator.Designer.cs b/Wino.Core.Domain/Translator.Designer.cs
index 283898dd..a07f3c76 100644
--- a/Wino.Core.Domain/Translator.Designer.cs
+++ b/Wino.Core.Domain/Translator.Designer.cs
@@ -1638,6 +1638,11 @@ namespace Wino.Core.Domain
///
public static string SearchingIn => Resources.GetTranslatedString(@"SearchingIn");
+ ///
+ /// Results
+ ///
+ public static string SearchPivotName => Resources.GetTranslatedString(@"SearchPivotName");
+
///
/// Go to issue tracker GitHub repository.
///
diff --git a/Wino.Mail.ViewModels/MailListPageViewModel.cs b/Wino.Mail.ViewModels/MailListPageViewModel.cs
index e9313c1d..cd0632a3 100644
--- a/Wino.Mail.ViewModels/MailListPageViewModel.cs
+++ b/Wino.Mail.ViewModels/MailListPageViewModel.cs
@@ -491,7 +491,7 @@ namespace Wino.Mail.ViewModels
if (ActiveFolder == null) return;
- PivotFolders.Add(new FolderPivotViewModel("Results", isFocused));
+ PivotFolders.Add(new FolderPivotViewModel(Translator.SearchPivotName, isFocused));
// This will trigger refresh.
SelectedFolderPivot = PivotFolders.FirstOrDefault();