diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-31 04:15:04 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-31 04:15:04 +0000 |
commit | 6f54236d10cf16d143f9d41f929d132c19307d85 (patch) | |
tree | 2603d6097ddc7bd10286b8927a07c85b4bad6050 /cervisia | |
parent | 16d826ac0f129438876a1cd5d7b43179bcf11679 (diff) | |
download | tdesdk-6f54236d10cf16d143f9d41f929d132c19307d85.tar.gz tdesdk-6f54236d10cf16d143f9d41f929d132c19307d85.zip |
Fix remaining instances of tqStatus embedded in user visible strings
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1250385 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'cervisia')
-rw-r--r-- | cervisia/cervisiapart.cpp | 2 | ||||
-rw-r--r-- | cervisia/misc.cpp | 2 | ||||
-rw-r--r-- | cervisia/settingsdlg.cpp | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/cervisia/cervisiapart.cpp b/cervisia/cervisiapart.cpp index dea2bab8..ea6ba686 100644 --- a/cervisia/cervisiapart.cpp +++ b/cervisia/cervisiapart.cpp @@ -257,7 +257,7 @@ void CervisiaPart::setupActions() action->setToolTip( hint ); action->setWhatsThis( hint ); - action = new KAction( i18n("&tqStatus"), "vcs_status", Key_F5, + action = new KAction( i18n("&Status"), "vcs_status", Key_F5, this, TQT_SLOT( slottqStatus() ), actionCollection(), "file_status" ); hint = i18n("Updates the status (cvs -n update) of the selected files and folders"); diff --git a/cervisia/misc.cpp b/cervisia/misc.cpp index c58bee78..76ae72d1 100644 --- a/cervisia/misc.cpp +++ b/cervisia/misc.cpp @@ -82,7 +82,7 @@ static const TQStringList FetchBranchesAndTags(const TQString& searchedType, if( !cvsService->ok() ) return branchOrTagList; - ProgressDialog dlg(parent, "Status", job, TQString(), i18n("CVS tqStatus")); + ProgressDialog dlg(parent, "Status", job, TQString(), i18n("CVS Status")); if( dlg.execute() ) { diff --git a/cervisia/settingsdlg.cpp b/cervisia/settingsdlg.cpp index ad19d00c..eecdd41f 100644 --- a/cervisia/settingsdlg.cpp +++ b/cervisia/settingsdlg.cpp @@ -297,9 +297,9 @@ void SettingsDialog::addStatusPage() LoadIcon("fork")); remotestatusbox = new TQCheckBox(i18n("When opening a sandbox from a &remote repository,\n" - "start a File->tqStatus command automatically"), statusPage); + "start a File->Status command automatically"), statusPage); localstatusbox = new TQCheckBox(i18n("When opening a sandbox from a &local repository,\n" - "start a File->tqStatus command automatically"), statusPage); + "start a File->Status command automatically"), statusPage); // dummy widget to take up the vertical space new TQWidget(statusPage); |