Skip to content
GitLab
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
fc30904e
Commit
fc30904e
authored
Jul 02, 2009
by
Oswald Buddenhagen
Browse files
Make some more strings translatable.
parent
ee6d2df0
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/plugins/bookmarks/bookmarkmanager.cpp
View file @
fc30904e
...
...
@@ -747,7 +747,7 @@ BookmarkViewFactory::BookmarkViewFactory(BookmarkManager *bm)
QString
BookmarkViewFactory
::
displayName
()
{
return
"Bookmarks"
;
return
BookmarkView
::
tr
(
"Bookmarks"
)
;
}
QKeySequence
BookmarkViewFactory
::
activationSequence
()
...
...
src/plugins/coreplugin/editormanager/editormanager.cpp
View file @
fc30904e
...
...
@@ -1107,7 +1107,7 @@ static QString formatFileFilters(const Core::ICore *core, QString *selectedFilte
if
(
hasAllFilter
)
{
// prepend all files filter
// prepending instead of appending to work around a but in Qt/Mac
QString
allFilesFilter
=
QLatin1String
(
"All Files (*)"
);
QString
allFilesFilter
=
EditorManager
::
tr
(
"All Files (*)"
);
if
(
!
rc
.
isEmpty
())
allFilesFilter
+=
filterSeparator
;
rc
.
prepend
(
allFilesFilter
);
...
...
src/plugins/coreplugin/editormanager/openeditorsview.cpp
View file @
fc30904e
...
...
@@ -212,7 +212,7 @@ NavigationView OpenEditorsViewFactory::createWidget()
QString
OpenEditorsViewFactory
::
displayName
()
{
return
"Open Documents"
;
return
OpenEditorsWidget
::
tr
(
"Open Documents"
)
;
}
QKeySequence
OpenEditorsViewFactory
::
activationSequence
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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