Create a clientlibs of coralui3 with below code
(function () {
"use strict";
CUI.imageeditor.plugins.Crop.ASPECT_RATIOS = [
{name: '10_to_9', ratio: 0.9},
{name: '3_to_2', ratio: 0.667},
{name: '2_to_1', ratio: 0.5},
{name: '3_to_5', ratio: 0.5714},
{name: '7_to_5', ratio: 0.714},
{name: '14_to_5', ratio: 0.357},
{name: '9_to_5', ratio: 0.55}
];
CUI.imageeditor.plugins.PluginRegistry.register('crop', CUI.imageeditor.plugins.Crop);
for (var key in CUI.imageeditor.strings) {
if (CUI.imageeditor.strings.hasOwnProperty(key)) {
CUI.imageeditor.strings[key]["crop.aspect_ratios.10_to_9"] = "10 : 9";
CUI.imageeditor.strings[key]["crop.aspect_ratios.3_to_2"] = "3 : 2";
CUI.imageeditor.strings[key]["crop.aspect_ratios.2_to_1"] = "2 : 1";
CUI.imageeditor.strings[key]["crop.aspect_ratios.3_to_5"] = "5 : 3";
CUI.imageeditor.strings[key]["crop.aspect_ratios.7_to_5"] = "7 : 5";
CUI.imageeditor.strings[key]["crop.aspect_ratios.14_to_5"] = "14 : 5";
CUI.imageeditor.strings[key]["crop.aspect_ratios.9_to_5"] = "9 : 5";
}
}
})();