From c08f0168f450063ed53bacac77de806487d49751 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rory=20O=E2=80=99Kane?= Date: Wed, 20 Aug 2014 09:50:06 -0400 Subject: [PATCH] Improve wording when stating date of unknown mod MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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. --- src/main/java/net/vhati/modmanager/ui/ManagerFrame.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/net/vhati/modmanager/ui/ManagerFrame.java b/src/main/java/net/vhati/modmanager/ui/ManagerFrame.java index b7fbd0a..4cccbfe 100644 --- a/src/main/java/net/vhati/modmanager/ui/ManagerFrame.java +++ b/src/main/java/net/vhati/modmanager/ui/ManagerFrame.java @@ -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"; }