partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 3dcf273c257941b077ed46be1d81d18010f4f908
parent 32bf19670cbce04b3e7e890e4dbde73e7c3cbad7
Author: Felicitus <felicitus@felicitus.org>
Date:   Tue,  5 Jul 2011 07:01:22 +0200

Renamed several menu items to be more streamlined (e.g. "Users" instead of "Edit Users")

Diffstat:
Mfrontend/js/Components/MenuBar.js | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/frontend/js/Components/MenuBar.js b/frontend/js/Components/MenuBar.js @@ -5,28 +5,28 @@ Ext.define('PartKeepr.MenuBar', { this.menu = Ext.create('Ext.menu.Menu', { items: [ { - text: i18n('Edit Footprints'), + text: i18n('Footprints'), icon: 'resources/fugue-icons/icons/fingerprint.png', handler: this.editFootprints },{ - text: i18n('Edit Manufacturers'), + text: i18n('Manufacturers'), icon: 'resources/silkicons/building.png', handler: this.editManufacturers },{ - text: i18n('Edit Storage Locations'), + text: i18n('Storage Locations'), icon: 'resources/fugue-icons/icons/wooden-box.png', handler: this.editStorageLocations },{ - text: i18n('Edit Distributors'), + text: i18n('Distributors'), icon: 'resources/silkicons/lorry.png', handler: this.editDistributors },{ - text: i18n('Edit Users'), + text: i18n('Users'), id: 'edit-users', handler: this.editUsers, icon: "resources/silkicons/user.png" },{ - text: i18n('Edit Part Units'), + text: i18n('Part Measure Units'), handler: this.editPartUnits, icon: "resources/silkicons/table.png" },{