mirror of
				https://github.com/cmderdev/cmder.git
				synced 2025-10-30 17:01:57 +08:00 
			
		
		
		
	add strings.rc2
This commit is contained in:
		| @@ -59,6 +59,7 @@ | |||||||
|     <Link> |     <Link> | ||||||
|       <SubSystem>Windows</SubSystem> |       <SubSystem>Windows</SubSystem> | ||||||
|       <GenerateDebugInformation>true</GenerateDebugInformation> |       <GenerateDebugInformation>true</GenerateDebugInformation> | ||||||
|  |       <!-- <AdditionalDependencies>comctl32.lib;shlwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> --> | ||||||
|     </Link> |     </Link> | ||||||
|     <Manifest> |     <Manifest> | ||||||
|       <AdditionalManifestFiles>src/app.manifest %(AdditionalManifestFiles)</AdditionalManifestFiles> |       <AdditionalManifestFiles>src/app.manifest %(AdditionalManifestFiles)</AdditionalManifestFiles> | ||||||
| @@ -85,6 +86,7 @@ | |||||||
|       <GenerateDebugInformation>true</GenerateDebugInformation> |       <GenerateDebugInformation>true</GenerateDebugInformation> | ||||||
|       <EnableCOMDATFolding>true</EnableCOMDATFolding> |       <EnableCOMDATFolding>true</EnableCOMDATFolding> | ||||||
|       <OptimizeReferences>true</OptimizeReferences> |       <OptimizeReferences>true</OptimizeReferences> | ||||||
|  |       <!-- <AdditionalDependencies>comctl32.lib;shlwapi.lib;%(AdditionalDependencies)</AdditionalDependencies> --> | ||||||
|     </Link> |     </Link> | ||||||
|     <Manifest> |     <Manifest> | ||||||
|       <AdditionalManifestFiles>src/app.manifest %(AdditionalManifestFiles)</AdditionalManifestFiles> |       <AdditionalManifestFiles>src/app.manifest %(AdditionalManifestFiles)</AdditionalManifestFiles> | ||||||
| @@ -94,7 +96,7 @@ | |||||||
|     </PostBuildEvent> |     </PostBuildEvent> | ||||||
|   </ItemDefinitionGroup> |   </ItemDefinitionGroup> | ||||||
|   <ItemGroup> |   <ItemGroup> | ||||||
|     <ResourceCompile Include="src\Resource.rc"> |     <ResourceCompile Include="src\resource.rc"> | ||||||
|       <FileType>RC</FileType> |       <FileType>RC</FileType> | ||||||
|     </ResourceCompile> |     </ResourceCompile> | ||||||
|   </ItemGroup> |   </ItemGroup> | ||||||
|   | |||||||
| @@ -460,7 +460,12 @@ cmderOptions GetOption() | |||||||
| 			cmderOptions.cmderStart = szArgList[i]; | 			cmderOptions.cmderStart = szArgList[i]; | ||||||
| 		} | 		} | ||||||
| 		else { | 		else { | ||||||
| 			MessageBox(NULL, L"Unrecognized parameter.\n\nValid options:\n\n    /c [CMDER User Root Path]\n\n    /task [ConEmu Task Name]\n\n    [/start [Start in Path] | [Start in Path]]\n\n    /single\n\nor\n\n    /register [USER | ALL]\n\nor\n\n    /unregister [USER | ALL]\n", MB_TITLE, MB_OK); | 			wchar_t validOptions[512]; | ||||||
|  | 			HMODULE hMod = GetModuleHandle(NULL); | ||||||
|  | 			LoadString(hMod, IDS_SWITCHES, validOptions, 512); | ||||||
|  |  | ||||||
|  | 			// display list of valid options on unrecognized parameter | ||||||
|  | 			MessageBox(NULL, validOptions, MB_TITLE, MB_OK); | ||||||
| 			cmderOptions.error = true; | 			cmderOptions.error = true; | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|   | |||||||
										
											Binary file not shown.
										
									
								
							| @@ -9,6 +9,7 @@ | |||||||
|                                  |                                  | ||||||
| #include "resource.h" | #include "resource.h" | ||||||
| #include "version.rc2" | #include "version.rc2" | ||||||
|  | #include "strings.rc2" | ||||||
| 
 | 
 | ||||||
| #define APSTUDIO_READONLY_SYMBOLS | #define APSTUDIO_READONLY_SYMBOLS | ||||||
| ///////////////////////////////////////////////////////////////////////////// | ///////////////////////////////////////////////////////////////////////////// | ||||||
							
								
								
									
										12
									
								
								launcher/src/strings.rc2
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										12
									
								
								launcher/src/strings.rc2
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,12 @@ | |||||||
|  |  | ||||||
|  | ///////////////////////////////////////////////////////////////////////////// | ||||||
|  | // Corresponding ids should be defined in `resource.h` file. | ||||||
|  |  | ||||||
|  | STRINGTABLE | ||||||
|  | { | ||||||
|  | 	IDS_TITLE             L"Cmder Launcher" | ||||||
|  | 	 | ||||||
|  | 	IDS_SWITCHES          L"Unrecognized parameter.\n\nValid options:\n\n    /c [CMDER User Root Path]\n\n    /task [ConEmu Task Name]\n\n    [/start [Start in Path] | [Start in Path]]\n\n    /single\n\nor\n\n    /register [USER | ALL]\n\nor\n\n    /unregister [USER | ALL]\n" | ||||||
|  | } | ||||||
|  |  | ||||||
|  | ///////////////////////////////////////////////////////////////////////////// | ||||||
		Reference in New Issue
	
	Block a user