diff --git a/SafeExamBrowser.I18n.Contracts/TextKey.cs b/SafeExamBrowser.I18n.Contracts/TextKey.cs
index 5c9271d0..0fc4032c 100644
--- a/SafeExamBrowser.I18n.Contracts/TextKey.cs
+++ b/SafeExamBrowser.I18n.Contracts/TextKey.cs
@@ -30,6 +30,7 @@ namespace SafeExamBrowser.I18n.Contracts
BrowserWindow_DownloadComplete,
BrowserWindow_FindCaseSensitive,
BrowserWindow_FindMenuItem,
+ BrowserWindow_ReloadButton,
BrowserWindow_ZoomMenuItem,
Build,
ExamSelectionDialog_Cancel,
diff --git a/SafeExamBrowser.I18n/Data/en.xml b/SafeExamBrowser.I18n/Data/en.xml
index ab2829f5..316029d1 100644
--- a/SafeExamBrowser.I18n/Data/en.xml
+++ b/SafeExamBrowser.I18n/Data/en.xml
@@ -48,6 +48,9 @@
Search page...
+
+ Reload button
+
Page Zoom
diff --git a/SafeExamBrowser.UserInterface.Desktop/Windows/BrowserWindow.xaml.cs b/SafeExamBrowser.UserInterface.Desktop/Windows/BrowserWindow.xaml.cs
index 5c1170fa..cd780b66 100644
--- a/SafeExamBrowser.UserInterface.Desktop/Windows/BrowserWindow.xaml.cs
+++ b/SafeExamBrowser.UserInterface.Desktop/Windows/BrowserWindow.xaml.cs
@@ -577,6 +577,7 @@ if (typeof __SEB_focusElement === 'undefined') {
FindCaseSensitiveCheckBox.Content = text.Get(TextKey.BrowserWindow_FindCaseSensitive);
FindMenuText.Text = text.Get(TextKey.BrowserWindow_FindMenuItem);
ZoomText.Text = text.Get(TextKey.BrowserWindow_ZoomMenuItem);
+ ReloadButton.SetValue(System.Windows.Automation.AutomationProperties.NameProperty, text.Get(TextKey.BrowserWindow_ReloadButton));
}
public void FocusToolbar(bool forward)