Reword "Loads BSA" -> "Loads Archive"

As Fallout 4 uses archive files with a `.ba2` extension instead of
`.bsa`.
This commit is contained in:
Oliver Hamlet
2015-11-28 12:35:20 +00:00
parent 45ae9069a9
commit e5162c32d7
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -316,7 +316,7 @@ var {
<li>The plugin's <abbr title="Cyclic Redundancy Checksum">CRC</abbr>, which can be used to uniquely identify it. CRCs are only displayed after they have been calculated during conflict filtering or sorting.
<li>The <q>Master File</q> icon.
<li>The <q>Empty Plugin</q> icon.
<li>The <q>Loads BSA</q> icon.
<li>The <q>Loads Archive</q> icon.
<li>The <q>Has User Metadata</q> icon.
<li>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.
</ol>
+1 -1
View File
@@ -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
+1 -1
View File
@@ -174,7 +174,7 @@ loot-clear-metadata
<core-tooltip id="emptyPlugin" label="Empty Plugin" noarrow>
<core-icon icon="visibility-off"></core-icon>
</core-tooltip>
<core-tooltip id="loadsBSA" label="Loads BSA" noarrow>
<core-tooltip id="loadsBSA" label="Loads Archive" noarrow>
<core-icon icon="attachment"></core-icon>
</core-tooltip>
<core-tooltip id="hasUserEdits" label="Has User Metadata" noarrow>
@@ -134,7 +134,7 @@ loot-editor-close
<core-tooltip id="emptyPlugin" label="Empty Plugin" noarrow>
<core-icon icon="visibility-off"></core-icon>
</core-tooltip>
<core-tooltip id="loadsBSA" label="Loads BSA" noarrow>
<core-tooltip id="loadsBSA" label="Loads Archive" noarrow>
<core-icon icon="attachment"></core-icon>
</core-tooltip>
<core-tooltip label="Apply" noarrow>
+2 -2
View File
@@ -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());