Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix remaining old syntax placeholders #842

Merged
merged 1 commit into from
Sep 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions masterlist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ prelude:

- &compatPatchForX
type: say
content: 'It is recommended that you check the following compatibility patch compilation for {0}: %2%'
content: 'It is recommended that you check the following compatibility patch compilation for {0}: {1}'

- &corrupt
type: warn
Expand All @@ -55,7 +55,7 @@ prelude:

- &disableAfterGeneratingXwithY
type: say
content: 'This plugin may be disabled after generating **{0}** with **%2%**.'
content: 'This plugin may be disabled after generating **{0}** with **{1}**.'

- &essentialFiles
type: warn
Expand All @@ -75,11 +75,11 @@ prelude:

- &masterReassign
type: say
content: 'The **{0}** master must be reassigned to **%2%**.'
content: 'The **{0}** master must be reassigned to **{1}**.'

- &missingRequirementXforY
type: warn
content: 'It appears you have installed **%2%**, but some of its requirements seem to be missing. Please ensure you have correctly installed **{0}**.'
content: 'It appears you have installed **{1}**, but some of its requirements seem to be missing. Please ensure you have correctly installed **{0}**.'

- &missingRequirementXforPlugin
type: warn
Expand All @@ -91,7 +91,7 @@ prelude:

- &moveXFromYToZ
type: say
content: 'Move {0} from %2% to {2}.'
content: 'Move {0} from {1} to {2}.'

- &obsolete
type: warn
Expand All @@ -108,11 +108,11 @@ prelude:

- &patch3rdParty
type: say
content: 'You seem to be using **{0}**, but you have not enabled a compatibility patch for this mod. A third party patch is available here: %2%'
content: 'You seem to be using **{0}**, but you have not enabled a compatibility patch for this mod. A third party patch is available here: {1}'

- &patcherScriptAvailable
type: say
content: '{0} patcher script available here: %2%'
content: '{0} patcher script available here: {1}'

- &patchIncluded
type: say
Expand Down Expand Up @@ -140,7 +140,7 @@ prelude:

- &renameXtoY
type: warn
content: 'You need to rename {0} to %2% or this mod won''t work.'
content: 'You need to rename {0} to {1} or this mod won''t work.'

# Useful for when a plugin needs SkyUI, but shouldn't load after it (eg. when it's a master plugin).
- &requiresMCM_X
Expand All @@ -157,7 +157,7 @@ prelude:

- &runAnimFramework
type: say
content: 'It appears you have **{0}** installed. Remember to run **%2%** every time you have installed or uninstalled {2}, or a {2}-based mod.'
content: 'It appears you have **{0}** installed. Remember to run **{1}** every time you have installed or uninstalled {2}, or a {2}-based mod.'

- &runxLODGen
type: say
Expand Down Expand Up @@ -196,19 +196,19 @@ prelude:

- &versionPrecedence
type: error
content: 'Delete {0} from %2%. {2}''s version must take precedence.'
content: 'Delete {0} from {1}. {2}''s version must take precedence.'

- &versionUpToDateX
type: say
content: 'Your {0} is up-to-date.'

- &versionXIncY
type: error
content: 'Your installed version of {0} is not compatible with your version of %2%.'
content: 'Your installed version of {0} is not compatible with your version of {1}.'

- &versionXofYorGreaterRequired
type: error
content: 'Requires version **{0}** or greater of **%2%**.'
content: 'Requires version **{0}** or greater of **{1}**.'

- &wildEdits
type: warn
Expand All @@ -232,15 +232,15 @@ prelude:

- &scriptExtenderMissing
type: error
content: 'You have installed an {0} plugin but {0} was not found! See {0} download page: %2%.'
content: 'You have installed an {0} plugin but {0} was not found! See {0} download page: {1}.'
subs:
- 'SKSE'
- '[SKSE](https://skse.silverlock.org)'
condition: 'file("SKSE/Plugins/([^\.]+\.dll)") and not file("../skse_loader.exe")'

- &scriptExtenderRequiredScripts
type: warn
content: 'It appears you have installed **{0}**, but its required scripts seem to be missing. Please ensure you have correctly installed the scripts bundled with the **%2%** installation archive.'
content: 'It appears you have installed **{0}**, but its required scripts seem to be missing. Please ensure you have correctly installed the scripts bundled with the **{1}** installation archive.'
subs:
- 'Skyrim Script Extender'
- '[SKSE](https://skse.silverlock.org)'
Expand Down
Loading