Skip to content

Commit

Permalink
fix: image cropper context in translation
Browse files Browse the repository at this point in the history
  • Loading branch information
ankush committed Dec 28, 2023
1 parent 5b9b2a2 commit 64cb298
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frappe/public/js/frappe/file_uploader/ImageCropper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,19 +82,19 @@ export default {
aspect_ratio_buttons() {
return [
{
label: __("1:1"),
label: __("1:1", null, "Image Cropper"),
value: 1,
},
{
label: __("4:3"),
label: __("4:3"), null, "Image Cropper",
value: 4 / 3,
},
{
label: __("16:9"),
label: __("16:9"), null, "Image Cropper",
value: 16 / 9,
},
{
label: __("Free"),
label: __("Free"), null, "Image Cropper",
value: NaN,
},
];
Expand Down

0 comments on commit 64cb298

Please sign in to comment.