Elaborate on unsupported message (#2038)

This commit is contained in:
Evan Dixon 2018-07-01 09:37:31 -05:00 committed by Kurt
parent e4a281b0d9
commit 8a0a2de7b2
8 changed files with 8 additions and 8 deletions

View file

@ -49,7 +49,7 @@ MsgFileWriteFail = Unable to save file.
MsgFileWriteProtected = File's location is write protected:
MsgFileWriteProtectedAdvice = If the file is on a removable disk (SD card), please ensure the write protection switch is not set.
MsgFileInUse = Unable to load file. It could be in use by another program.
MsgFileUnsupported = Attempted to load an unsupported file type/size.
MsgFileUnsupported = Attempted to load an unsupported file type/size. This could mean PKHeX doesn't support your save file or your save file is corrupt.
MsgPKMConvertFail = Conversion failed.
MsgPKMMysteryGiftFail = Mystery Gift is not a Pokémon.
MsgClipboardLegalityExport = Copy report to Clipboard?

View file

@ -49,7 +49,7 @@ MsgFileWriteFail = Unable to save file.
MsgFileWriteProtected = File's location is write protected:
MsgFileWriteProtectedAdvice = If the file is on a removable disk (SD card), please ensure the write protection switch is not set.
MsgFileInUse = Unable to load file. It could be in use by another program.
MsgFileUnsupported = Attempted to load an unsupported file type/size.
MsgFileUnsupported = Attempted to load an unsupported file type/size. This could mean PKHeX doesn't support your save file or your save file is corrupt.
MsgPKMConvertFail = Conversion failed.
MsgPKMMysteryGiftFail = Mystery Gift is not a Pokémon.
MsgClipboardLegalityExport = Copy report to Clipboard?

View file

@ -49,7 +49,7 @@ MsgFileWriteFail = Unable to save file.
MsgFileWriteProtected = File's location is write protected:
MsgFileWriteProtectedAdvice = If the file is on a removable disk (SD card), please ensure the write protection switch is not set.
MsgFileInUse = Unable to load file. It could be in use by another program.
MsgFileUnsupported = Attempted to load an unsupported file type/size.
MsgFileUnsupported = Attempted to load an unsupported file type/size. This could mean PKHeX doesn't support your save file or your save file is corrupt.
MsgPKMConvertFail = Conversion failed.
MsgPKMMysteryGiftFail = Mystery Gift is not a Pokémon.
MsgClipboardLegalityExport = Copy report to Clipboard?

View file

@ -49,7 +49,7 @@ MsgFileWriteFail = Unable to save file.
MsgFileWriteProtected = File's location is write protected:
MsgFileWriteProtectedAdvice = If the file is on a removable disk (SD card), please ensure the write protection switch is not set.
MsgFileInUse = Unable to load file. It could be in use by another program.
MsgFileUnsupported = Attempted to load an unsupported file type/size.
MsgFileUnsupported = Attempted to load an unsupported file type/size. This could mean PKHeX doesn't support your save file or your save file is corrupt.
MsgPKMConvertFail = Conversion failed.
MsgPKMMysteryGiftFail = Mystery Gift is not a Pokémon.
MsgClipboardLegalityExport = Copy report to Clipboard?

View file

@ -49,7 +49,7 @@ MsgFileWriteFail = Unable to save file.
MsgFileWriteProtected = File's location is write protected:
MsgFileWriteProtectedAdvice = If the file is on a removable disk (SD card), please ensure the write protection switch is not set.
MsgFileInUse = Unable to load file. It could be in use by another program.
MsgFileUnsupported = Attempted to load an unsupported file type/size.
MsgFileUnsupported = Attempted to load an unsupported file type/size. This could mean PKHeX doesn't support your save file or your save file is corrupt.
MsgPKMConvertFail = Conversion failed.
MsgPKMMysteryGiftFail = Mystery Gift is not a Pokémon.
MsgClipboardLegalityExport = Copy report to Clipboard?

View file

@ -49,7 +49,7 @@ MsgFileWriteFail = Unable to save file.
MsgFileWriteProtected = File's location is write protected:
MsgFileWriteProtectedAdvice = If the file is on a removable disk (SD card), please ensure the write protection switch is not set.
MsgFileInUse = Unable to load file. It could be in use by another program.
MsgFileUnsupported = Attempted to load an unsupported file type/size.
MsgFileUnsupported = Attempted to load an unsupported file type/size. This could mean PKHeX doesn't support your save file or your save file is corrupt.
MsgPKMConvertFail = Conversion failed.
MsgPKMMysteryGiftFail = Mystery Gift is not a Pokémon.
MsgClipboardLegalityExport = Copy report to Clipboard?

View file

@ -49,7 +49,7 @@ MsgFileWriteFail = Unable to save file.
MsgFileWriteProtected = File's location is write protected:
MsgFileWriteProtectedAdvice = If the file is on a removable disk (SD card), please ensure the write protection switch is not set.
MsgFileInUse = Unable to load file. It could be in use by another program.
MsgFileUnsupported = Attempted to load an unsupported file type/size.
MsgFileUnsupported = Attempted to load an unsupported file type/size. This could mean PKHeX doesn't support your save file or your save file is corrupt.
MsgPKMConvertFail = Conversion failed.
MsgPKMMysteryGiftFail = Mystery Gift is not a Pokémon.
MsgClipboardLegalityExport = Copy report to Clipboard?

View file

@ -73,7 +73,7 @@ namespace PKHeX.Core
public static string MsgFileWriteProtected { get; set; } = "File's location is write protected:";
public static string MsgFileWriteProtectedAdvice { get; set; } = "If the file is on a removable disk (SD card), please ensure the write protection switch is not set.";
public static string MsgFileInUse { get; set; } = "Unable to load file. It could be in use by another program.";
public static string MsgFileUnsupported { get; set; } = "Attempted to load an unsupported file type/size.";
public static string MsgFileUnsupported { get; set; } = "Attempted to load an unsupported file type/size. This could mean PKHeX doesn't support your save file or your save file is corrupt.";
public static string MsgPKMConvertFail { get; set; } = "Conversion failed.";
public static string MsgPKMMysteryGiftFail { get; set; } = "Mystery Gift is not a Pokémon.";