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
e1ef25fb
Commit
e1ef25fb
authored
Mar 02, 2021
by
Yuri Chornoivan
Browse files
Fix disambiguations found by gettext 0.21
parent
7fd39600
Pipeline
#52820
passed with stage
in 10 minutes and 23 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/assets/keyframes/model/keyframemodel.cpp
View file @
e1ef25fb
...
...
@@ -255,7 +255,7 @@ bool KeyframeModel::offsetKeyframes(int oldPos, int pos, bool logUndo)
res
&=
moveKeyframe
(
t
,
t
+
diff
,
QVariant
(),
undo
,
redo
);
}
if
(
res
&&
logUndo
)
{
PUSH_UNDO
(
undo
,
redo
,
i18n
(
"Move keyframes"
));
PUSH_UNDO
(
undo
,
redo
,
i18n
c
(
"@action"
,
"Move keyframes"
));
}
return
res
;
}
...
...
@@ -276,7 +276,7 @@ bool KeyframeModel::moveKeyframe(GenTime oldPos, GenTime pos, QVariant newVal, b
Fun
redo
=
[]()
{
return
true
;
};
bool
res
=
moveKeyframe
(
oldPos
,
pos
,
std
::
move
(
newVal
),
undo
,
redo
);
if
(
res
&&
logUndo
)
{
PUSH_UNDO
(
undo
,
redo
,
i18n
(
"Move keyframe"
));
PUSH_UNDO
(
undo
,
redo
,
i18n
c
(
"@action"
,
"Move keyframe"
));
}
return
res
;
}
...
...
src/timeline2/view/timelinecontroller.cpp
View file @
e1ef25fb
...
...
@@ -665,7 +665,7 @@ void TimelineController::addTrack(int tid)
}
}
if
(
result
)
{
pCore
->
pushUndo
(
undo
,
redo
,
addAVTrack
||
tracksCount
>
1
?
i18n
(
"Insert Tracks"
)
:
i18n
(
"Insert Track"
));
pCore
->
pushUndo
(
undo
,
redo
,
addAVTrack
||
tracksCount
>
1
?
i18n
c
(
"@action"
,
"Insert Tracks"
)
:
i18n
c
(
"@action"
,
"Insert Track"
));
}
else
{
pCore
->
displayMessage
(
i18n
(
"Could not insert track"
),
ErrorMessage
,
500
);
undo
();
...
...
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