Skip to content

Commit

Permalink
refactor: specify global error code localization key
Browse files Browse the repository at this point in the history
  • Loading branch information
Alystrasz committed Dec 14, 2023
1 parent bf843e7 commit dbd570c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,6 @@ Press Yes if you agree to this. This choice can be changed in the mods menu at a
"MOD_FETCHING_FAILED" "Mod archive could not be downloaded from Thunderstore."
"MOD_CORRUPTED" "Downloaded archive checksum does not match verified signature."
"NO_DISK_SPACE_AVAILABLE" "There is not enough space on your disk."
"FAILED" "Mod extraction failed. Check logs for more details."
"MOD_FETCHING_FAILED_GENERAL" "Mod extraction failed. Check logs for more details."
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ void function DisplayModDownloadErrorDialog( string modName )
break
case eModInstallStatus.FAILED:
default:
dialogData.message = Localize( "#FAILED" )
dialogData.message = Localize( "#MOD_FETCHING_FAILED_GENERAL" )
break
}

Expand Down

0 comments on commit dbd570c

Please sign in to comment.