Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
78e5293f
Commit
78e5293f
authored
Apr 24, 2009
by
Friedemann Kleint
Browse files
Continue German translation.
parent
9e9523b8
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
share/qtcreator/translations/qtcreator_de.ts
View file @
78e5293f
This diff is collapsed.
Click to expand it.
share/qtcreator/translations/qtcreator_ja.ts
View file @
78e5293f
This diff is collapsed.
Click to expand it.
src/plugins/coreplugin/editmode.cpp
View file @
78e5293f
...
...
@@ -91,7 +91,7 @@ EditMode::~EditMode()
QString
EditMode
::
name
()
const
{
return
QLatin1String
(
"Edit"
);
return
tr
(
"Edit"
);
}
QIcon
EditMode
::
icon
()
const
...
...
src/plugins/coreplugin/welcomemode.cpp
View file @
78e5293f
...
...
@@ -52,7 +52,7 @@ struct WelcomeModePrivate
QWidget
*
m_widget
;
QWidget
*
m_welcomePage
;
Ui
::
w
elcomePage
ui
;
Ui
::
W
elcomePage
ui
;
WelcomeMode
::
WelcomePageData
lastData
;
};
...
...
src/plugins/coreplugin/welcomemode.ui
View file @
78e5293f
<?xml version="1.0" encoding="UTF-8"?>
<ui
version=
"4.0"
>
<class>
w
elcomePage
</class>
<widget
class=
"QWidget"
name=
"
w
elcomePage"
>
<class>
Core::Internal::W
elcomePage
</class>
<widget
class=
"QWidget"
name=
"
Core::Internal::W
elcomePage"
>
<property
name=
"geometry"
>
<rect>
<x>
0
</x>
...
...
src/plugins/find/findtoolbar.cpp
View file @
78e5293f
...
...
@@ -154,7 +154,7 @@ FindToolBar::FindToolBar(FindPlugin *plugin, CurrentDocumentFind *currentDocumen
if
(
QApplication
::
clipboard
()
->
supportsFindBuffer
())
{
m_enterFindStringAction
=
new
QAction
(
tr
(
"Enter Find String"
),
this
);
cmd
=
am
->
registerAction
(
m_enterFindStringAction
,
tr
(
"Find.EnterFindString"
),
globalcontext
);
cmd
=
am
->
registerAction
(
m_enterFindStringAction
,
QLatin1String
(
"Find.EnterFindString"
),
globalcontext
);
cmd
->
setDefaultKeySequence
(
QKeySequence
(
tr
(
"Ctrl+E"
)));
mfind
->
addAction
(
cmd
,
Constants
::
G_FIND_ACTIONS
);
connect
(
m_enterFindStringAction
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
putSelectionToFindClipboard
()));
...
...
src/plugins/projectexplorer/projectexplorer.cpp
View file @
78e5293f
...
...
@@ -114,9 +114,9 @@ bool CoreListenerCheckingForRunningBuild::coreAboutToClose()
QPushButton
*
closeAnyway
=
box
.
addButton
(
tr
(
"Cancel Build && Close"
),
QMessageBox
::
AcceptRole
);
QPushButton
*
cancelClose
=
box
.
addButton
(
tr
(
"Don't Close"
),
QMessageBox
::
RejectRole
);
box
.
setDefaultButton
(
cancelClose
);
box
.
setWindowTitle
(
tr
(
"Close QtCreator?"
));
box
.
setWindowTitle
(
tr
(
"Close Qt
Creator?"
));
box
.
setText
(
tr
(
"A project is currently being built."
));
box
.
setInformativeText
(
tr
(
"Do you want to cancel the build process and close QtCreator anyway?"
));
box
.
setInformativeText
(
tr
(
"Do you want to cancel the build process and close Qt
Creator anyway?"
));
box
.
exec
();
return
(
box
.
clickedButton
()
==
closeAnyway
);
}
...
...
Write
Preview
Supports
Markdown
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