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
v3.5.13-sru
tpearson 13 years ago
parent 16d826ac0f
commit 6f54236d10

@ -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");

@ -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() )
{

@ -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);

@ -91,7 +91,7 @@ const char* columnNames[] = {
I18N_NOOP("Fuzzy"),
I18N_NOOP("Untranslated"),
I18N_NOOP("Total"),
I18N_NOOP("CVS/SVN tqStatus"),
I18N_NOOP("CVS/SVN Status"),
I18N_NOOP("Last Revision"),
I18N_NOOP("Last Translator")
};

@ -2,7 +2,7 @@
// Misc. messages already existing in the kbabel-svn branch
i18n("SVN");
i18n( "CVS/SVN tqStatus" );
i18n( "CVS/SVN Status" );
// Messages for further SVN functions
i18n( "Resolved" );

@ -144,7 +144,7 @@ CVSDialog::CVSDialog( CVS::Command cmd, TQWidget * parent, KSharedConfig* config
temp = i18n( "&Commit" );
break;
case CVS::tqStatus:
temp = i18n( "&Get tqStatus" );
temp = i18n( "&Get Status" );
break;
case CVS::Diff:
temp = i18n( "&Get Diff" );

@ -136,7 +136,7 @@ SVNDialog::SVNDialog( SVN::Command cmd, TQWidget * parent, KSharedConfig* config
break;
case SVN::StatusRemote:
case SVN::StatusLocal:
temp = i18n( "&Get tqStatus" );
temp = i18n( "&Get Status" );
break;
case SVN::Diff:
temp = i18n( "&Get Diff" );

@ -454,7 +454,7 @@ void KBabelMW::setupActions()
action = new KAction(i18n("Copy Selected Character to Msgstr"), Key_F10, TQT_TQOBJECT(m_charselectorview)
,TQT_SLOT(emitChar()), actionCollection(), "char2msgstr");
a_unsetFuzzy = new KAction(i18n("To&ggle Fuzzy tqStatus"), "togglefuzzy", CTRL+Key_U, TQT_TQOBJECT(m_view)
a_unsetFuzzy = new KAction(i18n("To&ggle Fuzzy Status"), "togglefuzzy", CTRL+Key_U, TQT_TQOBJECT(m_view)
, TQT_SLOT(removeFuzzytqStatus()), actionCollection(), "edit_toggle_fuzzy");
action = new KAction(i18n("&Edit Header..."), 0, TQT_TQOBJECT(m_view), TQT_SLOT(editHeader()),
actionCollection(), "edit_edit_header");

@ -434,7 +434,7 @@ of the currently displayed entry.</p></qt>"));
hb->addStretch(1);
// ### TODO: perhaps it should be moreprecise where the setting can be changed
TQString ledMsg=i18n("<qt><p><b>tqStatus LEDs</b></p>\n"
TQString ledMsg=i18n("<qt><p><b>Status LEDs</b></p>\n"
"<p>These LEDs display the status of the currently displayed message.\n"
"You can change their color in the preferences dialog section\n"
"<b>Editor</b> on page <b>Appearance</b></p></qt>");

@ -134,7 +134,7 @@ Bug::tqStatus Bug::stringTotqStatus( const TQString &s, bool *ok )
else if ( s == "reopened" ) return Reopened;
else if ( s == "closed" ) return Closed;
kdWarning() << "Bug::stringTotqStatus: invalid status: " << s << endl;
kdWarning() << "Bug::stringToStatus: invalid status: " << s << endl;
if ( ok )
*ok = false;
return StatusUndefined;

@ -339,7 +339,7 @@ void KSvnd::status(const TQString& path, int text_status, int prop_status, int r
TQDataStream stream(params, IO_WriteOnly);
stream << path << text_status << prop_status << repos_text_status << repos_prop_status << rev;
emitDCOPSignal( "subversiontqStatus(TQString,int,int,int,int,long int)", params );
emitDCOPSignal( "subversionStatus(TQString,int,int,int,int,long int)", params );
}
void KSvnd::popupMessage( const TQString& message ) {

Loading…
Cancel
Save