Author: mvw Date: 2008-01-08 09:37:25-0800 New Revision: 14030 Modified: trunk/src_new/org/argouml/application/helpers/ResourceLoaderWrapper.java trunk/src_new/org/argouml/ui/ActionProjectSettings.java
Log: Fix for issue 4897, according description from Christian López Espínola. Modified: trunk/src_new/org/argouml/application/helpers/ResourceLoaderWrapper.java Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/application/helpers/ResourceLoaderWrapper.java?view=diff&rev=14030&p1=trunk/src_new/org/argouml/application/helpers/ResourceLoaderWrapper.java&p2=trunk/src_new/org/argouml/application/helpers/ResourceLoaderWrapper.java&r1=14029&r2=14030 ============================================================================== --- trunk/src_new/org/argouml/application/helpers/ResourceLoaderWrapper.java (original) +++ trunk/src_new/org/argouml/application/helpers/ResourceLoaderWrapper.java 2008-01-08 09:37:25-0800 @@ -1,5 +1,5 @@ // $Id$ -// Copyright (c) 1996-2007 The Regents of the University of California. All +// Copyright (c) 1996-2008 The Regents of the University of California. All // Rights Reserved. Permission to use, copy, modify, and distribute this // software and its documentation without fee, and without a written // agreement is hereby granted, provided that the above copyright notice @@ -342,6 +342,7 @@ images.put("action.page-setup", "Page Setup..."); images.put("action.paste", "Paste"); images.put("action.print", "Print..."); + images.put("action.properties", "Properties"); images.put("action.remove-from-diagram", "Remove From Diagram"); images.put("action.resolve-item", "Resolve Item..."); images.put("action.save-project", "Save Project"); Modified: trunk/src_new/org/argouml/ui/ActionProjectSettings.java Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/ui/ActionProjectSettings.java?view=diff&rev=14030&p1=trunk/src_new/org/argouml/ui/ActionProjectSettings.java&p2=trunk/src_new/org/argouml/ui/ActionProjectSettings.java&r1=14029&r2=14030 ============================================================================== --- trunk/src_new/org/argouml/ui/ActionProjectSettings.java (original) +++ trunk/src_new/org/argouml/ui/ActionProjectSettings.java 2008-01-08 09:37:25-0800 @@ -1,5 +1,5 @@ // $Id$ -// Copyright (c) 2006 The Regents of the University of California. All +// Copyright (c) 2006-2008 The Regents of the University of California. All // Rights Reserved. Permission to use, copy, modify, and distribute this // software and its documentation without fee, and without a written // agreement is hereby granted, provided that the above copyright notice @@ -49,7 +49,7 @@ */ public ActionProjectSettings() { super(Translator.localize("action.properties"), - ResourceLoaderWrapper.lookupIcon("properties")); + ResourceLoaderWrapper.lookupIcon("action.properties")); // Set the tooltip string: putValue(Action.SHORT_DESCRIPTION, Translator.localize("action.properties")); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
