diff --git a/docs/LOOT Readme.html b/docs/LOOT Readme.html
index 6af416ed..c1350c50 100644
--- a/docs/LOOT Readme.html
+++ b/docs/LOOT Readme.html
@@ -316,7 +316,7 @@ var {
The plugin's CRC, which can be used to uniquely identify it. CRCs are only displayed after they have been calculated during conflict filtering or sorting.
The Master File
icon.
The Empty Plugin
icon.
- The Loads BSA
icon.
+ The Loads Archive
icon.
The Has User Metadata
icon.
The plugin menu button, which provides access to a few plugin-specific features, including a conflict filter and access to its metadata editor. These are explained in later sections.
diff --git a/resources/l10n/template.pot b/resources/l10n/template.pot
index 0f249d77..4eda4dc3 100644
--- a/resources/l10n/template.pot
+++ b/resources/l10n/template.pot
@@ -498,7 +498,7 @@ msgid "Empty Plugin"
msgstr ""
#: resources/report/js/l10n.js:64 resources/report/js/l10n.js:83
-msgid "Loads BSA"
+msgid "Loads Archive"
msgstr ""
#: resources/report/js/l10n.js:65 resources/report/js/l10n.js:140
diff --git a/src/gui/html/elements/loot-plugin-card.html b/src/gui/html/elements/loot-plugin-card.html
index a403785f..b17b8e7a 100644
--- a/src/gui/html/elements/loot-plugin-card.html
+++ b/src/gui/html/elements/loot-plugin-card.html
@@ -174,7 +174,7 @@ loot-clear-metadata
-
+
diff --git a/src/gui/html/elements/loot-plugin-editor.html b/src/gui/html/elements/loot-plugin-editor.html
index 306f43bc..d3f1e85b 100644
--- a/src/gui/html/elements/loot-plugin-editor.html
+++ b/src/gui/html/elements/loot-plugin-editor.html
@@ -134,7 +134,7 @@ loot-editor-close
-
+
diff --git a/src/gui/html/js/l10n.js b/src/gui/html/js/l10n.js
index 265f71d6..738a2afe 100644
--- a/src/gui/html/js/l10n.js
+++ b/src/gui/html/js/l10n.js
@@ -61,7 +61,7 @@
pluginCard.getElementById('activeTick').setAttribute('label', l10n.translate("Active Plugin").fetch());
pluginCard.getElementById('isMaster').setAttribute('label', l10n.translate("Master File").fetch());
pluginCard.getElementById('emptyPlugin').setAttribute('label', l10n.translate("Empty Plugin").fetch());
- pluginCard.getElementById('loadsBSA').setAttribute('label', l10n.translate("Loads BSA").fetch());
+ pluginCard.getElementById('loadsBSA').setAttribute('label', l10n.translate("Loads Archive").fetch());
pluginCard.getElementById('hasUserEdits').setAttribute('label', l10n.translate("Has User Metadata").fetch());
pluginCard.getElementById('showOnlyConflicts').previousElementSibling.textContent = l10n.translate("Show Only Conflicts").fetch();
@@ -80,7 +80,7 @@
pluginEditor.getElementById('activeTick').setAttribute('label', l10n.translate("Active Plugin").fetch());
pluginEditor.getElementById('isMaster').setAttribute('label', l10n.translate("Master File").fetch());
pluginEditor.getElementById('emptyPlugin').setAttribute('label', l10n.translate("Empty Plugin").fetch());
- pluginEditor.getElementById('loadsBSA').setAttribute('label', l10n.translate("Loads BSA").fetch());
+ pluginEditor.getElementById('loadsBSA').setAttribute('label', l10n.translate("Loads Archive").fetch());
pluginEditor.getElementById('enableEdits').previousElementSibling.textContent = l10n.translate("Enable Edits").fetch();
pluginEditor.getElementById('globalPriority').parentElement.parentElement.setAttribute('label', l10n.translate("Global priorities are compared against all other plugins. Normal priorities are compared against only conflicting plugins.").fetch());