[DE mobile] Fix Bug 59776

This commit is contained in:
SergeyEzhin 2022-11-21 14:43:50 +04:00
parent ced1e0ade5
commit a96c7a5bf4
4 changed files with 8 additions and 7 deletions

View file

@ -331,7 +331,8 @@
"textRemoveShape": "Remove Shape",
"textRemoveTable": "Remove Table",
"textRemoveTableContent": "Remove table of contents",
"textReorder": "Reorder",
"del_textReorder": "Reorder",
"textArrange": "Arrange",
"textRepeatAsHeaderRow": "Repeat as Header Row",
"textReplace": "Replace",
"textReplaceImage": "Replace Image",

View file

@ -456,7 +456,7 @@ const PageReorder = props => {
}
return (
<Page>
<Navbar title={_t.textReorder} backLink={_t.textBack}>
<Navbar title={t('Edit.textArrange')} backLink={_t.textBack}>
{Device.phone &&
<NavRight>
<Link sheetClose='#edit-sheet'>
@ -503,7 +503,7 @@ const EditChart = props => {
onOverlap: props.onOverlap,
onWrapDistance: props.onWrapDistance
}}></ListItem>
<ListItem title={t('Edit.textReorder')} link='/edit-chart-reorder/' routeProps={{
<ListItem title={t('Edit.textArrange')} link='/edit-chart-reorder/' routeProps={{
onReorder: props.onReorder
}}></ListItem>
</List>

View file

@ -281,7 +281,7 @@ const PageReorder = props => {
}
return (
<Page>
<Navbar title={_t.textReorder} backLink={_t.textBack}>
<Navbar title={t('Edit.textArrange')} backLink={_t.textBack}>
{Device.phone &&
<NavRight>
<Link sheetClose='#edit-sheet'>
@ -330,7 +330,7 @@ const EditImage = props => {
onReplaceByFile: props.onReplaceByFile,
onReplaceByUrl: props.onReplaceByUrl
}}></ListItem>
{ wrapType !== 'inline' && <ListItem title={_t.textReorder} link='/edit-image-reorder/' routeProps={{
{ wrapType !== 'inline' && <ListItem title={t('Edit.textArrange')} link='/edit-image-reorder/' routeProps={{
onReorder: props.onReorder
}}></ListItem> }
</List>

View file

@ -477,7 +477,7 @@ const PageReorder = props => {
return (
<Page>
<Navbar title={_t.textReorder} backLink={_t.textBack}>
<Navbar title={t('Edit.textArrange')} backLink={_t.textBack}>
{Device.phone &&
<NavRight>
<Link sheetClose='#edit-sheet'>
@ -565,7 +565,7 @@ const EditShape = props => {
onReplace: props.onReplace
}}></ListItem>
}
{(wrapType !== 'inline' && !isSmartArtInternal && settings.indexOf('image') === -1) && <ListItem title={_t.textReorder} link='/edit-shape-reorder/' routeProps={{
{(wrapType !== 'inline' && !isSmartArtInternal && settings.indexOf('image') === -1) && <ListItem title={t('Edit.textArrange')} link='/edit-shape-reorder/' routeProps={{
onReorder: props.onReorder
}}></ListItem> }
</List>