Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change tooltip strings for image occlusion center alignments #2815

Merged
merged 1 commit into from
Nov 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ chandraiyengar <github.com/chandraiyengar>
user1823 <92206575+user1823@users.noreply.github.com>
Gustaf Carefall <https://github.com/Gustaf-C>
virinci <github.com/virinci>
snowtimeglass <snowtimeglass@gmail.com>

********************

Expand Down
4 changes: 2 additions & 2 deletions ftl/core/editing.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ editing-image-occlusion-group = Group Selection
editing-image-occlusion-ungroup = Ungroup Selection
editing-image-occlusion-alignment = Alignment
editing-image-occlusion-align-left = Align Left
editing-image-occlusion-align-h-center = Center Horizontally
editing-image-occlusion-align-h-center = Align Horizontal Centers
editing-image-occlusion-align-right = Align Right
editing-image-occlusion-align-top = Align Top
editing-image-occlusion-align-v-center = Center Vertically
editing-image-occlusion-align-v-center = Align Vertical Centers
editing-image-occlusion-align-bottom = Align Bottom
editing-image-occlusion-select-tool = Select
editing-image-occlusion-zoom-tool = Zoom
Expand Down
4 changes: 2 additions & 2 deletions ts/image-occlusion/tools/more-tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const alignTools = [
id: 2,
icon: mdiAlignHorizontalCenter,
action: alignHorizontalCenter,
tooltip: tr.editingImageOcclusionAlignVCenter,
tooltip: tr.editingImageOcclusionAlignHCenter,
},
{
id: 3,
Expand All @@ -108,7 +108,7 @@ export const alignTools = [
id: 5,
icon: mdiAlignVerticalCenter,
action: alignVerticalCenter,
tooltip: tr.editingImageOcclusionAlignHCenter,
tooltip: tr.editingImageOcclusionAlignVCenter,
},
{
id: 6,
Expand Down