Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
224b4303
Commit
224b4303
authored
Sep 17, 2010
by
Leena Miettinen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UI text - fix capitalization
parent
21305155
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
9 deletions
+9
-9
src/plugins/debugger/cdb/cdboptionspage.cpp
src/plugins/debugger/cdb/cdboptionspage.cpp
+1
-1
src/plugins/fakevim/fakevimoptions.ui
src/plugins/fakevim/fakevimoptions.ui
+1
-1
src/plugins/genericprojectmanager/genericproject.cpp
src/plugins/genericprojectmanager/genericproject.cpp
+1
-1
src/plugins/git/gitplugin.cpp
src/plugins/git/gitplugin.cpp
+3
-3
src/plugins/help/helpplugin.cpp
src/plugins/help/helpplugin.cpp
+1
-1
src/plugins/projectexplorer/dependenciespanel.cpp
src/plugins/projectexplorer/dependenciespanel.cpp
+1
-1
src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp
src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp
+1
-1
No files found.
src/plugins/debugger/cdb/cdboptionspage.cpp
View file @
224b4303
...
...
@@ -157,7 +157,7 @@ QString CdbOptionsPage::settingsId()
QString
CdbOptionsPage
::
displayName
()
const
{
return
tr
(
"C
db
"
);
return
tr
(
"C
DB
"
);
}
QString
CdbOptionsPage
::
category
()
const
...
...
src/plugins/fakevim/fakevimoptions.ui
View file @
224b4303
...
...
@@ -128,7 +128,7 @@
<item
row=
"7"
column=
"0"
>
<widget
class=
"QLabel"
name=
"labelTabulator"
>
<property
name=
"toolTip"
>
<string>
v
im
's
"
tabstop
"
option
</string>
<string>
V
im
tabstop option
</string>
</property>
<property
name=
"text"
>
<string>
Tabulator size:
</string>
...
...
src/plugins/genericprojectmanager/genericproject.cpp
View file @
224b4303
...
...
@@ -495,7 +495,7 @@ GenericBuildSettingsWidget::GenericBuildSettingsWidget(GenericProject *project)
}
toolChainChooser
->
setCurrentIndex
(
selectedIndex
);
fl
->
addRow
(
tr
(
"Tool
C
hain:"
),
toolChainChooser
);
fl
->
addRow
(
tr
(
"Tool
c
hain:"
),
toolChainChooser
);
connect
(
toolChainChooser
,
SIGNAL
(
activated
(
int
)),
this
,
SLOT
(
toolChainSelected
(
int
)));
}
...
...
src/plugins/git/gitplugin.cpp
View file @
224b4303
...
...
@@ -724,7 +724,7 @@ bool GitPlugin::submitEditorAboutToClose(VCSBase::VCSBaseSubmitEditor *submitEdi
GitSettings
settings
=
m_gitClient
->
settings
();
const
bool
wantedPrompt
=
settings
.
promptToSubmit
;
const
VCSBase
::
VCSBaseSubmitEditor
::
PromptSubmitResult
answer
=
editor
->
promptSubmit
(
tr
(
"Closing
g
it
e
ditor"
),
editor
->
promptSubmit
(
tr
(
"Closing
G
it
E
ditor"
),
tr
(
"Do you want to commit the change?"
),
tr
(
"The commit message check failed. Do you want to commit the change?"
),
&
settings
.
promptToSubmit
,
!
m_submitActionTriggered
);
...
...
@@ -844,7 +844,7 @@ void GitPlugin::cleanRepository(const QString &directory)
return
;
}
if
(
files
.
isEmpty
())
{
QMessageBox
::
information
(
parent
,
tr
(
"Repository
c
lean"
),
QMessageBox
::
information
(
parent
,
tr
(
"Repository
C
lean"
),
tr
(
"The repository is clean."
));
return
;
}
...
...
@@ -910,7 +910,7 @@ void GitPlugin::applyPatch(const QString &workingDirectory, QString file)
if
(
file
.
isEmpty
())
{
const
QString
filter
=
tr
(
"Patches (*.patch *.diff)"
);
file
=
QFileDialog
::
getOpenFileName
(
Core
::
ICore
::
instance
()
->
mainWindow
(),
tr
(
"Choose
p
atch"
),
tr
(
"Choose
P
atch"
),
QString
(),
filter
);
if
(
file
.
isEmpty
())
return
;
...
...
src/plugins/help/helpplugin.cpp
View file @
224b4303
...
...
@@ -903,7 +903,7 @@ QToolBar *HelpPlugin::createWidgetToolBar()
m_closeButton
=
new
QToolButton
();
m_closeButton
->
setIcon
(
QIcon
(
QLatin1String
(
Core
::
Constants
::
ICON_CLOSE
)));
m_closeButton
->
setToolTip
(
tr
(
"Close current
P
age"
));
m_closeButton
->
setToolTip
(
tr
(
"Close current
p
age"
));
connect
(
m_closeButton
,
SIGNAL
(
clicked
()),
&
OpenPagesManager
::
instance
(),
SLOT
(
closeCurrentPage
()));
connect
(
&
OpenPagesManager
::
instance
(),
SIGNAL
(
pagesChanged
()),
this
,
...
...
src/plugins/projectexplorer/dependenciespanel.cpp
View file @
224b4303
...
...
@@ -128,7 +128,7 @@ bool DependenciesModel::setData(const QModelIndex &index, const QVariant &value,
emit
dataChanged
(
index
,
index
);
return
true
;
}
else
{
QMessageBox
::
warning
(
0
,
QCoreApplication
::
translate
(
"DependenciesModel"
,
"Unable to
a
dd
d
ependency"
),
QMessageBox
::
warning
(
0
,
QCoreApplication
::
translate
(
"DependenciesModel"
,
"Unable to
A
dd
D
ependency"
),
QCoreApplication
::
translate
(
"DependenciesModel"
,
"This would create a circular dependency."
));
}
}
else
if
(
c
==
Qt
::
Unchecked
)
{
...
...
src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp
View file @
224b4303
...
...
@@ -188,7 +188,7 @@ QWidget *QmlProjectRunConfiguration::createConfigurationWidget()
Utils
::
DebuggerLanguageChooser
*
debuggerLanguageChooser
=
new
Utils
::
DebuggerLanguageChooser
(
config
);
form
->
addRow
(
tr
(
"Main QML
F
ile:"
),
m_fileListCombo
.
data
());
form
->
addRow
(
tr
(
"Main QML
f
ile:"
),
m_fileListCombo
.
data
());
form
->
addRow
(
debuggerLabelWidget
,
debuggerLanguageChooser
);
debuggerLanguageChooser
->
setCppChecked
(
useCppDebugger
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment