mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
email localization fix
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
APP_NAME=Laravel
|
APP_NAME=Laravel
|
||||||
APP_ENV=local
|
APP_ENV=local
|
||||||
APP_KEY=base64:O3Cn1MQIeqjOtDEcU8L8FBB50VHqqr6vyBeCN3Qn47U=
|
APP_KEY=base64:wc7BQuWSAASCWebDAs/DPlMmLdYVm/fI434nwhZqMm0=
|
||||||
APP_DEBUG=true
|
APP_DEBUG=true
|
||||||
APP_URL=http://localhost
|
APP_URL=http://localhost
|
||||||
APP_DEMO=false
|
APP_DEMO=false
|
||||||
@@ -18,7 +18,7 @@ FILESYSTEM_DISK=local
|
|||||||
BROADCAST_DRIVER=null
|
BROADCAST_DRIVER=null
|
||||||
CACHE_DRIVER=file
|
CACHE_DRIVER=file
|
||||||
SESSION_DRIVER=file
|
SESSION_DRIVER=file
|
||||||
SESSION_LIFETIME=120
|
SESSION_LIFETIME="15120"
|
||||||
SCOUT_DRIVER=tntsearch
|
SCOUT_DRIVER=tntsearch
|
||||||
|
|
||||||
REDIS_HOST=127.0.0.1
|
REDIS_HOST=127.0.0.1
|
||||||
|
|||||||
19441
_ide_helper.php
19441
_ide_helper.php
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'version' => '2.2.1',
|
'version' => '2.2.2',
|
||||||
|
|
||||||
'is_demo' => env('APP_DEMO', false),
|
'is_demo' => env('APP_DEMO', false),
|
||||||
|
|
||||||
|
|||||||
@@ -75,15 +75,15 @@ class AppServiceProvider extends ServiceProvider
|
|||||||
private function setLocale(): void
|
private function setLocale(): void
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
$app_locale = get_settings('language') ?? 'en';
|
$appLocale = get_settings('language') ?? 'en';
|
||||||
} catch (\PDOException $e) {
|
} catch (\PDOException $e) {
|
||||||
$app_locale = 'en';
|
$appLocale = 'en';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set locale for application
|
// Set locale for application
|
||||||
app()->setLocale($app_locale);
|
app()->setLocale($appLocale);
|
||||||
|
|
||||||
// Set locale for carbon dates
|
// Set locale for carbon dates
|
||||||
setlocale(LC_TIME, $app_locale . '_' . mb_strtoupper($app_locale));
|
setlocale(LC_TIME, $appLocale . '_' . mb_strtoupper($appLocale));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -92,6 +92,11 @@ class User extends Authenticatable implements MustVerifyEmail
|
|||||||
return UserFactory::new();
|
return UserFactory::new();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function preferredLocale(): string
|
||||||
|
{
|
||||||
|
return get_settings('language') ?? 'en';
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get user used storage details
|
* Get user used storage details
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -19,25 +19,27 @@ class UpdateSettingValueController extends Controller
|
|||||||
'message' => 'The value was successfully updated',
|
'message' => 'The value was successfully updated',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
$inputName = $request->input('name');
|
||||||
|
|
||||||
// Abort in demo mode
|
// Abort in demo mode
|
||||||
if (is_demo()) {
|
if (is_demo()) {
|
||||||
return response()->json($message);
|
return response()->json($message);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Store image if exist
|
// Store image if exist
|
||||||
if ($request->hasFile($request->input('name'))) {
|
if ($request->hasFile($inputName)) {
|
||||||
// Find and update image path
|
// Find and update image path
|
||||||
Setting::updateOrCreate([
|
Setting::updateOrCreate([
|
||||||
'name' => $request->input('name'),
|
'name' => $inputName,
|
||||||
], [
|
], [
|
||||||
'value' => store_system_image($request, $request->input('name')),
|
'value' => store_system_image($request, $inputName),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
return response()->json($message);
|
return response()->json($message);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set paypal live option
|
// Set paypal live option
|
||||||
if ($request->input('name') === 'paypal_live') {
|
if ($inputName === 'paypal_live') {
|
||||||
setEnvironmentValue([
|
setEnvironmentValue([
|
||||||
'PAYPAL_IS_LIVE' => $request->input('value') ? 'true' : 'false',
|
'PAYPAL_IS_LIVE' => $request->input('value') ? 'true' : 'false',
|
||||||
]);
|
]);
|
||||||
@@ -51,9 +53,14 @@ class UpdateSettingValueController extends Controller
|
|||||||
return response()->json($message);
|
return response()->json($message);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Clear language cache
|
||||||
|
if ($inputName === 'language') {
|
||||||
|
cache()->forget('language');
|
||||||
|
}
|
||||||
|
|
||||||
// Find and update variable
|
// Find and update variable
|
||||||
Setting::updateOrCreate(
|
Setting::updateOrCreate(
|
||||||
['name' => $request->input('name')],
|
['name' => $inputName],
|
||||||
['value' => $request->input('value')]
|
['value' => $request->input('value')]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -15,9 +15,14 @@ class SendViaEmailAction
|
|||||||
string $token,
|
string $token,
|
||||||
User $user,
|
User $user,
|
||||||
): void {
|
): void {
|
||||||
|
// Get default app locale
|
||||||
|
$appLocale = get_settings('language') ?? 'en';
|
||||||
|
|
||||||
foreach ($emails as $email) {
|
foreach ($emails as $email) {
|
||||||
Notification::route('mail', $email)
|
Notification::route('mail', $email)
|
||||||
->notify(new SharedSendViaEmail($token, $user));
|
->notify(
|
||||||
|
(new SharedSendViaEmail($token, $user))->locale($appLocale)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,8 +36,13 @@ class InviteMembersIntoTeamFolderAction
|
|||||||
|
|
||||||
// Invite guest
|
// Invite guest
|
||||||
if (! $user) {
|
if (! $user) {
|
||||||
|
// Get default app locale
|
||||||
|
$appLocale = get_settings('language') ?? 'en';
|
||||||
|
|
||||||
Notification::route('mail', $member['email'])
|
Notification::route('mail', $member['email'])
|
||||||
->notify(new InvitationIntoTeamFolder($folder, $invitation));
|
->notify(
|
||||||
|
(new InvitationIntoTeamFolder($folder, $invitation))->locale($appLocale)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,8 +44,13 @@ class CreateUploadRequestController extends Controller
|
|||||||
if ($user) {
|
if ($user) {
|
||||||
$user->notify(new UploadRequestNotification($uploadRequest));
|
$user->notify(new UploadRequestNotification($uploadRequest));
|
||||||
} else {
|
} else {
|
||||||
|
// Get default app locale
|
||||||
|
$appLocale = get_settings('language') ?? 'en';
|
||||||
|
|
||||||
Notification::route('mail', $uploadRequest->email)
|
Notification::route('mail', $uploadRequest->email)
|
||||||
->notify(new UploadRequestNotification($uploadRequest));
|
->notify(
|
||||||
|
(new UploadRequestNotification($uploadRequest))->locale($appLocale)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -178,6 +178,7 @@ class UserAccountTest extends TestCase
|
|||||||
'canDownload' => true,
|
'canDownload' => true,
|
||||||
'canInviteTeamMembers' => true,
|
'canInviteTeamMembers' => true,
|
||||||
'canUpload' => true,
|
'canUpload' => true,
|
||||||
|
'reason' => null,
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
'relationships' => [
|
'relationships' => [
|
||||||
@@ -235,7 +236,7 @@ class UserAccountTest extends TestCase
|
|||||||
->getJson($verificationUrl)
|
->getJson($verificationUrl)
|
||||||
->assertRedirect('successfully-verified');
|
->assertRedirect('successfully-verified');
|
||||||
|
|
||||||
$this->assertNotNull(User::find($user->id)->get('email_verified_at'));
|
$this->assertNotNull(User::find($user->id)->email_verified_at);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user