11// Option description text.
22
3- const outputFolderDesc = "Specifies the folder path where output result files will be written." ;
3+ const outputFolderDesc = "specifies the folder path where output result files will be written." ;
44const ignoreTextParseDesc = writeIgnoreParseDesc ( "text" ) ;
55const ignoreImageParseDesc = writeIgnoreParseDesc ( "image" ) ;
6- const exportGraphDesc = "Indicates whether to export the resulting graph diagram." ;
7- const exportRawDesc = "Exports raw graph and path data to separate files." ;
6+ const exportGraphDesc = "indicates whether to export the resulting graph diagram." ;
7+ const exportRawDesc = "exports raw graph and path data to separate files." ;
88const loadImageConfigDesc = writeLoadSaveImageConfigDesc ( "file path of an existing" , "loaded." ) ;
99const saveImageConfigDesc = writeLoadSaveImageConfigDesc ( "name of a saved" , "saved." ) ;
1010const wallColourDesc = writeColourDesc ( "wall" , "#000000" ) ;
1111const floorColourDesc = writeColourDesc ( "floor" , "#FFFFFF" ) ;
12- const tolerancePercentDesc = "The percentage difference allowed when checking image pixel colours. (default: 0)" ;
13- const tileSizeDesc = "The approximate size of a maze tile in pixels. (default: 10)" ;
14- const imageOriginDescX = writeOriginDesc ( "X " ) ;
15- const imageOriginDescY = writeOriginDesc ( "Y " ) ;
16- const replaceExistingFileDesc = "Specifies whether existing files will be replaced." ;
17- const saveImageConvConfigDesc = "Specifies the path where the image configuration file will be saved. If this is blank, no file will be saved." ;
12+ const tolerancePercentDesc = "the percentage difference allowed when checking image pixel colours. (default: 0)" ;
13+ const tileSizeDesc = "the approximate size of a maze tile in pixels. (default: 10)" ;
14+ const imageOriginDescX = writeOriginDesc ( "x " ) ;
15+ const imageOriginDescY = writeOriginDesc ( "y " ) ;
16+ const replaceExistingFileDesc = "specifies whether existing files will be replaced." ;
17+ const saveImageConvConfigDesc = "specifies the path where the image configuration file will be saved. if this is blank, no file will be saved." ;
1818
1919
2020
2121function writeIgnoreParseDesc ( typeDesc )
2222{
23- var writeRes = "Ignores or corrects non-fatal errors when parsing input " + typeDesc + " files." ;
23+ var writeRes = "ignores or corrects non-fatal errors when parsing input " + typeDesc + " files." ;
2424 return writeRes ;
2525}
2626
@@ -29,9 +29,9 @@ function writeLoadSaveImageConfigDesc(valueDesc, fileAction)
2929{
3030 var writeRes = "" ;
3131
32- writeRes += "Specifies the " + valueDesc ;
32+ writeRes += "specifies the " + valueDesc ;
3333 writeRes += " image configuration file. " ;
34- writeRes += " If this is blank, no file will be " ;
34+ writeRes += " if this is blank, no file will be " ;
3535 writeRes += fileAction ;
3636
3737 return writeRes ;
@@ -42,7 +42,7 @@ function writeColourDesc(pixelDesc, defaultHex)
4242{
4343 var writeRes = "" ;
4444
45- writeRes += "The hex colour of " ;
45+ writeRes += "the hex colour of " ;
4646 writeRes += pixelDesc ;
4747 writeRes += " pixels in the target image. (default: " ;
4848 writeRes += defaultHex ;
@@ -54,7 +54,7 @@ function writeColourDesc(pixelDesc, defaultHex)
5454
5555function writeOriginDesc ( oPlane )
5656{
57- var writeRes = "The approximate " + oPlane + " location of the first tile. (default: 0)" ;
57+ var writeRes = "the approximate " + oPlane + " location of the first tile. (default: 0)" ;
5858 return writeRes ;
5959}
6060
0 commit comments