feat: implement Arabic language support with RTL layout and automated translation scripts
This commit is contained in:
@@ -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">
|
||||
|
||||
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user