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
Multimedia
Kdenlive
Commits
8acc4245
Commit
8acc4245
authored
Mar 01, 2021
by
Yuri Chornoivan
Browse files
Fix disambiguations found by gettext 0.21
parent
7fcdbfde
Pipeline
#52688
canceled with stage
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/assets/keyframes/model/keyframemodellist.cpp
View file @
8acc4245
...
...
@@ -233,7 +233,7 @@ bool KeyframeModelList::updateKeyframe(GenTime oldPos, GenTime pos, const QVaria
}
return
param
->
moveKeyframe
(
oldPos
,
pos
,
value
,
undo
,
redo
);
};
return
applyOperation
(
op
,
logUndo
?
i18n
(
"Move keyframe"
)
:
QString
());
return
applyOperation
(
op
,
logUndo
?
i18n
(
"@action"
,
"Move keyframe"
)
:
QString
());
}
bool
KeyframeModelList
::
updateKeyframe
(
GenTime
pos
,
const
QVariant
&
value
,
const
QPersistentModelIndex
&
index
,
QUndoCommand
*
parentCommand
)
...
...
src/bin/bincommands.cpp
View file @
8acc4245
...
...
@@ -50,7 +50,7 @@ MoveBinFolderCommand::MoveBinFolderCommand(Bin *bin, QString clipId, QString old
,
m_oldParentId
(
std
::
move
(
oldParentId
))
,
m_newParentId
(
std
::
move
(
newParentId
))
{
setText
(
i18n
(
"Move Clip"
));
setText
(
i18n
c
(
"@action"
,
"Move Clip"
));
}
// virtual
void
MoveBinFolderCommand
::
undo
()
...
...
src/project/clipstabilize.cpp
View file @
8acc4245
...
...
@@ -43,7 +43,7 @@ ClipStabilize::ClipStabilize(const std::vector<QString> &binIds, QString filterN
setFont
(
QFontDatabase
::
systemFont
(
QFontDatabase
::
SmallestReadableFont
));
setupUi
(
this
);
setWindowTitle
(
i18n
(
"Stabilize Clip"
));
auto_add
->
setText
(
i18np
(
"Add clip to project"
,
"Add clips to project"
,
m_binIds
.
size
()));
auto_add
->
setText
(
i18n
c
p
(
"@action"
,
"Add clip to project"
,
"Add clips to project"
,
m_binIds
.
size
()));
auto_add
->
setChecked
(
KdenliveSettings
::
add_new_clip
());
// QString stylesheet = EffectStackView2::getStyleSheet();
...
...
src/timeline2/model/timelinemodel.cpp
View file @
8acc4245
...
...
@@ -3333,7 +3333,7 @@ bool TimelineModel::requestTrackInsertion(int position, int &id, const QString &
Fun
redo
=
[]()
{
return
true
;
};
bool
result
=
requestTrackInsertion
(
position
,
id
,
trackName
,
audioTrack
,
undo
,
redo
);
if
(
result
)
{
PUSH_UNDO
(
undo
,
redo
,
i18n
(
"Insert Track"
));
PUSH_UNDO
(
undo
,
redo
,
i18n
c
(
"@action"
,
"Insert Track"
));
}
TRACE_RES
(
result
);
return
result
;
...
...
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