Made resource keys easier to read.

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@906 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Don Leckie
2002-09-11 15:47:07 +00:00
parent 74cc2f7e41
commit c5b1975822

View File

@ -127,7 +127,7 @@ class AboutPMD extends JDialog
aboutPanel.add(bottomPanel, BorderLayout.SOUTH);
// Version Label
String versionText = Resources.getString("RESOURCEVersion")
String versionText = Resources.getString("RESOURCE_Version")
+ " "
+ ProjectFile.getProperty("currentVersion");
JLabel versionLabel = new JLabel(versionText);
@ -136,7 +136,7 @@ class AboutPMD extends JDialog
bottomPanel.add(versionLabel);
// SourceForge PMD Project
String sourceForgeText = Resources.getString("RESOURCEDevelopedBySourceForgePMDTeam");
String sourceForgeText = Resources.getString("RESOURCE_DevelopedBySourceForgePMDTeam");
JLabel sourceForgeLabel = new JLabel(sourceForgeText);
sourceForgeLabel.setFont(UIManager.getFont("labelFont"));
sourceForgeLabel.setHorizontalAlignment(JLabel.CENTER);