feat: implement Arabic language support with RTL layout and automated translation scripts

This commit is contained in:
Ümit Tunç
2026-05-19 23:57:03 +03:00
parent bbe26d22af
commit fc0ebf1a28
19 changed files with 1166 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" dir="{{ function_exists('current_language') && current_language() ? current_language()->direction : 'ltr' }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
+1 -1
View File
@@ -3,7 +3,7 @@
$favicon_path = setting('site_favicon');
?>
<!doctype html>
<html lang="{{ app()->getLocale() }}">
<html lang="{{ app()->getLocale() }}" dir="{{ function_exists('current_language') && current_language() ? current_language()->direction : 'ltr' }}">
<head>
<meta charset="utf-8">