Skip to content

Commit

Permalink
Removed some enable/disable recommendations
Browse files Browse the repository at this point in the history
SURELY this will be the last tooltip update
  • Loading branch information
Mode8fx committed Nov 16, 2023
1 parent c67122e commit 6d03b7f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,8 +310,8 @@ def __init__(self, master=None):
tooltip.create(self.Config_Default_DATDir_Label, 'The directory containing No-Intro DAT files for each system. These contain information about each rom, which is used in both exporting and auditing.\n\nIf this is provided, the \"Export\" tab will attempt to automatically match DAT files from this directory with each system so you don\'t have to input them manually.')
tooltip.create(self.Config_Default_RomsetDir_Label, 'The directory containing your rom directories for each system.\n\nIf this is provided, the \"Export\" tab will attempt to automatically match folders from this directory with each system so you don\'t have to input them manually.')
tooltip.create(self.Config_Default_ExtractArchives, 'If enabled, any roms from your input romset that are contained in zipped archives (ZIP, RAR, 7z) will be extracted during export.\n\nUseful if your output device does not support zipped roms.\n\nIf unsure, leave this disabled.')
tooltip.create(self.Config_Default_ParentFolder, 'If enabled, each rom will be exported to a parent folder with the same name as its primary region release.\n\nFor example, \"Legend of Zelda, The (USA)\" and \"Zelda no Densetsu 1 - The Hyrule Fantasy (Japan)\" will both be exported to a folder titled \"Legend of Zelda, The\".\n\nIf \"Create Region Folders\" or \"Create Letter Folders\" is enabled, the game folder will be placed according to the game\'s highest-priority region.\n\nIf unsure, leave this disabled.')
tooltip.create(self.Config_Default_SortByPrimaryRegion, 'If enabled, each rom will be exported to a parent folder named after its highest-priority region.\n\nFor example, if your order of region priority is USA->Europe->Japan, then \"Golden Sun (USA, Europe)\" will be exported to a folder titled \"'+specialFolderPrefix+'USA'+specialFolderSuffix+'\".\n\nIf unsure, leave this enabled.')
tooltip.create(self.Config_Default_ParentFolder, 'If enabled, each rom will be exported to a parent folder with the same name as its primary region release.\n\nFor example, \"Legend of Zelda, The (USA)\" and \"Zelda no Densetsu 1 - The Hyrule Fantasy (Japan)\" will both be exported to a folder titled \"Legend of Zelda, The\".\n\nIf \"Create Region Folders\" or \"Create Letter Folders\" is enabled, the game folder will be placed according to the game\'s highest-priority region.')
tooltip.create(self.Config_Default_SortByPrimaryRegion, 'If enabled, each rom will be exported to a parent folder named after its highest-priority region.\n\nFor example, if your order of region priority is USA->Europe->Japan, then \"Golden Sun (USA, Europe)\" will be exported to a folder titled \"'+specialFolderPrefix+'USA'+specialFolderSuffix+'\".')
tooltip.create(self.Config_Default_PrimaryRegionInRoot, '(Only applies if \"Create Region Folders\" is enabled.)\n\nIf enabled, a region folder will NOT be created for your primary regions.\n\nFor example, if you have Europe set as a primary region, then Europe roms will not be exported to a [Europe] folder, and will instead be placed directly in the output folder.\n\nIf unsure, leave this enabled.')
tooltip.create(self.Config_Default_SpecialCategoryFolder, 'If enabled, all exported roms that are part of a special category (Unlicensed, Unreleased, etc.) will be exported to a parent folder named after that category. There will be multiple nested folders if a game belongs to multiple special categories.\n\nIf unsure, leave this enabled.')
tooltip.create(self.Config_Default_LetterFolder, 'If enabled, each rom will be exported to a parent folder named after its first letter.\n\nFor example, \"Castlevania (USA)\" will be exported to a [C] folder.\n\nIf unsure, leave this disabled.')
Expand Down Expand Up @@ -530,8 +530,8 @@ def addSystemTab(self, systemName="New System", datFilePath="", romsetFolderPath
if SpecialCategories[i].description is not None:
tooltip.create(self.Export_IncludeSpecial_[i][self.exportTabNum], SpecialCategories[i].description)
tooltip.create(self.Export_ExtractArchives_[self.exportTabNum], 'If enabled, any roms from your input romset that are contained in zipped archives (ZIP, RAR, 7z) will be extracted during export.\n\nUseful if your output device does not support zipped roms.\n\nIf unsure, leave this disabled.')
tooltip.create(self.Export_ParentFolder_[self.exportTabNum], 'If enabled, each rom will be exported to a parent folder with the same name as its primary region release.\n\nFor example, \"Legend of Zelda, The (USA)\" and \"Zelda no Densetsu 1 - The Hyrule Fantasy (Japan)\" will both be exported to a folder titled \"Legend of Zelda, The\".\n\nIf \"Create Region Folders\" or \"Create Letter Folders\" is enabled, the game folder will be placed according to the game\'s highest-priority region.\n\nIf unsure, leave this disabled.')
tooltip.create(self.Export_SortByPrimaryRegion_[self.exportTabNum], 'If enabled, each rom will be exported to a parent folder named after its highest-priority region.\n\nFor example, if your order of region priority is USA->Europe->Japan, then \"Golden Sun (USA, Europe)\" will be exported to a folder titled \"'+specialFolderPrefix+'USA'+specialFolderSuffix+'\".\n\nIf unsure, leave this enabled.')
tooltip.create(self.Export_ParentFolder_[self.exportTabNum], 'If enabled, each rom will be exported to a parent folder with the same name as its primary region release.\n\nFor example, \"Legend of Zelda, The (USA)\" and \"Zelda no Densetsu 1 - The Hyrule Fantasy (Japan)\" will both be exported to a folder titled \"Legend of Zelda, The\".\n\nIf \"Create Region Folders\" or \"Create Letter Folders\" is enabled, the game folder will be placed according to the game\'s highest-priority region.')
tooltip.create(self.Export_SortByPrimaryRegion_[self.exportTabNum], 'If enabled, each rom will be exported to a parent folder named after its highest-priority region.\n\nFor example, if your order of region priority is USA->Europe->Japan, then \"Golden Sun (USA, Europe)\" will be exported to a folder titled \"'+specialFolderPrefix+'USA'+specialFolderSuffix+'\".')
tooltip.create(self.Export_SpecialCategoryFolder_[self.exportTabNum], 'If enabled, all exported roms that are part of a special category (Unlicensed, Unreleased, etc.) will be exported to a parent folder named after that category. There will be multiple nested folders if a game belongs to multiple special categories.\n\nIf unsure, leave this enabled.')
tooltip.create(self.Export_LetterFolder_[self.exportTabNum], 'If enabled, each rom will be exported to a parent folder named after its first letter.\n\nFor example, \"Castlevania (USA)\" will be exported to a [C] folder.\n\nIf unsure, leave this disabled.')
tooltip.create(self.Export_PrimaryRegionInRoot_[self.exportTabNum], '(Only applies if \"Create Region Folders\" is enabled.)\n\nIf enabled, a region folder will NOT be created for your primary regions.\n\nFor example, if you have Europe set as a primary region, then Europe roms will not be exported to a [Europe] folder, and will instead be placed directly in the output folder.\n\nIf unsure, leave this enabled.')
Expand Down

0 comments on commit 6d03b7f

Please sign in to comment.