Does Uploadcare widget support Hebrew (RTL)?
The uploader has Hebrew localization, but it doesn’t support RTL out-of-the-box. However, it’s possible to have the widget display RTL content correctly with some CSS customization:
JS
UPLOADCARE_LOCALE = 'he';
CSS
html { direction: rtl; } .uploadcare--menu__items { padding-right: 0; } .uploadcare--panel, .uploadcare--menu__item { flex-direction: row-reverse; }