diff --git a/resources/lang/en/messages.php b/resources/lang/en/messages.php index 3b10f65..07d3fec 100644 --- a/resources/lang/en/messages.php +++ b/resources/lang/en/messages.php @@ -241,6 +241,18 @@ return [ 'Page Icons' => 'Page Icons+', 'Save links' => 'Save links+', + ########Page Blade######## + 'My Profile'=> 'My Profile+', + 'Profile Picture' => 'Profile Picture+', + 'Page URL' => 'Page URL+', + 'Display name' => 'Display name+', + 'Name' => 'Name:+', + 'Page Description' => 'Page Description+', + 'Show checkmark' => 'Show checkmark+', + 'disableverified' => 'You are a verified user. This setting allows you to hide your checkmark on your page.+', + 'Show share button' => 'Show share button+', + 'disablesharebutton' => 'This setting allows you to hide the share button on your page.+', + 'Config' => 'Config+', 'Advanced Config' => 'Advanced Config+', diff --git a/resources/views/studio/page.blade.php b/resources/views/studio/page.blade.php index 68a6f79..1b006b8 100755 --- a/resources/views/studio/page.blade.php +++ b/resources/views/studio/page.blade.php @@ -193,7 +193,7 @@ @endif
-

My Profile

+

{{__('messages.My Profile')}}

@@ -202,7 +202,7 @@ @csrf @if($page->littlelink_name != '')
- +
@endif @@ -217,7 +217,7 @@ $url = $_SERVER['REQUEST_URI']; if( strpos( $url, "no_page_name" ) == true ) echo 'You do not have a Page URL'; ?>
- +
{{ url('') }}/@
@@ -226,41 +226,41 @@
- +
{{--
-
Name:
+
{{__('messages.Name')}}
--}}
- +
@if(auth()->user()->role == 'admin' || auth()->user()->role == 'vip')
-
Show checkmark
-

You are a verified user. This setting allows you to hide your checkmark on your page.

+
{{__('messages.Show checkmark')}}
+

{{__('messages.disableverified')}}

id, 'checkmark') == true){echo 'checked';} ?> /> - +
@endif @endforeach
-
Show share button
-

This setting allows you to hide the share button on your page.

+
{{__('messages.Show share button')}}
+

{{__('messages.disablesharebutton')}}

id, 'disable-sharebtn') != "true"){echo 'checked';} ?> /> - +
- + @if(env('ALLOW_USER_HTML') === true)