diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json index 24b6cec21f..579e9a3590 100644 --- a/apps/presentationeditor/mobile/locale/en.json +++ b/apps/presentationeditor/mobile/locale/en.json @@ -421,7 +421,11 @@ "textZoom": "Zoom", "textZoomIn": "Zoom In", "textZoomOut": "Zoom Out", - "textZoomRotate": "Zoom and Rotate" + "textZoomRotate": "Zoom and Rotate", + "textMorph": "Morph", + "textMorphObjects": "Objects", + "textMorphWords": "Words", + "textMorphLetters": "Letters" }, "Settings": { "mniSlideStandard": "Standard (4:3)", diff --git a/apps/presentationeditor/mobile/src/view/edit/EditSlide.jsx b/apps/presentationeditor/mobile/src/view/edit/EditSlide.jsx index 7069055b70..d974e3a00b 100644 --- a/apps/presentationeditor/mobile/src/view/edit/EditSlide.jsx +++ b/apps/presentationeditor/mobile/src/view/edit/EditSlide.jsx @@ -134,7 +134,7 @@ const PageTransition = props => { {displayValue: _t.textCover, value: Asc.c_oAscSlideTransitionTypes.Cover}, {displayValue: _t.textClock, value: Asc.c_oAscSlideTransitionTypes.Clock}, {displayValue: _t.textZoom, value: Asc.c_oAscSlideTransitionTypes.Zoom}, - {displayValue: _t.textZoom, value: Asc.c_oAscSlideTransitionTypes.Morph} + {displayValue: _t.textMorph, value: Asc.c_oAscSlideTransitionTypes.Morph} ]; const _arrEffectType = [ {displayValue: _t.textSmoothly, value: Asc.c_oAscSlideTransitionParams.Fade_Smoothly}, @@ -158,7 +158,7 @@ const PageTransition = props => { {displayValue: _t.textZoomOut, value: Asc.c_oAscSlideTransitionParams.Zoom_Out}, {displayValue: _t.textZoomRotate, value: Asc.c_oAscSlideTransitionParams.Zoom_AndRotate}, {displayValue: _t.textMorphObjects, value: Asc.c_oAscSlideTransitionParams.Morph_Objects}, - {displayValue: _t.textMorphWord, value: Asc.c_oAscSlideTransitionParams.Morph_Words}, + {displayValue: _t.textMorphWords, value: Asc.c_oAscSlideTransitionParams.Morph_Words}, {displayValue: _t.textMorphLetters, value: Asc.c_oAscSlideTransitionParams.Morph_Letters} ];