partkeepr

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

commit 4e3923989652a3e8f74787bfc76b07ae4dea3d52
parent 34ea40531aa1772cc382ffdd20c824c42cb7e156
Author: Felicitus <felicitus@felicitus.org>
Date:   Fri, 10 Feb 2012 00:02:51 +0100

Changed "re-run tests" to "re-run setup" to avoid confusion

Diffstat:
Msrc/setup/js/Cards/AbstractTestCard.js | 4++--
Msrc/setup/js/Cards/DatabaseSetupCard.js | 1+
2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/setup/js/Cards/AbstractTestCard.js b/src/setup/js/Cards/AbstractTestCard.js @@ -39,7 +39,7 @@ Ext.define('PartKeeprSetup.AbstractTestCard', { titleStyle: 'font-size: 2.5em;', cls: 'x-partkeepr-setup-basecard', autoScroll: true, - + rerunTestText: "Re-run checks", /** * Inits the component @@ -49,7 +49,7 @@ Ext.define('PartKeeprSetup.AbstractTestCard', { this.testResultPanel.on("test-error", this.onTestError, this); this.retestButton = Ext.create("Ext.button.Button", { - text: 'Re-run checks', + text: this.rerunTestText, hidden: true }); diff --git a/src/setup/js/Cards/DatabaseSetupCard.js b/src/setup/js/Cards/DatabaseSetupCard.js @@ -9,6 +9,7 @@ Ext.define('PartKeeprSetup.DatabaseSetupCard', { cardMessage: "PartKeepr is now being set-up.", title: 'PartKeepr is now being set-up, please wait', + rerunTestText: "Re-run setup", /** * Sets up the tests */