Improve wording when stating date of unknown mod

- Change the date format to use hyphens as separators instead of slashes, so that the format matches the widely-known ISO 8601 standard for date formatting.
- Change “sometime” to “some time” – “sometime” is a word, but it has a different set of meanings from “some time”, and does not apply here.
This commit is contained in:
Rory O’Kane 2014-08-20 09:50:06 -04:00
parent b8cd929a6f
commit c08f0168f4

View file

@ -619,9 +619,9 @@ public class ManagerFrame extends JFrame implements ActionListener, ModsScanObse
body += "No info is available for the selected mod.\n\n";
if ( modDate != null ) {
SimpleDateFormat dateFormat = new SimpleDateFormat( "yyyy/MM/dd" );
SimpleDateFormat dateFormat = new SimpleDateFormat( "yyyy-MM-dd" );
String dateString = dateFormat.format( modDate );
body += "It was released sometime after "+ dateString +".\n\n";
body += "It was released some time after "+ dateString +".\n\n";
} else {
body += "The date of its release could not be determined.\n\n";
}