feat(i18n): Hebrew locale + full RTL support

This commit is contained in:
Shuki Vaknin
2026-07-08 00:07:34 +02:00
committed by Linus Rath
parent 8904d724bb
commit 22418c17cf
113 changed files with 3958 additions and 494 deletions
+2 -2
View File
@@ -123,7 +123,7 @@ export function ContextMenuItem({
role="menuitem"
disabled={disabled}
className={cn(
"w-full px-3 py-1.5 text-sm text-left flex items-center gap-2",
"w-full px-3 py-1.5 text-sm text-start flex items-center gap-2",
"transition-colors duration-150",
"focus:outline-none focus:bg-muted",
disabled && "opacity-50 cursor-not-allowed",
@@ -139,7 +139,7 @@ export function ContextMenuItem({
{Icon && <Icon className="w-4 h-4 flex-shrink-0" />}
<span className="flex-1">{label}</span>
{shortcut && (
<span className="text-xs text-muted-foreground ml-auto">{shortcut}</span>
<span className="text-xs text-muted-foreground ms-auto">{shortcut}</span>
)}
</button>
);