fix(i18n): Persian brand (فلت‌رندر) + localize aspect 'All Sizes'

- nav/footer/admin brand → فلت‌رندر in fa (FlatRender in en)
- aspect-ratio 'All Sizes' option now uses t('allSizes') (همه اندازه‌ها)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
soroush.asadi
2026-06-04 05:24:27 +03:30
parent 31809336a2
commit a016af804a
3 changed files with 9 additions and 7 deletions
@@ -69,7 +69,7 @@ export function VideoTemplatesSizeSelect({
<SelectContent>
{ASPECT_RATIO_OPTIONS.map((option) => (
<SelectItem key={option.id} value={option.id}>
{option.label}
{option.id === "all" ? t("allSizes") : option.label}
</SelectItem>
))}
</SelectContent>