mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
- language strings fix
- scrolling fix
This commit is contained in:
@@ -542,7 +542,7 @@ return [
|
||||
'others' => 'Others',
|
||||
'edit_page' => 'Edit Page',
|
||||
'my_profile' => 'My Profile',
|
||||
'change_password' => 'Change Password',
|
||||
'change_password' => 'Security & API',
|
||||
'create_user' => 'Create User',
|
||||
'delete_user' => 'Delete User',
|
||||
'routes_title.users_list' => 'User Management',
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
"/chunks/shared/authenticate.js": "/chunks/shared/authenticate.js?id=672e931a9fb0b672",
|
||||
"/chunks/not-found.js": "/chunks/not-found.js?id=9f6ce23ce5d969f1",
|
||||
"/chunks/temporary-unavailable.js": "/chunks/temporary-unavailable.js?id=f564565faa09d6d6",
|
||||
"/chunks/admin.js": "/chunks/admin.js?id=c83d81218bbc5798",
|
||||
"/chunks/admin.js": "/chunks/admin.js?id=1f197d019e3493c8",
|
||||
"/chunks/dashboard.js": "/chunks/dashboard.js?id=d2cfb9504b3e1c88",
|
||||
"/chunks/invoices.js": "/chunks/invoices.js?id=1416cbf6d1a593ac",
|
||||
"/chunks/subscriptions.js": "/chunks/subscriptions.js?id=5bf6704f5b599f36",
|
||||
@@ -57,7 +57,7 @@
|
||||
"/chunks/sign-up.js": "/chunks/sign-up.js?id=bb92bad614e60d45",
|
||||
"/chunks/forgotten-password.js": "/chunks/forgotten-password.js?id=50a1bc5e4ed86ec9",
|
||||
"/chunks/create-new-password.js": "/chunks/create-new-password.js?id=f652de052dba55c1",
|
||||
"/chunks/settings.js": "/chunks/settings.js?id=51418daed1304598",
|
||||
"/chunks/settings.js": "/chunks/settings.js?id=b5138240fe2c2c5e",
|
||||
"/chunks/profile.js": "/chunks/profile.js?id=0eca231475e267ab",
|
||||
"/chunks/settings-password.js": "/chunks/settings-password.js?id=3755d41eaf50a5b1",
|
||||
"/chunks/settings-storage.js": "/chunks/settings-storage.js?id=994b669a56fd417b",
|
||||
|
||||
6
resources/js/routes/routesAdmin.js
vendored
6
resources/js/routes/routesAdmin.js
vendored
@@ -23,7 +23,7 @@ const routesAdmin = [
|
||||
component: () => import(/* webpackChunkName: "chunks/invoices" */ '../views/Admin/Invoices'),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'routes_title.invoices',
|
||||
title: 'transactions',
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -32,7 +32,7 @@ const routesAdmin = [
|
||||
component: () => import(/* webpackChunkName: "chunks/subscriptions" */ '../views/Admin/Subscriptions'),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'Subscriptions',
|
||||
title: 'subscriptions',
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -343,7 +343,7 @@ const routesAdmin = [
|
||||
),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'email',
|
||||
title: 'environment',
|
||||
},
|
||||
},
|
||||
{
|
||||
|
||||
2
resources/js/routes/routesUser.js
vendored
2
resources/js/routes/routesUser.js
vendored
@@ -40,7 +40,7 @@ const routesUser = [
|
||||
component: () => import(/* webpackChunkName: "chunks/billing" */ '../views/User/Billing'),
|
||||
meta: {
|
||||
requiresAuth: true,
|
||||
title: 'subscription',
|
||||
title: 'billing',
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="h-screen md:overflow-hidden lg:flex w-full">
|
||||
<div class="h-screen lg:overflow-hidden lg:flex w-full">
|
||||
<!--On Top of App Components-->
|
||||
<FilePreview />
|
||||
<Spotlight />
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="h-screen md:overflow-hidden lg:flex w-full">
|
||||
<div class="h-screen lg:overflow-hidden lg:flex w-full">
|
||||
<!--On Top of App Components-->
|
||||
<FilePreview />
|
||||
<Spotlight />
|
||||
|
||||
@@ -121,7 +121,8 @@ class UpgradingVersionsController
|
||||
public function upgrade_to_2_0_16(): void
|
||||
{
|
||||
($this->updateLanguageStrings)([
|
||||
'write_feedback' => 'Help Us Improve',
|
||||
'write_feedback' => 'Help Us Improve',
|
||||
'change_password' => 'Security & API',
|
||||
]);
|
||||
|
||||
Artisan::call('cache:clear');
|
||||
|
||||
Reference in New Issue
Block a user