diff --git a/app/Console/Commands/SetupDevEnvironment.php b/app/Console/Commands/SetupDevEnvironment.php
index 14168592..17858a05 100644
--- a/app/Console/Commands/SetupDevEnvironment.php
+++ b/app/Console/Commands/SetupDevEnvironment.php
@@ -24,6 +24,7 @@ class SetupDevEnvironment extends Command
* @var string
*/
protected $signature = 'setup:dev';
+ protected $license = 'Regular';
/**
* The console command description.
@@ -66,7 +67,7 @@ class SetupDevEnvironment extends Command
$this->info('Storing default settings and content...');
$this->store_default_settings();
$this->setup->seed_default_pages();
- $this->setup->seed_default_settings('Extended');
+ $this->setup->seed_default_settings($this->license);
$this->setup->seed_default_language();
$this->info('Creating default admin...');
@@ -832,7 +833,7 @@ class SetupDevEnvironment extends Command
],
[
'name' => 'license',
- 'value' => 'Extended',
+ 'value' => $this->license,
],
[
'name' => 'purchase_code',
diff --git a/app/Http/Controllers/App/AppFunctionsController.php b/app/Http/Controllers/App/AppFunctionsController.php
index 030cc03a..ffab2e33 100644
--- a/app/Http/Controllers/App/AppFunctionsController.php
+++ b/app/Http/Controllers/App/AppFunctionsController.php
@@ -7,6 +7,7 @@ use App\Http\Mail\SendContactMessage;
use App\Http\Resources\PricingCollection;
use App\Http\Requests\PublicPages\SendContactMessageRequest;
use App\Http\Resources\PageResource;
+use App\Models\Language;
use App\Models\Setting;
use App\Models\Page;
use App\Models\Share;
@@ -184,4 +185,24 @@ class AppFunctionsController extends Controller
->values()
->all();
}
+
+ /**
+ * Get language translations for frontend app
+ *
+ * @param $lang
+ * @return array
+ */
+ public function get_translations($lang)
+ {
+ $translations = Cache::rememberForever("language-strings-$lang", function () use ($lang) {
+
+ return Language::whereLocale($lang)
+ ->firstOrFail()
+ ->languageStrings;
+ });
+
+ return $translations->map(function ($string) {
+ return [$string->key => $string->value];
+ })->collapse();
+ }
}
diff --git a/app/Http/Controllers/Auth/AuthController.php b/app/Http/Controllers/Auth/AuthController.php
index bbdcf216..a2f1bccf 100644
--- a/app/Http/Controllers/Auth/AuthController.php
+++ b/app/Http/Controllers/Auth/AuthController.php
@@ -28,7 +28,7 @@ class AuthController extends Controller
->first();
if (! $user) {
- return response(__('vuefilemanager.user_not_fount'), 404);
+ return response(__t('user_not_fount'), 404);
}
return [
diff --git a/app/Http/Controllers/Sharing/BrowseShareController.php b/app/Http/Controllers/Sharing/BrowseShareController.php
index a2012f3c..e38696b4 100644
--- a/app/Http/Controllers/Sharing/BrowseShareController.php
+++ b/app/Http/Controllers/Sharing/BrowseShareController.php
@@ -81,7 +81,7 @@ class BrowseShareController extends Controller
->cookie('share_session', $cookie, 43200);
}
- abort(401, __('vuefilemanager.incorrect_password'));
+ abort(401, __t('incorrect_password'));
}
/**
diff --git a/app/Models/Folder.php b/app/Models/Folder.php
index 26b17a81..a12314e9 100644
--- a/app/Models/Folder.php
+++ b/app/Models/Folder.php
@@ -104,7 +104,7 @@ class Folder extends Model
*/
public function getCreatedAtAttribute()
{
- return format_date(set_time_by_user_timezone($this->attributes['created_at']), __('vuefilemanager.time'));
+ return format_date(set_time_by_user_timezone($this->attributes['created_at']), __t('time'));
}
/**
@@ -116,7 +116,7 @@ class Folder extends Model
{
if (!$this->attributes['deleted_at']) return null;
- return format_date(set_time_by_user_timezone($this->attributes['deleted_at']), __('vuefilemanager.time'));
+ return format_date(set_time_by_user_timezone($this->attributes['deleted_at']), __t('time'));
}
/**
diff --git a/app/Services/HelperService.php b/app/Services/HelperService.php
index 35989079..8c364648 100644
--- a/app/Services/HelperService.php
+++ b/app/Services/HelperService.php
@@ -330,9 +330,18 @@ class HelperService
*/
function create_default_language_strings($license, $locale)
{
- $strings = collect(config('language_strings.' . strtolower($license)))
- ->map(function ($value, $key) use ($locale) {
+ $translations = [
+ 'extended' => collect([
+ config("language-strings.extended"),
+ config("language-strings.regular")
+ ])->collapse(),
+ 'regular' => collect(
+ config("language-strings.regular")
+ ),
+ ];
+ $translations = $translations[strtolower($license)]
+ ->map(function ($value, $key) use ($locale) {
return [
'lang' => $locale,
'value' => $value,
@@ -340,6 +349,7 @@ class HelperService
];
})->toArray();
- DB::table('language_strings')->insert($strings);
+ DB::table('language_strings')
+ ->insert($translations);
}
}
\ No newline at end of file
diff --git a/app/Services/SetupService.php b/app/Services/SetupService.php
index 607734be..2dd4c6a5 100644
--- a/app/Services/SetupService.php
+++ b/app/Services/SetupService.php
@@ -5,9 +5,7 @@ namespace App\Services;
use App\Models\Language;
use App\Models\Page;
use App\Models\Setting;
-use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Storage;
-use Symfony\Component\Console\Helper\Helper;
class SetupService
{
diff --git a/config/language_strings.php b/config/language-strings.php
similarity index 53%
rename from config/language_strings.php
rename to config/language-strings.php
index 4b88bcbc..ae0a3cb1 100644
--- a/config/language_strings.php
+++ b/config/language-strings.php
@@ -2,37 +2,12 @@
return [
'extended' => [
- "actions.close" => "Close",
- "actions.create_folder" => "Create folder",
- "actions.delete" => "Delete item",
- "actions.download" => "Download item",
- "actions.info_panel" => "Info panel",
- "actions.move" => "Move item",
- "actions.preview" => "Change preview",
- "actions.print" => "Print item",
- "actions.share" => "Share item",
- "actions.sorting_view" => "Sorting and View",
- "actions.upload" => "Upload file",
"activation.stripe.button" => "Set up your Stripe account",
"activation.stripe.description" => "To charge your users, please set up your Stripe account credentials.",
"activation.stripe.title" => "Your Stripe account is not set",
- "admin_menu.dashboard" => "Dashboard",
"admin_menu.invoices" => "Invoices",
- "admin_menu.pages" => "Pages",
- "admin_menu.plans" => "Plans",
- "admin_menu.settings" => "Settings",
- "admin_menu.users" => "Users",
- "admin_menu.languages" => "Languages",
- "admin_page_dashboard.backer_button" => "Help Us Improve",
- "admin_page_dashboard.license" => "License",
- "admin_page_dashboard.version" => "Version",
- "admin_page_dashboard.w_latest_users.title" => "Latest Registrations",
"admin_page_dashboard.w_total_premium.link" => "Show All Plans",
"admin_page_dashboard.w_total_premium.title" => "Total Premium Users",
- "admin_page_dashboard.w_total_space.link" => "Show All Users",
- "admin_page_dashboard.w_total_space.title" => "Total Space Used",
- "admin_page_dashboard.w_total_users.link" => "Show All Users",
- "admin_page_dashboard.w_total_users.title" => "Total Users",
"admin_page_invoices.empty.description" => "All customers invoices will be showed here.",
"admin_page_invoices.empty.title" => "You don’t have any invoices yet",
"admin_page_invoices.table.number" => "Invoice Number",
@@ -71,57 +46,11 @@ return [
"admin_page_plans.tabs.delete" => "Delete Plan",
"admin_page_plans.tabs.settings" => "Settings",
"admin_page_plans.tabs.subscribers" => "Subscribers",
- "admin_page_user.change_capacity" => "Change Capacity",
- "admin_page_user.create_user.avatar" => "Avatar",
- "admin_page_user.create_user.group_details" => "Account Details",
- "admin_page_user.create_user.group_settings" => "Account Settings",
- "admin_page_user.create_user.label_conf_pass" => "Confirm password",
- "admin_page_user.create_user.label_email" => "Type E-mail",
- "admin_page_user.create_user.label_name" => "Type full name",
- "admin_page_user.create_user.submit" => "Create User",
- "admin_page_user.delete_user" => "Delete User",
- "admin_page_user.invoices.empty" => "User don't have any invoices yet.",
- "admin_page_user.label_change_capacity" => "Type storage capacity in GB",
- "admin_page_user.label_delete_user" => "Type with Case Sensitive user name ‘{user}‘",
- "admin_page_user.label_person_info" => "Personal Information",
- "admin_page_user.placeholder_delete_user" => "Type here",
- "admin_page_user.save_role" => "Save Role",
- "admin_page_user.select_role" => "Select user role",
- "admin_page_user.send_password_link" => "Send Password Reset Link",
"admin_page_user.subscription.empty" => "User don't have any subscription yet.",
"admin_page_user.subscription.interval_mo" => "Monthly",
- "admin_page_user.table.action" => "Action",
- "admin_page_user.table.created_at" => "Registered",
- "admin_page_user.table.name" => "User",
"admin_page_user.table.plan" => "Subscription Plan",
- "admin_page_user.table.role" => "Role",
- "admin_page_user.table.storage_capacity" => "Storage Capacity",
- "admin_page_user.table.storage_used" => "Storage Used",
- "admin_page_user.tabs.delete" => "Delete User",
- "admin_page_user.tabs.detail" => "Detail",
"admin_page_user.tabs.invoices" => "Invoices",
- "admin_page_user.tabs.password" => "Password",
- "admin_page_user.tabs.storage" => "Storage Usage",
"admin_page_user.tabs.subscription" => "Subscription",
- "admin_pages.form.content" => "Content",
- "admin_pages.form.content_plac" => "Type your content here...",
- "admin_pages.form.slug" => "Slug",
- "admin_pages.form.title" => "Title",
- "admin_pages.form.title_plac" => "Title name",
- "admin_pages.form.visibility" => "Visibility",
- "admin_pages.form.visibility_help" => "Status of your page visibility on website.",
- "admin_pages.table.page" => "Page",
- "admin_pages.table.slug" => "Slug",
- "admin_pages.table.status" => "Status",
- "admin_settings.appearance.description" => "App Description",
- "admin_settings.appearance.description_plac" => "Type your app description",
- "admin_settings.appearance.favicon" => "App Favicon (optional)",
- "admin_settings.appearance.logo" => "App Logo (optional)",
- "admin_settings.appearance.logo_horizontal" => "App Logo Horizontal (optional)",
- "admin_settings.appearance.section_appearance" => "Appearance",
- "admin_settings.appearance.section_general" => "General Settings",
- "admin_settings.appearance.title" => "App Title",
- "admin_settings.appearance.title_plac" => "Type your app title",
"admin_settings.billings.address" => "Billing Address",
"admin_settings.billings.address_plac" => "Type your billing address",
"admin_settings.billings.city" => "Billing City",
@@ -140,42 +69,6 @@ return [
"admin_settings.billings.state_plac" => "Type your billing state",
"admin_settings.billings.vat" => "VAT Number",
"admin_settings.billings.vat_plac" => "Type your VAT number",
- "admin_settings.email.driver" => "Mail Driver",
- "admin_settings.email.driver_plac" => "Type your mail driver",
- "admin_settings.email.email_disclaimer" => "This form is not fully pre-filled for security reasons. Your email settings is available in your .env file. For apply new Email settings, please confirm your options by button at the end of formular.",
- "admin_settings.email.encryption" => "Mail Encryption",
- "admin_settings.email.encryption_plac" => "Select your mail encryption",
- "admin_settings.email.host" => "Mail Host",
- "admin_settings.email.host_plac" => "Type your mail host",
- "admin_settings.email.password" => "Mail Password",
- "admin_settings.email.password_plac" => "Type your mail password",
- "admin_settings.email.port" => "Mail Port",
- "admin_settings.email.port_plac" => "Type your mail port",
- "admin_settings.email.save_button" => "Save Email Settings",
- "admin_settings.email.section_email" => "Email Setup",
- "admin_settings.email.username" => "Mail Username",
- "admin_settings.email.username_plac" => "Type your mail username",
- "admin_settings.others.allow_registration" => "Allow User Registration",
- "admin_settings.others.allow_registration_help" => "You can disable public registration for new users. You will still able to
create new users in administration panel.",
- "admin_settings.others.cache_clear" => "Clear Cache",
- "admin_settings.others.cache_disclaimer" => "Did you change anything in your .env file or change your Stripe credentials? Then clear your cache.",
- "admin_settings.others.contact_email" => "Contact Email",
- "admin_settings.others.contact_email_plac" => "Type your contact email",
- "admin_settings.others.default_storage" => "Default Storage Space for User Accounts",
- "admin_settings.others.default_storage_plac" => "Set default storage space in GB",
- "admin_settings.others.google_analytics" => "Google Analytics Code (optional)",
- "admin_settings.others.google_analytics_plac" => "Paste your Google Analytics Code",
- "admin_settings.others.mimetypes_blacklist" => "Mimetypes Blacklist",
- "admin_settings.others.mimetypes_blacklist_help" => "If you want to prevent upload some type of files, just add them to blacklist like this: x-php,mp3,jpeg
Use a comma between each mimetype. Don't use a dot before mimetypes.",
- "admin_settings.others.mimetypes_blacklist_plac" => "Add mimetypes to Blacklist",
- "admin_settings.others.section_cache" => "Application Cache",
- "admin_settings.others.section_others" => "Others Settings",
- "admin_settings.others.section_user" => "Users and Storage",
- "admin_settings.others.storage_limit" => "Storage Limitation",
- "admin_settings.others.storage_limit_help" => "If this value is off, all users will have infinity storage capacity and you won't be
able to charge your users for storage plan.",
- "admin_settings.others.upload_limit" => "Upload Limit",
- "admin_settings.others.upload_limit_help" => "If you want to set max file size limit on single upload, add size of your limit in MB. E.g. 100 means 100 MB and 2 000 means 2 000 MB limit.",
- "admin_settings.others.upload_limit_plac" => "Type your upload limit in MB",
"admin_settings.payments.allow_payments" => "Allow Subscription Payments",
"admin_settings.payments.button_submit" => "Test and Save Stripe",
"admin_settings.payments.button_testing" => "Testing Stripe Connection",
@@ -192,187 +85,24 @@ return [
"admin_settings.payments.stripe_setup" => "Stripe Setup",
"admin_settings.payments.stripe_webhook_key_plac" => "Paste your stripe webhook secret",
"admin_settings.payments.webhook_url" => "Stripe webhook URL",
- "admin_settings.tabs.appearance" => "Appearance",
"admin_settings.tabs.billings" => "Billings",
- "admin_settings.tabs.email" => "Email",
- "admin_settings.tabs.others" => "Application",
"admin_settings.tabs.payments" => "Payments",
- "alerts.error_confirm" => "That’s horrible!",
- "alerts.leave_to_sign_in" => "Do you really want to leave?",
- "alerts.success_confirm" => "Awesome!",
- "context_menu.add_folder" => "Add Folder",
- "context_menu.add_to_favourites" => "Add to Favourites",
- "context_menu.create_folder" => "Create Folder",
- "context_menu.delete" => "Delete",
- "context_menu.detail" => "Detail",
- "context_menu.download" => "Download",
- "context_menu.empty_trash" => "Empty Trash",
- "context_menu.log_out" => "Log Out",
- "context_menu.move" => "Move",
- "context_menu.no_options" => "No Options Available",
- "context_menu.profile_settings" => "Profile Settings",
- "context_menu.remove_from_favourites" => "Remove Favourite",
- "context_menu.rename" => "Rename",
- "context_menu.restore" => "Restore",
- "context_menu.select" => "Select",
- "context_menu.share" => "Share",
- "context_menu.share_cancel" => "Cancel Sharing",
- "context_menu.share_edit" => "Edit Sharing",
- "context_menu.upload" => "Upload",
- "context_menu.zip_folder" => "Zip and Download",
- "cookie_disclaimer.button" => "cookies policy",
- "cookie_disclaimer.description" => "By browsing this website you are agreeing to our {0}.",
- "datatable.paginate_info" => "Showing 1 - {visible} from {total} records",
- "empty_page.call_to_action" => "Upload Files",
- "empty_page.description" => "Upload some files here easily via upload button.",
- "empty_page.title" => "Upload Your First File",
- "errors.capacity_digit" => "The storage capacity must be lower than 10 digit number.",
- "file_detail.author" => "Author",
- "file_detail.author_participant" => "Public Participant",
- "file_detail.created_at" => "Created at",
- "file_detail.items" => "Items",
- "file_detail.selected_multiple" => "Selected Multiple Items",
- "file_detail.shared" => "Shared",
- "file_detail.size" => "Size",
- "file_detail.where" => "Where",
- "file_detail_meta.aperature" => "F Number",
- "file_detail_meta.aperture_value" => "Aperture Value",
- "file_detail_meta.author" => "Author",
- "file_detail_meta.camera_lens" => "Camera Lens",
- "file_detail_meta.color_space" => "Color Space",
- "file_detail_meta.dimension" => "Dimensions",
- "file_detail_meta.exposure" => "Exposure Time",
- "file_detail_meta.focal" => "Focal Length",
- "file_detail_meta.iso" => "ISO",
- "file_detail_meta.latitude" => "Latitude",
- "file_detail_meta.longitude" => "Longitude",
- "file_detail_meta.make" => "Camera",
- "file_detail_meta.meta_data" => "Metadata",
- "file_detail_meta.model" => "Model",
- "file_detail_meta.resolution" => "Resolution",
- "file_detail_meta.time_data" => "Content Created",
- "folder.empty" => "Empty",
- "folder.item_counts" => "{count} Item | {count} Items",
- "global.active" => "Active",
- "global.admin" => "Admin",
- "global.cancel" => "Cancel",
- "global.canceled" => "Canceled",
- "global.confirm_action" => "Yes, I'm sure",
- "global.default" => "Default",
- "global.free" => "Free",
- "global.get_it" => "Get It",
- "global.incomplete" => "Incomplete",
- "global.menu" => "Menu",
"global.monthly_ac" => "Mo.",
- "global.or" => "or",
"global.premium" => "Premium",
"global.saas" => "Services",
"global.subscription" => "Subscription",
- "global.total" => "Total",
"global.upgrade_plan" => "Upgrade Plan",
"incomplete_payment.description" => "Your latest payment is incomplete. {0}",
"incomplete_payment.href" => "Please confirm your payment.",
- "input_image.supported" => "Supported formats are .png, .jpg, .jpeg.",
- "input_image.title" => "Upload Image",
- "inputs.placeholder_search_files" => "Search files or folders...",
- "item_thumbnail.deleted_at" => "Deleted {time}",
- "item_thumbnail.original_location" => "Original Location",
- "locations.home" => "Files",
- "locations.logout" => "Log Out",
- "locations.profile" => "Profile",
- "locations.settings" => "Settings",
- "locations.shared" => "Shared",
- "locations.trash" => "Trash",
- "menu.admin" => "Administration",
- "menu.files" => "Files",
"menu.invoices" => "Invoices",
- "menu.latest" => "Recent Uploads",
- "menu.logout" => "Log Out",
- "menu.password" => "Password",
"menu.payment_cards" => "Payment Cards",
- "menu.profile" => "Profile Settings",
- "menu.settings" => "Settings",
- "menu.shared" => "Shared Files",
- "menu.storage" => "Storage",
"menu.subscription" => "Subscription",
- "menu.trash" => "Trash",
- "messages.nothing_from_participants" => "You don't have any uploads from other users.",
- "messages.nothing_to_preview" => "There is nothing to preview.",
- "messages.nothing_was_found" => "Nothing was found.",
- "mobile_selecting.deselect_all" => "Deselect All",
- "mobile_selecting.done" => "Done",
- "mobile_selecting.select_all" => "Select All",
"notice.stripe_activation" => "Your Stripe account is not set. To charging your users please {0}.",
"notice.stripe_activation_button" => "set up your Stripe account",
- "page_contact_us.description" => "Do you have any questions? Get in touch with us.",
- "page_contact_us.error_message" => "Something went wrong, please try it again.",
- "page_contact_us.form.email" => "Email",
- "page_contact_us.form.email_plac" => "Type your email",
- "page_contact_us.form.message" => "Message",
- "page_contact_us.form.message_plac" => "Type your message here...",
- "page_contact_us.form.submit_button" => "Send Message",
- "page_contact_us.success_message" => "Your message was send successfully.",
- "page_contact_us.title" => "Contact Us",
- "page_create_password.button_update" => "Update Password",
- "page_create_password.label_confirm_pass" => "Confirm password",
- "page_create_password.label_email" => "Email",
- "page_create_password.label_new_pass" => "New password",
- "page_create_password.subtitle" => "Create your new password here",
- "page_create_password.title" => "Only One Step to Log In",
- "page_forgotten_password.button_get_link" => "Get Link",
- "page_forgotten_password.pass_reseted_signin" => "Sign In",
- "page_forgotten_password.pass_reseted_subtitle" => "Your password was reset successfully.",
- "page_forgotten_password.pass_reseted_title" => "Awesome!",
- "page_forgotten_password.pass_sennded_subtitle" => "We have e-mailed your password reset link!",
- "page_forgotten_password.pass_sennded_title" => "Thank you!",
- "page_forgotten_password.password_remember_button" => "Log In.",
- "page_forgotten_password.password_remember_text" => "Remember your password?",
- "page_forgotten_password.subtitle" => "Get reset link with your email",
- "page_forgotten_password.title" => "Forgotten Password?",
- "page_index.get_started_button" => "Sign Up Now",
- "page_index.menu.contact_us" => "Contact Us",
- "page_index.menu.log_in" => "Log In",
- "page_index.menu.pricing" => "Pricing",
- "page_index.menu.sign_in" => "Sign Up",
- "page_index.sign_feature_1" => "No credit card required",
- "page_index.sign_feature_2" => "{defaultSpace} Free storage space",
- "page_index.sign_up_button" => "Sign Up Now",
- "page_login.button_next" => "Next Step",
- "page_login.placeholder_email" => "Type your E-mail",
- "page_login.registration_button" => "Register account.",
- "page_login.registration_text" => "Don’t have an account?",
- "page_login.subtitle" => "Please type your email to log in",
- "page_login.title" => "Welcome Back!",
"page_pricing_tables.description" => "Choose plan witch perfect fit your needs. All plans is billed monthly automatically via your credit card.",
"page_pricing_tables.storage_capacity" => "Of Storage Capacity",
"page_pricing_tables.title" => "Choose Your Plan",
"page_pricing_tables.vat_excluded" => "Price displayed excludes VAT.",
- "page_registration.agreement" => "By clicking on 'Create Account' button I agree to the {0} and {1}.",
- "page_registration.button_create_account" => "Create Account",
- "page_registration.have_an_account" => "Do you have an account?",
- "page_registration.label_confirm_pass" => "Confirm password",
- "page_registration.label_email" => "Email",
- "page_registration.label_name" => "Full Name",
- "page_registration.label_pass" => "Create password",
- "page_registration.placeholder_confirm_pass" => "Confirm your new password",
- "page_registration.placeholder_email" => "Type your E-mail",
- "page_registration.placeholder_name" => "Type your full name",
- "page_registration.placeholder_pass" => "New password",
- "page_registration.subtitle" => "Please fill registration to create account",
- "page_registration.title" => "Create New Account",
- "page_shared.download_file" => "Download File",
- "page_shared.placeholder_pass" => "Type password",
- "page_shared.submit" => "Submit",
- "page_shared.subtitle" => "Please type the password to get shared content",
- "page_shared.title" => "Your Share Link is Protected",
- "page_shared_404.subtitle" => "The content you are finding was probably deleted.",
- "page_shared_404.title" => "Not Found :(",
- "page_sign_in.button_log_in" => "Log In",
- "page_sign_in.password_reset_button" => "Reset Password.",
- "page_sign_in.password_reset_text" => "Forgotten your password?",
- "page_sign_in.placeholder_password" => "Type your password",
- "page_sign_in.subtitle" => "Confirm you by your password",
- "page_sign_in.title" => "Are You {name}?",
"page_upgrade_account.change_payment.change_payment" => "change your default payment method",
"page_upgrade_account.change_payment.pay_by_new_card" => "pay by new credit card",
"page_upgrade_account.change_payment.you_can" => "Also you can",
@@ -387,86 +117,20 @@ return [
"page_upgrade_account.summary.total_with_vat" => "Total with VAT",
"page_upgrade_account.summary.vat" => "VAT",
"page_upgrade_account.title" => "Choose Payment Method",
- "popup_create_folder.folder_default_name" => "New Folder",
- "popup_create_folder.label" => "Type Name",
- "popup_create_folder.placeholder" => "Type your name",
- "popup_create_folder.title" => "Create Folder",
"popup_delete_card.message" => "This event is irreversible and your payment card will be delete forever",
"popup_delete_card.title" => "Are you sure?",
"popup_deleted_plan.message" => "Your plan was successfully deleted.",
"popup_deleted_plan.title" => "Plan was deleted",
- "popup_deleted_user.message" => "Your user was deleted with all user data content.",
- "popup_deleted_user.title" => "User was deleted",
- "popup_deleted_user_aborted.message" => "You can't delete this account while user have active subscription.",
- "popup_deleted_user_aborted.title" => "User wasn't deleted",
- "popup_error.message" => "Something went wrong and we can't continue. Please contact us.",
- "popup_error.title" => "Whooops, something went wrong!",
- "popup_exceed_limit.message" => "Please contact your administrator to change your limit.",
- "popup_exceed_limit.title" => "Whooops, you exceed storage limit :(",
- "popup_mimetypes_blacklist.message" => "File of this type ({mimetype}) is not allowed to upload.",
- "popup_mimetypes_blacklist.title" => "You are trying to upload unsupported file type",
- "popup_move_item.cancel" => "Cancel",
- "popup_move_item.submit" => "Move Item",
- "popup_move_item.title" => "Move Item",
- "popup_pass_changed.message" => "So now, you have awesome new password.",
- "popup_pass_changed.title" => "Your password was changed!",
- "popup_passport_error.message" => "Probably you didn't generated Passport Grant client or you didn't set up passport credentials in your .env file. Please follow install instructions.",
- "popup_passport_error.title" => "Invalid Passport Grand Client",
- "popup_paylod_error.message" => "Sorry, your file is too large and can't be uploaded",
- "popup_paylod_error.title" => "File is too large",
- "popup_rename.select_emoji_label" => "Pick Your Emoji Icon",
- "popup_rename.color_pick_label" => "Pick Your Color",
- "popup_rename.emoji_list_not_found" => "Not Found",
- "popup_rename.label" => "Edit Name",
- "popup_rename.placeholder" => "Type your title",
- "popup_rename.search_emoji_input_placeholder" => "Search your emoji...",
- "popup_rename.set_emoji_input_placeholder" => "Emojis List...",
- "popup_rename.tab_color_title" => "Folder Color",
- "popup_rename.tab_emoji_title" => "Emoji as an Icon",
- "popup_rename.title" => "Rename Your {item}",
"popup_set_card.message" => "Your card will be set as default and will be always charged for the next billings.",
"popup_set_card.title" => "Set as default card?",
- "popup_share_create.title" => "Share Your {item}",
- "popup_share_edit.change_pass" => "Change Password",
- "popup_share_edit.confirm" => "Confirm",
- "popup_share_edit.go_back" => "Go Back",
- "popup_share_edit.save" => "Save Changes",
- "popup_share_edit.send_to_recipients" => "Send to Recipients",
- "popup_share_edit.stop" => "Cancel Sharing",
- "popup_share_edit.title" => "Update sharing options",
- "popup_signup_error.message" => "Please check your database connection if everything works correctly.",
- "popup_signup_error.title" => "Server Error",
"popup_subscription_cancel.button" => "I'm done",
"popup_subscription_cancel.message" => "You'll continue to have access to the features you've paid for until the end of your billing cycle.",
"popup_subscription_cancel.title" => "Subscription Was Canceled",
"popup_subscription_resumed.button" => "That's awesome!",
"popup_subscription_resumed.message" => "Your subscription was re-activated, and they will be billed on the original billing cycle.",
"popup_subscription_resumed.title" => "Subscription Was Resumed",
- "popup_upload_limit.message" => "Size of your uploaded file exceed the upload limit ({uploadLimit}).",
- "popup_upload_limit.title" => "You exceed upload limit on single file",
- "popup_zipping.message" => "Please wait until your files start downloading.",
- "popup_zipping.title" => "Zipping Your Files...",
- "preview_sorting.grid_view" => "Grid View",
- "preview_sorting.list_view" => "List View",
- "preview_sorting.preview_sorting_button" => "View",
- "preview_sorting.sort_alphabet" => "Sort By Aplhabet",
- "preview_sorting.sort_date" => "Sort By Date",
- "profile.change_pass" => "Change Password",
- "profile.profile_info" => "Profile Information",
- "profile.store_pass" => "Store New Password",
- "pronouns.of" => "of",
- "roles.admin" => "Admin",
- "roles.user" => "User",
- "routes.create_new_password" => "create-new-password",
- "routes_title.appearance" => "Appearance",
"routes_title.billings" => "Billings",
- "routes_title.dashboard" => "Dashboard",
- "routes_title.email" => "Email",
"routes_title.invoices" => "Invoices",
- "routes_title.languages" => "Languages",
- "routes_title.others" => "Others",
- "routes_title.page_edit" => "Edit Page",
- "routes_title.pages" => "Pages",
"routes_title.payment_methods" => "Payment Methods",
"routes_title.payments" => "Payments",
"routes_title.plan" => "Plan",
@@ -474,23 +138,10 @@ return [
"routes_title.plan_delete" => "Plan Delete",
"routes_title.plan_settings" => "Plan Settings",
"routes_title.pricing_plans" => "Pricing Plans",
- "routes_title.profile" => "My Profile",
- "routes_title.profile_settings" => "Profile Settings",
- "routes_title.settings" => "Settings",
- "routes_title.settings_mobile" => "Settings",
- "routes_title.settings_password" => "Change Password",
- "routes_title.settings_storage" => "Storage",
"routes_title.subscribers" => "Subscribers",
"routes_title.subscription" => "Subscription",
"routes_title.upgrade_billing" => "Billing",
"routes_title.upgrade_plan" => "Upgrade Plan",
- "routes_title.user_create" => "Create User",
- "routes_title.users_delete" => "Delete User",
- "routes_title.users_detail" => "Detail",
- "routes_title.users_list" => "User Management",
- "routes_title.users_password" => "Password",
- "routes_title.users_storage_usage" => "Storage Usage",
- "routes_title.users_user" => "User",
"rows.card.expiration" => "Expiration Date",
"rows.card.number" => "Card Number",
"rows.card.status" => "Status",
@@ -498,81 +149,14 @@ return [
"rows.invoice.payed" => "Payed",
"rows.invoice.plan" => "Plan",
"rows.invoice.total" => "Total",
- "shared.can_download" => "Can download file",
- "shared.editor" => "Can edit and upload files",
- "shared.empty_shared" => "You haven't shared anything yet.",
- "shared.visitor" => "Can only view and download",
- "shared_form.button_close_options" => "Close Options",
- "shared_form.button_done" => "Awesome, I’m done!",
- "shared_form.button_folder_icon_open" => "Customize Folder Icon",
- "shared_form.button_generate" => "Generate Link",
- "shared_form.button_more_options" => "Set Expiration",
- "shared_form.email_placeholder" => "Type your emails",
- "shared_form.email_successfully_send_message" => "Your item was successfully sended to recipients emails.",
- "shared_form.expiration_day" => "{value}d.",
- "shared_form.expiration_hour" => "{value}h.",
- "shared_form.label_expiration" => "Link Expiration",
- "shared_form.label_password_protection" => "Password Protected",
- "shared_form.label_permission" => "Permission",
- "shared_form.label_send_to_recipients" => "Send to Recipients",
- "shared_form.label_share_vie_email" => "Get your link",
- "shared_form.label_shared_url" => "Share url",
- "shared_form.placeholder_permission" => "Select your permission",
- "shared_form.recipients_label" => "Recipients",
- "shared_form.share_by_email" => "Share by Email",
- "shared_form.share_by_link" => "Share by Link",
- "sidebar.favourites" => "Favourites",
- "sidebar.favourites_empty" => "Drag here your favourite folder.",
- "sidebar.folders_empty" => "Create some new folder.",
- "sidebar.home" => "Files",
- "sidebar.latest" => "Recent Uploads",
- "sidebar.locations_title" => "Base",
- "sidebar.my_shared" => "My Shared Items",
- "sidebar.navigator_title" => "Navigator",
- "sidebar.participant_uploads" => "Participant Uploads",
- "sidebar.tools_title" => "Tools",
- "storage.audios" => "Audios",
- "storage.documents" => "Documents",
- "storage.images" => "Images",
- "storage.others" => "Others",
- "storage.sec_capacity" => "Your disk Usage",
- "storage.sec_details" => "Capacity Usage Details",
- "storage.total_capacity" => "Your storage capacity is {capacity}",
- "storage.total_used" => "Total used {used}",
- "storage.videos" => "Videos",
"toaster.account_upgraded" => "Your account was successfully upgraded.",
"toaster.card_deleted" => "Your card was successfully deleted.",
"toaster.card_new_add" => "Your card was successfully added",
"toaster.card_set" => "Your card was successfully set as default.",
- "toaster.changed_capacity" => "You successfully changed user's storage size!",
- "toaster.changed_user" => "You successfully changed user's role!",
- "toaster.created_user" => "User was created successfully!",
- "toaster.email_set" => "Your email settings was updated successfully",
"toaster.plan_created" => "Your plan was successfully created!",
- "toaster.sended_password" => "You successfully send user email for reset password!",
"toaster.stripe_set" => "Your Stripe account was successfully set!",
- "types.file" => "File",
- "types.folder" => "Folder",
- "upgrade_banner.button" => "Upgrade",
- "upgrade_banner.description" => "You nearly reach your storage capacity.",
- "upgrade_banner.title" => "You reach your storage capacity. Please upgrade.",
- "uploading.cancel" => "Cancel Uploading",
- "uploading.processing_file" => "Processing File...",
- "uploading.progress" => "Uploading File {progress}% - {current}/{total}",
- "uploading.progress_single_upload" => "Uploading File {progress}%",
- "user_add_card.default_description" => "Your card will be charged for billing plans as first.",
- "user_add_card.default_title" => "Set as Default Payment Method",
- "user_box_delete.description" => "You can delete your user, but, pay attention! This event is irreversible and all user data include user files will be deleted.",
- "user_box_delete.title" => "Delete User",
- "user_box_password.description" => "You can send password reset email via button bellow. User will be redirected to page where he can update password for his account.",
- "user_box_password.title" => "Change User Password",
- "user_box_role.description" => "You can change role for current user. Admin role can edit or create new users, change storage capacity and any other application settings.",
- "user_box_role.title" => "Change User Role",
- "user_box_storage.description" => "Change user storage capacity by input bellow. You have to type only number e.g. value '5' means, user will have 5GB of storage capacity.",
- "user_box_storage.title" => "Change User Storage Capacity",
"user_invoices.empty" => "You don't have any invoices yet.",
"user_invoices.title" => "Invoices",
- "user_password.title" => "Change Your Password",
"user_payments.add_card" => "Add Payment Card",
"user_payments.card_field_title" => "Credit Card",
"user_payments.delete_card" => "Delete card",
@@ -581,24 +165,6 @@ return [
"user_payments.set_as_default" => "Set as default card",
"user_payments.store_card" => "Store Payment Card",
"user_payments.title" => "Payment Methods",
- "user_settings.address" => "Address",
- "user_settings.address_plac" => "Type your billing address",
- "user_settings.city" => "City",
- "user_settings.city_plac" => "Type your billing city",
- "user_settings.country" => "Country",
- "user_settings.country_plac" => "Select your billing country",
- "user_settings.name" => "Name",
- "user_settings.name_plac" => "Type your billing name",
- "user_settings.phone_number" => "Phone Number",
- "user_settings.phone_number_plac" => "Type your billing phone number",
- "user_settings.postal_code" => "Postal Code",
- "user_settings.postal_code_plac" => "Type your billing postal code",
- "user_settings.state" => "State",
- "user_settings.state_plac" => "Type your billing state",
- "user_settings.timezone" => "Timezone",
- "user_settings.timezone_plac" => "Select your timezone",
- "user_settings.title_account" => "Account Information",
- "user_settings.title_billing" => "Billing Information",
"user_subscription.billed" => "Billed",
"user_subscription.cancel_plan" => "Cancel Plan",
"user_subscription.canceled_at" => "Canceled At",
@@ -609,75 +175,35 @@ return [
"user_subscription.renews_at" => "Renews At",
"user_subscription.resume_plan" => "Resume Plan",
"user_subscription.status" => "Status",
- "user_subscription.title" => "Subscription Plan",
- "validation_errors.incorrect_password" => "Sorry, you passed incorrect password :(",
- "validation_errors.wrong_image" => "You may have uploaded the wrong file, try again!",
-
- // Laravel
- 'app_description' => 'Your self-hosted storage cloud software powered by Laravel and Vue',
- 'user_not_fount' => 'We can\'t find a user with that e-mail address.',
- 'incorrect_password' => 'Sorry, your password is incorrect.',
- 'time' => '%d. %B. %Y at %H:%M',
- 'home' => 'Home',
-
- //Shared link email message
- 'shared_link_email_subject' => '🙋 :user share some files with you. Look at it!',
- 'shared_link_email_greeting' => 'Hello!',
- 'shared_link_email_user' => ':user (:email) send you a link to shared files.',
- 'shared_link_email_link' => 'Open your files',
- 'shared_link_email_salutation' => 'Regards, :app_name',
-
- // Reset password email
- 'reset_password_greeting' => 'Hello!',
- 'reset_password_subject' => 'Reset password for your account on ',
- 'reset_password_line_1' => 'You are receiving this email because we received a password reset request for your account.',
- 'reset_password_line_2' => 'If you did not request a password reset, no further action is required.',
- 'reset_password_action' => 'Reset Password',
-
- 'salutation' => 'Regards',
-
- // Invoice
- 'print_button' => 'Print Document',
-
- 'vat' => 'VAT',
- 'vat_included' => 'incl.',
- 'subtotal' => 'Subtotal',
-
- 'tax_exempted' => 'Tax is exempted',
- 'tax_be_paid_reverse' => 'Tax to be paid on reverse charge basis',
-
- 'invoice_title' => 'Invoice',
- 'date' => 'Date',
- 'product' => 'Product',
- 'subscription' => 'Subscription',
- 'invoice_number' => 'Invoice Number',
-
- 'seller' => 'Seller',
- 'client' => 'Client',
-
- 'seller_vat' => 'VAT number',
- 'seller_name' => 'Name',
- 'seller_phone' => 'Phone',
-
- 'name' => 'Name',
- 'phone' => 'Phone',
- 'address' => 'Address',
- 'city' => 'City',
- 'state' => 'State',
- 'postal_code' => 'Postal code',
- 'country' => 'Country',
-
- 'col_description' => 'Description',
- 'col_date' => 'Date',
- 'col_amount' => 'Amount',
-
- 'total' => 'Total',
-
- // OG Page
- 'user_sending' => ':name is sending you this file',
- 'protected_file' => 'This link is protected by password',
+ 'print_button' => 'Print Document',
+ 'vat' => 'VAT',
+ 'vat_included' => 'incl.',
+ 'subtotal' => 'Subtotal',
+ 'tax_exempted' => 'Tax is exempted',
+ 'tax_be_paid_reverse' => 'Tax to be paid on reverse charge basis',
+ 'invoice_title' => 'Invoice',
+ 'date' => 'Date',
+ 'product' => 'Product',
+ 'subscription' => 'Subscription',
+ 'invoice_number' => 'Invoice Number',
+ 'seller' => 'Seller',
+ 'client' => 'Client',
+ 'seller_vat' => 'VAT number',
+ 'seller_name' => 'Name',
+ 'seller_phone' => 'Phone',
+ 'name' => 'Name',
+ 'phone' => 'Phone',
+ 'address' => 'Address',
+ 'city' => 'City',
+ 'state' => 'State',
+ 'postal_code' => 'Postal code',
+ 'country' => 'Country',
+ 'col_description' => 'Description',
+ 'col_date' => 'Date',
+ 'col_amount' => 'Amount',
+ 'total' => 'Total',
],
- 'regular' => [
+ 'regular' => [
"actions.close" => "Close",
"actions.create_folder" => "Create folder",
"actions.delete" => "Delete item",
@@ -719,8 +245,6 @@ return [
"admin_page_user.save_role" => "Save Role",
"admin_page_user.select_role" => "Select user role",
"admin_page_user.send_password_link" => "Send Password Reset Link",
- "admin_page_user.subscription.empty" => "User don't have any subscription yet.",
- "admin_page_user.subscription.interval_mo" => "Monthly",
"admin_page_user.table.action" => "Action",
"admin_page_user.table.created_at" => "Registered",
"admin_page_user.table.name" => "User",
@@ -855,13 +379,8 @@ return [
"global.get_it" => "Get It",
"global.incomplete" => "Incomplete",
"global.menu" => "Menu",
- "global.monthly_ac" => "Mo.",
"global.or" => "or",
- "global.premium" => "Premium",
- "global.saas" => "Services",
- "global.subscription" => "Subscription",
"global.total" => "Total",
- "global.upgrade_plan" => "Upgrade Plan",
"input_image.supported" => "Supported formats are .png, .jpg, .jpeg.",
"input_image.title" => "Upload Image",
"inputs.placeholder_search_files" => "Search files or folders...",
@@ -875,16 +394,13 @@ return [
"locations.trash" => "Trash",
"menu.admin" => "Administration",
"menu.files" => "Files",
- "menu.invoices" => "Invoices",
"menu.latest" => "Recent Uploads",
"menu.logout" => "Log Out",
"menu.password" => "Password",
- "menu.payment_cards" => "Payment Cards",
"menu.profile" => "Profile Settings",
"menu.settings" => "Settings",
"menu.shared" => "Shared Files",
"menu.storage" => "Storage",
- "menu.subscription" => "Subscription",
"menu.trash" => "Trash",
"messages.nothing_from_participants" => "You don't have any uploads from other users.",
"messages.nothing_to_preview" => "There is nothing to preview.",
@@ -931,10 +447,6 @@ return [
"page_login.registration_text" => "Don’t have an account?",
"page_login.subtitle" => "Please type your email to log in",
"page_login.title" => "Welcome Back!",
- "page_pricing_tables.description" => "Choose plan witch perfect fit your needs. All plans is billed monthly automatically via your credit card.",
- "page_pricing_tables.storage_capacity" => "Of Storage Capacity",
- "page_pricing_tables.title" => "Choose Your Plan",
- "page_pricing_tables.vat_excluded" => "Price displayed excludes VAT.",
"page_registration.agreement" => "By clicking on 'Create Account' button I agree to the {0} and {1}.",
"page_registration.button_create_account" => "Create Account",
"page_registration.have_an_account" => "Do you have an account?",
@@ -965,10 +477,6 @@ return [
"popup_create_folder.label" => "Type Name",
"popup_create_folder.placeholder" => "Type your name",
"popup_create_folder.title" => "Create Folder",
- "popup_delete_card.message" => "This event is irreversible and your payment card will be delete forever",
- "popup_delete_card.title" => "Are you sure?",
- "popup_deleted_plan.message" => "Your plan was successfully deleted.",
- "popup_deleted_plan.title" => "Plan was deleted",
"popup_deleted_user.message" => "Your user was deleted with all user data content.",
"popup_deleted_user.title" => "User was deleted",
"popup_deleted_user_aborted.message" => "You can't delete this account while user have active subscription.",
@@ -984,8 +492,6 @@ return [
"popup_move_item.title" => "Move Item",
"popup_pass_changed.message" => "So now, you have awesome new password.",
"popup_pass_changed.title" => "Your password was changed!",
- "popup_passport_error.message" => "Probably you didn't generated Passport Grant client or you didn't set up passport credentials in your .env file. Please follow install instructions.",
- "popup_passport_error.title" => "Invalid Passport Grand Client",
"popup_paylod_error.message" => "Sorry, your file is too large and can't be uploaded",
"popup_paylod_error.title" => "File is too large",
"popup_rename.select_emoji_label" => "Pick Your Emoji Icon",
@@ -998,8 +504,6 @@ return [
"popup_rename.tab_color_title" => "Folder Color",
"popup_rename.tab_emoji_title" => "Emoji as an Icon",
"popup_rename.title" => "Rename Your {item}",
- "popup_set_card.message" => "Your card will be set as default and will be always charged for the next billings.",
- "popup_set_card.title" => "Set as default card?",
"popup_share_create.title" => "Share Your {item}",
"popup_share_edit.change_pass" => "Change Password",
"popup_share_edit.confirm" => "Confirm",
@@ -1010,12 +514,6 @@ return [
"popup_share_edit.title" => "Update sharing options",
"popup_signup_error.message" => "Please check your database connection if everything works correctly.",
"popup_signup_error.title" => "Server Error",
- "popup_subscription_cancel.button" => "I'm done",
- "popup_subscription_cancel.message" => "You'll continue to have access to the features you've paid for until the end of your billing cycle.",
- "popup_subscription_cancel.title" => "Subscription Was Canceled",
- "popup_subscription_resumed.button" => "That's awesome!",
- "popup_subscription_resumed.message" => "Your subscription was re-activated, and they will be billed on the original billing cycle.",
- "popup_subscription_resumed.title" => "Subscription Was Resumed",
"popup_upload_limit.message" => "Size of your uploaded file exceed the upload limit ({uploadLimit}).",
"popup_upload_limit.title" => "You exceed upload limit on single file",
"popup_zipping.message" => "Please wait until your files start downloading.",
@@ -1033,14 +531,12 @@ return [
"roles.user" => "User",
"routes.create_new_password" => "create-new-password",
"routes_title.appearance" => "Appearance",
- "routes_title.billings" => "Billings",
"routes_title.dashboard" => "Dashboard",
"routes_title.email" => "Email",
"routes_title.languages" => "Languages",
"routes_title.others" => "Others",
"routes_title.page_edit" => "Edit Page",
"routes_title.pages" => "Pages",
- "routes_title.payment_methods" => "Payment Methods",
"routes_title.profile" => "My Profile",
"routes_title.profile_settings" => "Profile Settings",
"routes_title.settings" => "Settings",
@@ -1096,7 +592,6 @@ return [
"storage.total_capacity" => "Your storage capacity is {capacity}",
"storage.total_used" => "Total used {used}",
"storage.videos" => "Videos",
- "toaster.account_upgraded" => "Your account was successfully upgraded.",
"toaster.changed_capacity" => "You successfully changed user's storage size!",
"toaster.changed_user" => "You successfully changed user's role!",
"toaster.created_user" => "User was created successfully!",
@@ -1140,82 +635,25 @@ return [
"user_settings.timezone_plac" => "Select your timezone",
"user_settings.title_account" => "Account Information",
"user_settings.title_billing" => "Billing Information",
- "user_subscription.billed" => "Billed",
- "user_subscription.cancel_plan" => "Cancel Plan",
- "user_subscription.canceled_at" => "Canceled At",
- "user_subscription.created_at" => "Created At",
- "user_subscription.empty" => "You don't have any subscription yet.",
- "user_subscription.ends_at" => "Ends At",
- "user_subscription.plan" => "Plan",
- "user_subscription.renews_at" => "Renews At",
- "user_subscription.resume_plan" => "Resume Plan",
- "user_subscription.status" => "Status",
- "user_subscription.title" => "Subscription Plan",
"validation_errors.incorrect_password" => "Sorry, you passed incorrect password :(",
"validation_errors.wrong_image" => "You may have uploaded the wrong file, try again!",
-
- // Laravel
'app_description' => 'Your self-hosted storage cloud software powered by Laravel and Vue',
'user_not_fount' => 'We can\'t find a user with that e-mail address.',
'incorrect_password' => 'Sorry, your password is incorrect.',
'time' => '%d. %B. %Y at %H:%M',
'home' => 'Home',
-
- //Shared link email message
'shared_link_email_subject' => '🙋 :user share some files with you. Look at it!',
'shared_link_email_greeting' => 'Hello!',
'shared_link_email_user' => ':user (:email) send you a link to shared files.',
'shared_link_email_link' => 'Open your files',
'shared_link_email_salutation' => 'Regards, :app_name',
-
- // Reset password email
'reset_password_greeting' => 'Hello!',
'reset_password_subject' => 'Reset password for your account on ',
'reset_password_line_1' => 'You are receiving this email because we received a password reset request for your account.',
'reset_password_line_2' => 'If you did not request a password reset, no further action is required.',
'reset_password_action' => 'Reset Password',
-
- 'salutation' => 'Regards',
-
- // Invoice
- 'print_button' => 'Print Document',
-
- 'vat' => 'VAT',
- 'vat_included' => 'incl.',
- 'subtotal' => 'Subtotal',
-
- 'tax_exempted' => 'Tax is exempted',
- 'tax_be_paid_reverse' => 'Tax to be paid on reverse charge basis',
-
- 'invoice_title' => 'Invoice',
- 'date' => 'Date',
- 'product' => 'Product',
- 'subscription' => 'Subscription',
- 'invoice_number' => 'Invoice Number',
-
- 'seller' => 'Seller',
- 'client' => 'Client',
-
- 'seller_vat' => 'VAT number',
- 'seller_name' => 'Name',
- 'seller_phone' => 'Phone',
-
- 'name' => 'Name',
- 'phone' => 'Phone',
- 'address' => 'Address',
- 'city' => 'City',
- 'state' => 'State',
- 'postal_code' => 'Postal code',
- 'country' => 'Country',
-
- 'col_description' => 'Description',
- 'col_date' => 'Date',
- 'col_amount' => 'Amount',
-
- 'total' => 'Total',
-
- // OG Page
- 'user_sending' => ':name is sending you this file',
- 'protected_file' => 'This link is protected by password',
+ 'salutation' => 'Regards',
+ 'user_sending' => ':name is sending you this file',
+ 'protected_file' => 'This link is protected by password',
]
];
\ No newline at end of file
diff --git a/public/mix-manifest.json b/public/mix-manifest.json
index 53f1c3bf..cfc99975 100644
--- a/public/mix-manifest.json
+++ b/public/mix-manifest.json
@@ -1,8 +1,8 @@
{
"/js/main.js": "/js/main.js",
"/css/app.css": "/css/app.css",
- "/chunks/admin.js": "/chunks/admin.js?id=7875b08fc6fb75a7ad1f",
- "/chunks/admin-account.js": "/chunks/admin-account.js?id=ffc160c594fd2d4d4a8c",
+ "/chunks/admin.js": "/chunks/admin.js?id=f52318f519af18cb8050",
+ "/chunks/admin-account.js": "/chunks/admin-account.js?id=3036df3e72596fabc42e",
"/chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chu~9fa266bc.js": "/chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chu~9fa266bc.js?id=ccdd01df520484db752a",
"/chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chu~c7a13fb0.js": "/chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chu~c7a13fb0.js?id=62b552a0492fe95b2223",
"/chunks/admin-account~chunks/app-setup~chunks/billings-detail~chunks/create-new-password~chunks/datab~a001bb84.js": "/chunks/admin-account~chunks/app-setup~chunks/billings-detail~chunks/create-new-password~chunks/datab~a001bb84.js?id=0cad8279d29d79cd0e82",
@@ -10,82 +10,82 @@
"/chunks/admin~chunks/platform.js": "/chunks/admin~chunks/platform.js?id=5efddad1c72c0f672608",
"/chunks/app-appearance.js": "/chunks/app-appearance.js?id=ff4a6b02105eaac93dcd",
"/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~605f4c49.js": "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~605f4c49.js?id=45c8f27411287c7bbf73",
- "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~8cc7d96f.js": "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~8cc7d96f.js?id=366ca34d2af5158d5087",
+ "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~8cc7d96f.js": "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~8cc7d96f.js?id=7702f37f277478ad66c6",
"/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~b9e5655a.js": "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~b9e5655a.js?id=04f0cd9719723459b685",
"/chunks/app-billings.js": "/chunks/app-billings.js?id=82133cc16f55222bbbe6",
"/chunks/app-email.js": "/chunks/app-email.js?id=c578a85112c6a4b1ed0e",
"/chunks/app-index.js": "/chunks/app-index.js?id=7f07dceace5c9c8255bb",
"/chunks/app-others.js": "/chunks/app-others.js?id=9156adba3b1697a8bf3e",
"/chunks/app-payments.js": "/chunks/app-payments.js?id=7e1a982c90174f568fb2",
- "/chunks/app-settings.js": "/chunks/app-settings.js?id=1441a53c88fa164f4e1c",
+ "/chunks/app-settings.js": "/chunks/app-settings.js?id=bbf2a2e436d939f7fc07",
"/chunks/app-settings~chunks/dashboard~chunks/invoices~chunks/page-edit~chunks/pages~chunks/plan~chunk~8a0e1d25.js": "/chunks/app-settings~chunks/dashboard~chunks/invoices~chunks/page-edit~chunks/pages~chunks/plan~chunk~8a0e1d25.js?id=e71bb0286189734a8aec",
- "/chunks/app-setup.js": "/chunks/app-setup.js?id=1ccc96fe3f9514f40f95",
- "/chunks/billings-detail.js": "/chunks/billings-detail.js?id=1d6657b677bf9bb78907",
+ "/chunks/app-setup.js": "/chunks/app-setup.js?id=d0e3e046e147ca928f34",
+ "/chunks/billings-detail.js": "/chunks/billings-detail.js?id=d0ade32264f71dd7a2af",
"/chunks/contact-us.js": "/chunks/contact-us.js?id=f5276b101b2e0c97d6d1",
"/chunks/contact-us~chunks/dynamic-page~chunks/homepage.js": "/chunks/contact-us~chunks/dynamic-page~chunks/homepage.js?id=5814ff43ba7c67297af1",
- "/chunks/create-new-password.js": "/chunks/create-new-password.js?id=f3c8bc62f62ae537f93c",
- "/chunks/dashboard.js": "/chunks/dashboard.js?id=7e83ac350c08c833f9bc",
+ "/chunks/create-new-password.js": "/chunks/create-new-password.js?id=48dc53ccbd502c2739ec",
+ "/chunks/dashboard.js": "/chunks/dashboard.js?id=d93f9d9fbc991dd6a080",
"/chunks/dashboard~chunks/files~chunks/invoices~chunks/pages~chunks/plans~chunks/settings-payment-meth~0bfeabca.js": "/chunks/dashboard~chunks/files~chunks/invoices~chunks/pages~chunks/plans~chunks/settings-payment-meth~0bfeabca.js?id=177c14bbfda39282a380",
"/chunks/dashboard~chunks/invoices~chunks/pages~chunks/plan-subscribers~chunks/plans~chunks/settings-i~0e2a0654.js": "/chunks/dashboard~chunks/invoices~chunks/pages~chunks/plan-subscribers~chunks/plans~chunks/settings-i~0e2a0654.js?id=7540af768b1cfda01a13",
- "/chunks/database.js": "/chunks/database.js?id=3a4fb748b64db7179b28",
+ "/chunks/database.js": "/chunks/database.js?id=7374830dc3cbddf41abb",
"/chunks/dynamic-page.js": "/chunks/dynamic-page.js?id=6dccc2158cc6278f683d",
- "/chunks/environment-setup.js": "/chunks/environment-setup.js?id=4d649c8c8ba4ca564e2b",
+ "/chunks/environment-setup.js": "/chunks/environment-setup.js?id=208de84df68177288a2a",
"/chunks/files.js": "/chunks/files.js?id=40b4464ce393cb112111",
"/chunks/files~chunks/platform~chunks/shared-files~chunks/shared/file-browser.js": "/chunks/files~chunks/platform~chunks/shared-files~chunks/shared/file-browser.js?id=39233d603662ca3738e8",
"/chunks/files~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/file-browser.js": "/chunks/files~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/file-browser.js?id=da7fad654568667d799f",
"/chunks/files~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/file-browser~chunks/sha~8510f6c9.js": "/chunks/files~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/file-browser~chunks/sha~8510f6c9.js?id=b4ccb4a816e5c72a0b85",
"/chunks/files~chunks/settings-subscription~chunks/shared-files~chunks/shared/file-browser~chunks/user~9058a49f.js": "/chunks/files~chunks/settings-subscription~chunks/shared-files~chunks/shared/file-browser~chunks/user~9058a49f.js?id=31a17ad1d2536342abbe",
- "/chunks/files~chunks/shared-files~chunks/shared/file-browser.js": "/chunks/files~chunks/shared-files~chunks/shared/file-browser.js?id=a68a2bd9c014a6d58619",
+ "/chunks/files~chunks/shared-files~chunks/shared/file-browser.js": "/chunks/files~chunks/shared-files~chunks/shared/file-browser.js?id=8912841f29b16a3ecbf9",
"/chunks/files~chunks/shared-files~chunks/shared/file-browser~chunks/shared/single-file.js": "/chunks/files~chunks/shared-files~chunks/shared/file-browser~chunks/shared/single-file.js?id=9b875b7ea10b575524e6",
"/chunks/files~chunks/shared/file-browser.js": "/chunks/files~chunks/shared/file-browser.js?id=a67929ed0c257f501268",
- "/chunks/forgotten-password.js": "/chunks/forgotten-password.js?id=a00dedfec5aeabac394c",
+ "/chunks/forgotten-password.js": "/chunks/forgotten-password.js?id=877a9289b77ac3885042",
"/chunks/homepage.js": "/chunks/homepage.js?id=14154b40ea69f91fef31",
- "/chunks/installation-disclaimer.js": "/chunks/installation-disclaimer.js?id=b3b06b9cde99ec028464",
- "/chunks/invoices.js": "/chunks/invoices.js?id=fb3086d4984c78e21fec",
+ "/chunks/installation-disclaimer.js": "/chunks/installation-disclaimer.js?id=fa49cb6f6c1027d24d57",
+ "/chunks/invoices.js": "/chunks/invoices.js?id=81df0d453a53fd224e13",
"/chunks/not-found-shared.js": "/chunks/not-found-shared.js?id=7fc7f9b6f10bdfac770e",
- "/chunks/page-edit.js": "/chunks/page-edit.js?id=e8ab4ed4bab28ca522d7",
- "/chunks/pages.js": "/chunks/pages.js?id=758c68bed61663f1d5e2",
- "/chunks/plan.js": "/chunks/plan.js?id=6ba7231921168de3273b",
- "/chunks/plan-create.js": "/chunks/plan-create.js?id=b7c4d99d886d32bdbefe",
+ "/chunks/page-edit.js": "/chunks/page-edit.js?id=dbb7e8cb377a08c8adc2",
+ "/chunks/pages.js": "/chunks/pages.js?id=9c31ba518ce43a3595ef",
+ "/chunks/plan.js": "/chunks/plan.js?id=396a1053f0c7089de936",
+ "/chunks/plan-create.js": "/chunks/plan-create.js?id=92ca81965dc17b3ec7a3",
"/chunks/plan-delete.js": "/chunks/plan-delete.js?id=f193816778245ea66d02",
"/chunks/plan-settings.js": "/chunks/plan-settings.js?id=66123f72696b47a986a2",
"/chunks/plan-subscribers.js": "/chunks/plan-subscribers.js?id=08e2056bc3744b2ea8f9",
- "/chunks/plans.js": "/chunks/plans.js?id=ac14c512e6b0bb468e6d",
- "/chunks/platform.js": "/chunks/platform.js?id=3c073d2ec884d4f57730",
+ "/chunks/plans.js": "/chunks/plans.js?id=608bdbd5c041b728691a",
+ "/chunks/platform.js": "/chunks/platform.js?id=d01fa913eb61faa32f92",
"/chunks/platform~chunks/shared.js": "/chunks/platform~chunks/shared.js?id=4752741257e431e69704",
- "/chunks/profile.js": "/chunks/profile.js?id=0ea1456d784fb585c986",
- "/chunks/profile~chunks/settings-password.js": "/chunks/profile~chunks/settings-password.js?id=9202f2cff7c80a561718",
+ "/chunks/profile.js": "/chunks/profile.js?id=fb4a46afdd09cdcdc7da",
+ "/chunks/profile~chunks/settings-password.js": "/chunks/profile~chunks/settings-password.js?id=d448806bfefc6cc43f0d",
"/chunks/purchase-code.js": "/chunks/purchase-code.js?id=e00ee12cde704060e15b",
- "/chunks/settings.js": "/chunks/settings.js?id=5dc3f87035c3de10772e",
- "/chunks/settings-create-payment-methods.js": "/chunks/settings-create-payment-methods.js?id=199ff053f2149462706b",
- "/chunks/settings-invoices.js": "/chunks/settings-invoices.js?id=066580373fed08097cec",
+ "/chunks/settings.js": "/chunks/settings.js?id=2637c005a9c8b01cfc9b",
+ "/chunks/settings-create-payment-methods.js": "/chunks/settings-create-payment-methods.js?id=c12436dc2933527ce1f5",
+ "/chunks/settings-invoices.js": "/chunks/settings-invoices.js?id=444b9bbc310647ddd297",
"/chunks/settings-password.js": "/chunks/settings-password.js?id=d24053a92c2594439d04",
- "/chunks/settings-payment-methods.js": "/chunks/settings-payment-methods.js?id=cd117263d898a871f7f9",
- "/chunks/settings-storage.js": "/chunks/settings-storage.js?id=253190c2c7491c35fed3",
- "/chunks/settings-subscription.js": "/chunks/settings-subscription.js?id=5e617c168b3cb490a2e6",
+ "/chunks/settings-payment-methods.js": "/chunks/settings-payment-methods.js?id=3bc709a228c0849a6f62",
+ "/chunks/settings-storage.js": "/chunks/settings-storage.js?id=ced13fc6a34233fb53aa",
+ "/chunks/settings-subscription.js": "/chunks/settings-subscription.js?id=22e5c49d5b0a154e1a28",
"/chunks/setup-wizard.js": "/chunks/setup-wizard.js?id=c6b88005b133268ed88f",
"/chunks/shared.js": "/chunks/shared.js?id=2c38f535d52e0e448846",
"/chunks/shared-files.js": "/chunks/shared-files.js?id=cde3c7a58d2da0015555",
"/chunks/shared/authenticate.js": "/chunks/shared/authenticate.js?id=3d5c7754d438830a4204",
"/chunks/shared/file-browser.js": "/chunks/shared/file-browser.js?id=3127fab4cfd3d5f00a72",
"/chunks/shared/single-file.js": "/chunks/shared/single-file.js?id=e8aedb75df7fe227d693",
- "/chunks/sign-in.js": "/chunks/sign-in.js?id=60125eb11b640531e43f",
- "/chunks/sign-up.js": "/chunks/sign-up.js?id=f6fc1dad8d7e4713a5ed",
- "/chunks/stripe-credentials.js": "/chunks/stripe-credentials.js?id=93a33f9384c55ae05c44",
- "/chunks/subscription-plans.js": "/chunks/subscription-plans.js?id=90fc5f3cec8d6270aa24",
+ "/chunks/sign-in.js": "/chunks/sign-in.js?id=61e5b97e8273aec430ad",
+ "/chunks/sign-up.js": "/chunks/sign-up.js?id=ce15b1156cf37c0a9703",
+ "/chunks/stripe-credentials.js": "/chunks/stripe-credentials.js?id=1acdec3a157c8943a88d",
+ "/chunks/subscription-plans.js": "/chunks/subscription-plans.js?id=a843f8cf90ff1e3168e8",
"/chunks/subscription-service.js": "/chunks/subscription-service.js?id=90c1aa9431689a89eb3d",
- "/chunks/upgrade-billing.js": "/chunks/upgrade-billing.js?id=106d36d505267a37c5be",
+ "/chunks/upgrade-billing.js": "/chunks/upgrade-billing.js?id=d76e4522f424ce996e8f",
"/chunks/upgrade-billing~chunks/upgrade-plan.js": "/chunks/upgrade-billing~chunks/upgrade-plan.js?id=e1658ebec711765f67fc",
- "/chunks/upgrade-plan.js": "/chunks/upgrade-plan.js?id=4a148447f8f73b911e24",
- "/chunks/user.js": "/chunks/user.js?id=74d6fc3aec1bb1fcf96e",
- "/chunks/user-create.js": "/chunks/user-create.js?id=d50fe6b5bd38c85b23a5",
+ "/chunks/upgrade-plan.js": "/chunks/upgrade-plan.js?id=35179531a8241da128e9",
+ "/chunks/user.js": "/chunks/user.js?id=6e9af0d22327a4cc82e9",
+ "/chunks/user-create.js": "/chunks/user-create.js?id=0ede0db725f2c822c336",
"/chunks/user-delete.js": "/chunks/user-delete.js?id=5af2fc09b4b639452756",
- "/chunks/user-detail.js": "/chunks/user-detail.js?id=521f134db4932f76808c",
+ "/chunks/user-detail.js": "/chunks/user-detail.js?id=b9b70e43cf551a574443",
"/chunks/user-invoices.js": "/chunks/user-invoices.js?id=6c4d0e9e058be11dc1f7",
"/chunks/user-password.js": "/chunks/user-password.js?id=a4b4ab4f4af11533eb4d",
"/chunks/user-storage.js": "/chunks/user-storage.js?id=4aec2d7b60ec0bc35fb9",
- "/chunks/user-subscription.js": "/chunks/user-subscription.js?id=c3943edd7c78b52d6729",
- "/chunks/users.js": "/chunks/users.js?id=08cd93020ef025950590",
+ "/chunks/user-subscription.js": "/chunks/user-subscription.js?id=99efdd410910267db66e",
+ "/chunks/users.js": "/chunks/users.js?id=f1057be5cf73ebc32c14",
"/vendors~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-i~68e3c6cf.js": "/vendors~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-i~68e3c6cf.js?id=b490efdc8470a6c2f625",
"/vendors~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-i~a4a4a595.js": "/vendors~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-i~a4a4a595.js?id=be99c10088b00578891b",
"/vendors~chunks/files~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/file-browser~ch~52c14f2e.js": "/vendors~chunks/files~chunks/platform~chunks/shared~chunks/shared-files~chunks/shared/file-browser~ch~52c14f2e.js?id=66afa0e341251a68c3d3",
@@ -141,5 +141,252 @@
"/chunks/app-appearance.44d5b8dcf013107a5294.hot-update.js": "/chunks/app-appearance.44d5b8dcf013107a5294.hot-update.js",
"/chunks/app-appearance.d3d27ea24498ba39c361.hot-update.js": "/chunks/app-appearance.d3d27ea24498ba39c361.hot-update.js",
"/chunks/app-appearance.844fe0955143cc8be1ed.hot-update.js": "/chunks/app-appearance.844fe0955143cc8be1ed.hot-update.js",
- "/chunks/app-setup.1a41ce9be4b75218db5b.hot-update.js": "/chunks/app-setup.1a41ce9be4b75218db5b.hot-update.js"
+ "/chunks/app-setup.1a41ce9be4b75218db5b.hot-update.js": "/chunks/app-setup.1a41ce9be4b75218db5b.hot-update.js",
+ "/js/main.6bae121ef6a8035d49a6.hot-update.js": "/js/main.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/admin.6bae121ef6a8035d49a6.hot-update.js": "/chunks/admin.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/admin-account.6bae121ef6a8035d49a6.hot-update.js": "/chunks/admin-account.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~8cc7d96f.6bae121ef6a8035d49a6.hot-update.js": "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~8cc7d96f.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/app-language.js": "/chunks/app-language.js?id=f8203bca52494677f210",
+ "/chunks/app-language~chunks/dashboard~chunks/files~chunks/invoices~chunks/pages~chunks/plans~chunks/s~38c276fc.js": "/chunks/app-language~chunks/dashboard~chunks/files~chunks/invoices~chunks/pages~chunks/plans~chunks/s~38c276fc.js?id=91d6a4649c9277a7bb29",
+ "/chunks/app-setup.6bae121ef6a8035d49a6.hot-update.js": "/chunks/app-setup.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/billings-detail.6bae121ef6a8035d49a6.hot-update.js": "/chunks/billings-detail.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/create-new-password.6bae121ef6a8035d49a6.hot-update.js": "/chunks/create-new-password.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/database.6bae121ef6a8035d49a6.hot-update.js": "/chunks/database.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/environment-setup.6bae121ef6a8035d49a6.hot-update.js": "/chunks/environment-setup.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/files~chunks/settings~chunks/shared-files~chunks/shared/file-browser.js": "/chunks/files~chunks/settings~chunks/shared-files~chunks/shared/file-browser.js?id=9824eedb24e6bfeef1ae",
+ "/chunks/forgotten-password.6bae121ef6a8035d49a6.hot-update.js": "/chunks/forgotten-password.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/installation-disclaimer.6bae121ef6a8035d49a6.hot-update.js": "/chunks/installation-disclaimer.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/page-edit.6bae121ef6a8035d49a6.hot-update.js": "/chunks/page-edit.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/plan-create.6bae121ef6a8035d49a6.hot-update.js": "/chunks/plan-create.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/profile.6bae121ef6a8035d49a6.hot-update.js": "/chunks/profile.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/profile~chunks/settings-password.6bae121ef6a8035d49a6.hot-update.js": "/chunks/profile~chunks/settings-password.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/settings-create-payment-methods.6bae121ef6a8035d49a6.hot-update.js": "/chunks/settings-create-payment-methods.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/settings-invoices.6bae121ef6a8035d49a6.hot-update.js": "/chunks/settings-invoices.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/settings-payment-methods.6bae121ef6a8035d49a6.hot-update.js": "/chunks/settings-payment-methods.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/settings-storage.6bae121ef6a8035d49a6.hot-update.js": "/chunks/settings-storage.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/settings-subscription.6bae121ef6a8035d49a6.hot-update.js": "/chunks/settings-subscription.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/sign-in.6bae121ef6a8035d49a6.hot-update.js": "/chunks/sign-in.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/sign-up.6bae121ef6a8035d49a6.hot-update.js": "/chunks/sign-up.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/stripe-credentials.6bae121ef6a8035d49a6.hot-update.js": "/chunks/stripe-credentials.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/subscription-plans.6bae121ef6a8035d49a6.hot-update.js": "/chunks/subscription-plans.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/upgrade-billing.6bae121ef6a8035d49a6.hot-update.js": "/chunks/upgrade-billing.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/user-create.6bae121ef6a8035d49a6.hot-update.js": "/chunks/user-create.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/user-detail.6bae121ef6a8035d49a6.hot-update.js": "/chunks/user-detail.6bae121ef6a8035d49a6.hot-update.js",
+ "/chunks/user-subscription.6bae121ef6a8035d49a6.hot-update.js": "/chunks/user-subscription.6bae121ef6a8035d49a6.hot-update.js",
+ "/vendors~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-i~96026abe.js": "/vendors~chunks/admin-account~chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-i~96026abe.js?id=36437b5b5c9f3949f1f9",
+ "/js/main.07fb5f2187ba01ab7de3.hot-update.js": "/js/main.07fb5f2187ba01ab7de3.hot-update.js",
+ "/chunks/admin.07fb5f2187ba01ab7de3.hot-update.js": "/chunks/admin.07fb5f2187ba01ab7de3.hot-update.js",
+ "/chunks/platform.07fb5f2187ba01ab7de3.hot-update.js": "/chunks/platform.07fb5f2187ba01ab7de3.hot-update.js",
+ "/chunks/admin.bfe85963adcdd74eee09.hot-update.js": "/chunks/admin.bfe85963adcdd74eee09.hot-update.js",
+ "/js/main.10e51312059b92b7fed6.hot-update.js": "/js/main.10e51312059b92b7fed6.hot-update.js",
+ "/js/main.92ddec9ebe187485a417.hot-update.js": "/js/main.92ddec9ebe187485a417.hot-update.js",
+ "/js/main.a48a803ca675201bb2c5.hot-update.js": "/js/main.a48a803ca675201bb2c5.hot-update.js",
+ "/js/main.44a3d4c8448d73f43276.hot-update.js": "/js/main.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~8cc7d96f.44a3d4c8448d73f43276.hot-update.js": "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~8cc7d96f.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/app-language.44a3d4c8448d73f43276.hot-update.js": "/chunks/app-language.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/dashboard.44a3d4c8448d73f43276.hot-update.js": "/chunks/dashboard.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/files.44a3d4c8448d73f43276.hot-update.js": "/chunks/files.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/invoices.44a3d4c8448d73f43276.hot-update.js": "/chunks/invoices.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/page-edit.44a3d4c8448d73f43276.hot-update.js": "/chunks/page-edit.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/pages.44a3d4c8448d73f43276.hot-update.js": "/chunks/pages.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/plan-create.44a3d4c8448d73f43276.hot-update.js": "/chunks/plan-create.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/plans.44a3d4c8448d73f43276.hot-update.js": "/chunks/plans.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/platform~chunks/shared.44a3d4c8448d73f43276.hot-update.js": "/chunks/platform~chunks/shared.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/profile~chunks/settings-password.44a3d4c8448d73f43276.hot-update.js": "/chunks/profile~chunks/settings-password.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/settings.44a3d4c8448d73f43276.hot-update.js": "/chunks/settings.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/settings-create-payment-methods.44a3d4c8448d73f43276.hot-update.js": "/chunks/settings-create-payment-methods.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/settings-subscription.44a3d4c8448d73f43276.hot-update.js": "/chunks/settings-subscription.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/shared.44a3d4c8448d73f43276.hot-update.js": "/chunks/shared.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/shared/single-file.44a3d4c8448d73f43276.hot-update.js": "/chunks/shared/single-file.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/subscription-plans.44a3d4c8448d73f43276.hot-update.js": "/chunks/subscription-plans.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/upgrade-billing~chunks/upgrade-plan.44a3d4c8448d73f43276.hot-update.js": "/chunks/upgrade-billing~chunks/upgrade-plan.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/user-create.44a3d4c8448d73f43276.hot-update.js": "/chunks/user-create.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/user-subscription.44a3d4c8448d73f43276.hot-update.js": "/chunks/user-subscription.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/users.44a3d4c8448d73f43276.hot-update.js": "/chunks/users.44a3d4c8448d73f43276.hot-update.js",
+ "/chunks/admin-account.8ddde69945402fc189b4.hot-update.js": "/chunks/admin-account.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~8cc7d96f.8ddde69945402fc189b4.hot-update.js": "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~8cc7d96f.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/app-language.8ddde69945402fc189b4.hot-update.js": "/chunks/app-language.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/app-setup.8ddde69945402fc189b4.hot-update.js": "/chunks/app-setup.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/billings-detail.8ddde69945402fc189b4.hot-update.js": "/chunks/billings-detail.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/database.8ddde69945402fc189b4.hot-update.js": "/chunks/database.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/environment-setup.8ddde69945402fc189b4.hot-update.js": "/chunks/environment-setup.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/installation-disclaimer.8ddde69945402fc189b4.hot-update.js": "/chunks/installation-disclaimer.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/page-edit.8ddde69945402fc189b4.hot-update.js": "/chunks/page-edit.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/plan-create.8ddde69945402fc189b4.hot-update.js": "/chunks/plan-create.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/profile~chunks/settings-password.8ddde69945402fc189b4.hot-update.js": "/chunks/profile~chunks/settings-password.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/settings-create-payment-methods.8ddde69945402fc189b4.hot-update.js": "/chunks/settings-create-payment-methods.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/settings-invoices.8ddde69945402fc189b4.hot-update.js": "/chunks/settings-invoices.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/settings-payment-methods.8ddde69945402fc189b4.hot-update.js": "/chunks/settings-payment-methods.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/settings-storage.8ddde69945402fc189b4.hot-update.js": "/chunks/settings-storage.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/settings-subscription.8ddde69945402fc189b4.hot-update.js": "/chunks/settings-subscription.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/stripe-credentials.8ddde69945402fc189b4.hot-update.js": "/chunks/stripe-credentials.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/subscription-plans.8ddde69945402fc189b4.hot-update.js": "/chunks/subscription-plans.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/upgrade-billing.8ddde69945402fc189b4.hot-update.js": "/chunks/upgrade-billing.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/user-create.8ddde69945402fc189b4.hot-update.js": "/chunks/user-create.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/user-subscription.8ddde69945402fc189b4.hot-update.js": "/chunks/user-subscription.8ddde69945402fc189b4.hot-update.js",
+ "/chunks/admin-account.02523e285411c4492fda.hot-update.js": "/chunks/admin-account.02523e285411c4492fda.hot-update.js",
+ "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~8cc7d96f.02523e285411c4492fda.hot-update.js": "/chunks/app-appearance~chunks/app-billings~chunks/app-email~chunks/app-index~chunks/app-others~chunks~8cc7d96f.02523e285411c4492fda.hot-update.js",
+ "/chunks/app-language.02523e285411c4492fda.hot-update.js": "/chunks/app-language.02523e285411c4492fda.hot-update.js",
+ "/chunks/app-setup.02523e285411c4492fda.hot-update.js": "/chunks/app-setup.02523e285411c4492fda.hot-update.js",
+ "/chunks/billings-detail.02523e285411c4492fda.hot-update.js": "/chunks/billings-detail.02523e285411c4492fda.hot-update.js",
+ "/chunks/database.02523e285411c4492fda.hot-update.js": "/chunks/database.02523e285411c4492fda.hot-update.js",
+ "/chunks/environment-setup.02523e285411c4492fda.hot-update.js": "/chunks/environment-setup.02523e285411c4492fda.hot-update.js",
+ "/chunks/installation-disclaimer.02523e285411c4492fda.hot-update.js": "/chunks/installation-disclaimer.02523e285411c4492fda.hot-update.js",
+ "/chunks/page-edit.02523e285411c4492fda.hot-update.js": "/chunks/page-edit.02523e285411c4492fda.hot-update.js",
+ "/chunks/plan-create.02523e285411c4492fda.hot-update.js": "/chunks/plan-create.02523e285411c4492fda.hot-update.js",
+ "/chunks/profile~chunks/settings-password.02523e285411c4492fda.hot-update.js": "/chunks/profile~chunks/settings-password.02523e285411c4492fda.hot-update.js",
+ "/chunks/settings-create-payment-methods.02523e285411c4492fda.hot-update.js": "/chunks/settings-create-payment-methods.02523e285411c4492fda.hot-update.js",
+ "/chunks/settings-invoices.02523e285411c4492fda.hot-update.js": "/chunks/settings-invoices.02523e285411c4492fda.hot-update.js",
+ "/chunks/settings-payment-methods.02523e285411c4492fda.hot-update.js": "/chunks/settings-payment-methods.02523e285411c4492fda.hot-update.js",
+ "/chunks/settings-storage.02523e285411c4492fda.hot-update.js": "/chunks/settings-storage.02523e285411c4492fda.hot-update.js",
+ "/chunks/settings-subscription.02523e285411c4492fda.hot-update.js": "/chunks/settings-subscription.02523e285411c4492fda.hot-update.js",
+ "/chunks/stripe-credentials.02523e285411c4492fda.hot-update.js": "/chunks/stripe-credentials.02523e285411c4492fda.hot-update.js",
+ "/chunks/subscription-plans.02523e285411c4492fda.hot-update.js": "/chunks/subscription-plans.02523e285411c4492fda.hot-update.js",
+ "/chunks/upgrade-billing.02523e285411c4492fda.hot-update.js": "/chunks/upgrade-billing.02523e285411c4492fda.hot-update.js",
+ "/chunks/user-create.02523e285411c4492fda.hot-update.js": "/chunks/user-create.02523e285411c4492fda.hot-update.js",
+ "/chunks/user-subscription.02523e285411c4492fda.hot-update.js": "/chunks/user-subscription.02523e285411c4492fda.hot-update.js",
+ "/chunks/app-language.c8716262e93847f9fd31.hot-update.js": "/chunks/app-language.c8716262e93847f9fd31.hot-update.js",
+ "/chunks/app-language.b58d5d80370333ef35f0.hot-update.js": "/chunks/app-language.b58d5d80370333ef35f0.hot-update.js",
+ "/chunks/app-language.38d2a21a08247d1696e4.hot-update.js": "/chunks/app-language.38d2a21a08247d1696e4.hot-update.js",
+ "/js/main.d6c4bb9aff18595d3daa.hot-update.js": "/js/main.d6c4bb9aff18595d3daa.hot-update.js",
+ "/js/main.f62f909a87cf282c8c3d.hot-update.js": "/js/main.f62f909a87cf282c8c3d.hot-update.js",
+ "/js/main.d5320dff27364885b2ad.hot-update.js": "/js/main.d5320dff27364885b2ad.hot-update.js",
+ "/js/main.72da76c0d4f9a836d014.hot-update.js": "/js/main.72da76c0d4f9a836d014.hot-update.js",
+ "/js/main.10729f5c19355b549f49.hot-update.js": "/js/main.10729f5c19355b549f49.hot-update.js",
+ "/js/main.c2fea80b35358d7b859d.hot-update.js": "/js/main.c2fea80b35358d7b859d.hot-update.js",
+ "/js/main.f6b17630a977096356f0.hot-update.js": "/js/main.f6b17630a977096356f0.hot-update.js",
+ "/js/main.5876b8710dd46bc3aa10.hot-update.js": "/js/main.5876b8710dd46bc3aa10.hot-update.js",
+ "/js/main.7bb9166a9c24e78b0758.hot-update.js": "/js/main.7bb9166a9c24e78b0758.hot-update.js",
+ "/js/main.83ad71514c6960e9886c.hot-update.js": "/js/main.83ad71514c6960e9886c.hot-update.js",
+ "/js/main.3ba68bded39b935f4638.hot-update.js": "/js/main.3ba68bded39b935f4638.hot-update.js",
+ "/js/main.6e51a85243ead144abbb.hot-update.js": "/js/main.6e51a85243ead144abbb.hot-update.js",
+ "/js/main.1835342cfe8bd1e5d588.hot-update.js": "/js/main.1835342cfe8bd1e5d588.hot-update.js",
+ "/js/main.0ede215e9ff7c7da96db.hot-update.js": "/js/main.0ede215e9ff7c7da96db.hot-update.js",
+ "/js/main.240b44b249b29ae23a07.hot-update.js": "/js/main.240b44b249b29ae23a07.hot-update.js",
+ "/js/main.2f6367f55101bf82d44c.hot-update.js": "/js/main.2f6367f55101bf82d44c.hot-update.js",
+ "/js/main.4e9c07e35cb8b64730c8.hot-update.js": "/js/main.4e9c07e35cb8b64730c8.hot-update.js",
+ "/js/main.55ace7d973622e7a3b3d.hot-update.js": "/js/main.55ace7d973622e7a3b3d.hot-update.js",
+ "/js/main.b39147c7eb8e57812b7e.hot-update.js": "/js/main.b39147c7eb8e57812b7e.hot-update.js",
+ "/js/main.a135172ab0de5b0be3fc.hot-update.js": "/js/main.a135172ab0de5b0be3fc.hot-update.js",
+ "/js/main.6c7cd57cfab9e3fbfeb3.hot-update.js": "/js/main.6c7cd57cfab9e3fbfeb3.hot-update.js",
+ "/chunks/app-language.7a17dc97730856d8f00e.hot-update.js": "/chunks/app-language.7a17dc97730856d8f00e.hot-update.js",
+ "/chunks/app-language.c9c9e921c3fd5569074c.hot-update.js": "/chunks/app-language.c9c9e921c3fd5569074c.hot-update.js",
+ "/chunks/app-language.21043dd8ce9480e40e25.hot-update.js": "/chunks/app-language.21043dd8ce9480e40e25.hot-update.js",
+ "/chunks/app-language.2d3af715ee6df810a0f2.hot-update.js": "/chunks/app-language.2d3af715ee6df810a0f2.hot-update.js",
+ "/chunks/app-language.291a9c3748c17466a6bf.hot-update.js": "/chunks/app-language.291a9c3748c17466a6bf.hot-update.js",
+ "/chunks/app-language.b1f0a7a5c0c8cfae17df.hot-update.js": "/chunks/app-language.b1f0a7a5c0c8cfae17df.hot-update.js",
+ "/chunks/app-language.142bd08c814ef3ee93b7.hot-update.js": "/chunks/app-language.142bd08c814ef3ee93b7.hot-update.js",
+ "/chunks/app-language.682670b7f00787e62cce.hot-update.js": "/chunks/app-language.682670b7f00787e62cce.hot-update.js",
+ "/chunks/app-language.5a36f023c2a4e4d159aa.hot-update.js": "/chunks/app-language.5a36f023c2a4e4d159aa.hot-update.js",
+ "/chunks/app-language.95cc932bd06ddecce973.hot-update.js": "/chunks/app-language.95cc932bd06ddecce973.hot-update.js",
+ "/chunks/app-language.7b9e75abfe1177de4cab.hot-update.js": "/chunks/app-language.7b9e75abfe1177de4cab.hot-update.js",
+ "/chunks/app-language.0b5ef75da485aab561db.hot-update.js": "/chunks/app-language.0b5ef75da485aab561db.hot-update.js",
+ "/chunks/admin.cf15182869b124a46768.hot-update.js": "/chunks/admin.cf15182869b124a46768.hot-update.js",
+ "/js/main.5f22439b137aa576c9fe.hot-update.js": "/js/main.5f22439b137aa576c9fe.hot-update.js",
+ "/js/main.73cc0ba938f5bbbcfb7a.hot-update.js": "/js/main.73cc0ba938f5bbbcfb7a.hot-update.js",
+ "/js/main.25d741914ffe4a282e4e.hot-update.js": "/js/main.25d741914ffe4a282e4e.hot-update.js",
+ "/js/main.12c196e4398f7a20fa1f.hot-update.js": "/js/main.12c196e4398f7a20fa1f.hot-update.js",
+ "/js/main.24b9e39d89ae5b0fa313.hot-update.js": "/js/main.24b9e39d89ae5b0fa313.hot-update.js",
+ "/js/main.f51962c478c3f07fefb9.hot-update.js": "/js/main.f51962c478c3f07fefb9.hot-update.js",
+ "/js/main.5a2bf9b87650aff64fd5.hot-update.js": "/js/main.5a2bf9b87650aff64fd5.hot-update.js",
+ "/js/main.f054d8b8dd508b0f990c.hot-update.js": "/js/main.f054d8b8dd508b0f990c.hot-update.js",
+ "/js/main.68dfa850d922b0e6735e.hot-update.js": "/js/main.68dfa850d922b0e6735e.hot-update.js",
+ "/js/main.6503768e6598d7b0f613.hot-update.js": "/js/main.6503768e6598d7b0f613.hot-update.js",
+ "/js/main.ece1a3972ed2db71b251.hot-update.js": "/js/main.ece1a3972ed2db71b251.hot-update.js",
+ "/js/main.11de7137d4e877344840.hot-update.js": "/js/main.11de7137d4e877344840.hot-update.js",
+ "/js/main.fd1a2e92c26d75430cc0.hot-update.js": "/js/main.fd1a2e92c26d75430cc0.hot-update.js",
+ "/js/main.22a9d4bc8715e0d1e6f4.hot-update.js": "/js/main.22a9d4bc8715e0d1e6f4.hot-update.js",
+ "/js/main.5aee59e2daa05a84f23f.hot-update.js": "/js/main.5aee59e2daa05a84f23f.hot-update.js",
+ "/js/main.fcd523fdfaadc502165e.hot-update.js": "/js/main.fcd523fdfaadc502165e.hot-update.js",
+ "/js/main.5b815448277a546420bd.hot-update.js": "/js/main.5b815448277a546420bd.hot-update.js",
+ "/js/main.e8e018712bf8029e01c8.hot-update.js": "/js/main.e8e018712bf8029e01c8.hot-update.js",
+ "/js/main.c6691d9c45c307c43918.hot-update.js": "/js/main.c6691d9c45c307c43918.hot-update.js",
+ "/js/main.5cf4fd56f1898056455a.hot-update.js": "/js/main.5cf4fd56f1898056455a.hot-update.js",
+ "/js/main.658eb718f5a8cb57f236.hot-update.js": "/js/main.658eb718f5a8cb57f236.hot-update.js",
+ "/js/main.9773de534e46d93390ef.hot-update.js": "/js/main.9773de534e46d93390ef.hot-update.js",
+ "/js/main.bf30b07e4dd1995e85a0.hot-update.js": "/js/main.bf30b07e4dd1995e85a0.hot-update.js",
+ "/js/main.7ecc1b7aad3dc3021c98.hot-update.js": "/js/main.7ecc1b7aad3dc3021c98.hot-update.js",
+ "/js/main.4010b76509bf45947101.hot-update.js": "/js/main.4010b76509bf45947101.hot-update.js",
+ "/js/main.65a3d466223e5e6c1beb.hot-update.js": "/js/main.65a3d466223e5e6c1beb.hot-update.js",
+ "/js/main.3eb9149083fb318a0963.hot-update.js": "/js/main.3eb9149083fb318a0963.hot-update.js",
+ "/js/main.6ae22926ae15c1767990.hot-update.js": "/js/main.6ae22926ae15c1767990.hot-update.js",
+ "/js/main.9c5390bef5da0e9e6925.hot-update.js": "/js/main.9c5390bef5da0e9e6925.hot-update.js",
+ "/js/main.242ffff65076162bec7c.hot-update.js": "/js/main.242ffff65076162bec7c.hot-update.js",
+ "/js/main.3733c1423bed0ce7e0f9.hot-update.js": "/js/main.3733c1423bed0ce7e0f9.hot-update.js",
+ "/js/main.1c655c61e7eaa93d426b.hot-update.js": "/js/main.1c655c61e7eaa93d426b.hot-update.js",
+ "/js/main.8da9a71671e9894184cc.hot-update.js": "/js/main.8da9a71671e9894184cc.hot-update.js",
+ "/js/main.effea649478a1ff5afc3.hot-update.js": "/js/main.effea649478a1ff5afc3.hot-update.js",
+ "/js/main.2feca9387b29299382e8.hot-update.js": "/js/main.2feca9387b29299382e8.hot-update.js",
+ "/js/main.524799cef36fd2add28a.hot-update.js": "/js/main.524799cef36fd2add28a.hot-update.js",
+ "/js/main.321e16ed74b62b1bc65a.hot-update.js": "/js/main.321e16ed74b62b1bc65a.hot-update.js",
+ "/js/main.2d3b0e5931d977aeff92.hot-update.js": "/js/main.2d3b0e5931d977aeff92.hot-update.js",
+ "/js/main.78defc1a15bab59f210e.hot-update.js": "/js/main.78defc1a15bab59f210e.hot-update.js",
+ "/js/main.f52c39d754bee5a76d48.hot-update.js": "/js/main.f52c39d754bee5a76d48.hot-update.js",
+ "/chunks/files~chunks/shared-files~chunks/shared/file-browser.32a53e956e9fc646121b.hot-update.js": "/chunks/files~chunks/shared-files~chunks/shared/file-browser.32a53e956e9fc646121b.hot-update.js",
+ "/js/main.f8f6d9903beeb494c2c4.hot-update.js": "/js/main.f8f6d9903beeb494c2c4.hot-update.js",
+ "/chunks/upgrade-billing.be406f8d88294226946e.hot-update.js": "/chunks/upgrade-billing.be406f8d88294226946e.hot-update.js",
+ "/js/main.bbdfe1e59fd5beefb761.hot-update.js": "/js/main.bbdfe1e59fd5beefb761.hot-update.js",
+ "/chunks/app-language.bbdfe1e59fd5beefb761.hot-update.js": "/chunks/app-language.bbdfe1e59fd5beefb761.hot-update.js",
+ "/chunks/app-settings.bbdfe1e59fd5beefb761.hot-update.js": "/chunks/app-settings.bbdfe1e59fd5beefb761.hot-update.js",
+ "/chunks/dashboard.bbdfe1e59fd5beefb761.hot-update.js": "/chunks/dashboard.bbdfe1e59fd5beefb761.hot-update.js",
+ "/chunks/invoices.bbdfe1e59fd5beefb761.hot-update.js": "/chunks/invoices.bbdfe1e59fd5beefb761.hot-update.js",
+ "/chunks/page-edit.bbdfe1e59fd5beefb761.hot-update.js": "/chunks/page-edit.bbdfe1e59fd5beefb761.hot-update.js",
+ "/chunks/pages.bbdfe1e59fd5beefb761.hot-update.js": "/chunks/pages.bbdfe1e59fd5beefb761.hot-update.js",
+ "/chunks/plan.bbdfe1e59fd5beefb761.hot-update.js": "/chunks/plan.bbdfe1e59fd5beefb761.hot-update.js",
+ "/chunks/plan-create.bbdfe1e59fd5beefb761.hot-update.js": "/chunks/plan-create.bbdfe1e59fd5beefb761.hot-update.js",
+ "/chunks/plans.bbdfe1e59fd5beefb761.hot-update.js": "/chunks/plans.bbdfe1e59fd5beefb761.hot-update.js",
+ "/chunks/settings.bbdfe1e59fd5beefb761.hot-update.js": "/chunks/settings.bbdfe1e59fd5beefb761.hot-update.js",
+ "/chunks/upgrade-plan.bbdfe1e59fd5beefb761.hot-update.js": "/chunks/upgrade-plan.bbdfe1e59fd5beefb761.hot-update.js",
+ "/chunks/user.bbdfe1e59fd5beefb761.hot-update.js": "/chunks/user.bbdfe1e59fd5beefb761.hot-update.js",
+ "/chunks/user-create.bbdfe1e59fd5beefb761.hot-update.js": "/chunks/user-create.bbdfe1e59fd5beefb761.hot-update.js",
+ "/chunks/users.bbdfe1e59fd5beefb761.hot-update.js": "/chunks/users.bbdfe1e59fd5beefb761.hot-update.js",
+ "/js/main.01104cf99d2419e4cff5.hot-update.js": "/js/main.01104cf99d2419e4cff5.hot-update.js",
+ "/chunks/user-detail.70aa7cd8919409d5329d.hot-update.js": "/chunks/user-detail.70aa7cd8919409d5329d.hot-update.js",
+ "/chunks/user-detail.abab6cd92cf0ce6e5da1.hot-update.js": "/chunks/user-detail.abab6cd92cf0ce6e5da1.hot-update.js",
+ "/chunks/user-detail.3aeb7d2c0d711416d022.hot-update.js": "/chunks/user-detail.3aeb7d2c0d711416d022.hot-update.js",
+ "/js/main.c3bb4db3a10c3e7da846.hot-update.js": "/js/main.c3bb4db3a10c3e7da846.hot-update.js",
+ "/chunks/user-detail.b8273c0cbf64d8c37f0d.hot-update.js": "/chunks/user-detail.b8273c0cbf64d8c37f0d.hot-update.js",
+ "/js/main.8d2870a7f6cd043b1b56.hot-update.js": "/js/main.8d2870a7f6cd043b1b56.hot-update.js",
+ "/chunks/user-detail.481fcbccadf1d85bb84d.hot-update.js": "/chunks/user-detail.481fcbccadf1d85bb84d.hot-update.js",
+ "/chunks/user-create.21af3e31acb57affbb30.hot-update.js": "/chunks/user-create.21af3e31acb57affbb30.hot-update.js",
+ "/chunks/platform.82ef2de1f5d5a15e5446.hot-update.js": "/chunks/platform.82ef2de1f5d5a15e5446.hot-update.js",
+ "/js/main.d4655186eae7d4540c7f.hot-update.js": "/js/main.d4655186eae7d4540c7f.hot-update.js",
+ "/js/main.64ddd23eefa675cfaab6.hot-update.js": "/js/main.64ddd23eefa675cfaab6.hot-update.js",
+ "/chunks/platform.64ddd23eefa675cfaab6.hot-update.js": "/chunks/platform.64ddd23eefa675cfaab6.hot-update.js",
+ "/js/main.db75ecd9cb148f639799.hot-update.js": "/js/main.db75ecd9cb148f639799.hot-update.js",
+ "/chunks/platform.03e534084ee57f0df865.hot-update.js": "/chunks/platform.03e534084ee57f0df865.hot-update.js",
+ "/js/main.cad4d506db65c874752f.hot-update.js": "/js/main.cad4d506db65c874752f.hot-update.js",
+ "/js/main.e0ca35e6005ab952ca74.hot-update.js": "/js/main.e0ca35e6005ab952ca74.hot-update.js",
+ "/chunks/platform.c9ef0bbe6780298726c3.hot-update.js": "/chunks/platform.c9ef0bbe6780298726c3.hot-update.js",
+ "/js/main.ed1830b2e9923c4fc468.hot-update.js": "/js/main.ed1830b2e9923c4fc468.hot-update.js",
+ "/js/main.2f3472937802bef1d477.hot-update.js": "/js/main.2f3472937802bef1d477.hot-update.js",
+ "/js/main.72a0e44bc3f667c8827e.hot-update.js": "/js/main.72a0e44bc3f667c8827e.hot-update.js",
+ "/js/main.393fa5e7c6f032bd7ed3.hot-update.js": "/js/main.393fa5e7c6f032bd7ed3.hot-update.js",
+ "/chunks/platform.9c847b10ae42904ade0c.hot-update.js": "/chunks/platform.9c847b10ae42904ade0c.hot-update.js",
+ "/js/main.25e97be58e8ad534ac68.hot-update.js": "/js/main.25e97be58e8ad534ac68.hot-update.js",
+ "/chunks/platform.79c947683f7b736dfbf4.hot-update.js": "/chunks/platform.79c947683f7b736dfbf4.hot-update.js",
+ "/js/main.99a27194326c25d6c5f1.hot-update.js": "/js/main.99a27194326c25d6c5f1.hot-update.js",
+ "/js/main.76b686290715137fa46c.hot-update.js": "/js/main.76b686290715137fa46c.hot-update.js",
+ "/js/main.bff53b154a3a16bef585.hot-update.js": "/js/main.bff53b154a3a16bef585.hot-update.js",
+ "/js/main.d1bb5dc97a65d1a1a05e.hot-update.js": "/js/main.d1bb5dc97a65d1a1a05e.hot-update.js",
+ "/js/main.f873615bdd326afe3081.hot-update.js": "/js/main.f873615bdd326afe3081.hot-update.js",
+ "/js/main.048230621fbc0d8c6d6a.hot-update.js": "/js/main.048230621fbc0d8c6d6a.hot-update.js",
+ "/js/main.20aa3ff157dd70285d03.hot-update.js": "/js/main.20aa3ff157dd70285d03.hot-update.js",
+ "/vendors~chunks/admin-account~chunks/app-email~chunks/app-payments~chunks/app-setup~chunks/billings-d~23f47ab3.js": "/vendors~chunks/admin-account~chunks/app-email~chunks/app-payments~chunks/app-setup~chunks/billings-d~23f47ab3.js?id=6e0b5019781341c44a55",
+ "/js/main.2f5369d54fc47cc3613a.hot-update.js": "/js/main.2f5369d54fc47cc3613a.hot-update.js",
+ "/js/main.0b552d8a9f2f71d60a3f.hot-update.js": "/js/main.0b552d8a9f2f71d60a3f.hot-update.js",
+ "/js/main.b6d9a605b27d6f90d3fb.hot-update.js": "/js/main.b6d9a605b27d6f90d3fb.hot-update.js",
+ "/js/main.588244a8f38242c0f498.hot-update.js": "/js/main.588244a8f38242c0f498.hot-update.js",
+ "/js/main.625211bd2d49952ddaec.hot-update.js": "/js/main.625211bd2d49952ddaec.hot-update.js",
+ "/js/main.35317a4f599286d0cc33.hot-update.js": "/js/main.35317a4f599286d0cc33.hot-update.js",
+ "/js/main.a865b9e77d0cdb2d3b26.hot-update.js": "/js/main.a865b9e77d0cdb2d3b26.hot-update.js",
+ "/js/main.6da8349a3377d596fee1.hot-update.js": "/js/main.6da8349a3377d596fee1.hot-update.js",
+ "/js/main.2359a05cb36cbfe74a5d.hot-update.js": "/js/main.2359a05cb36cbfe74a5d.hot-update.js",
+ "/js/main.8afc74651778fba7ba28.hot-update.js": "/js/main.8afc74651778fba7ba28.hot-update.js",
+ "/js/main.434d7133378bdca4046d.hot-update.js": "/js/main.434d7133378bdca4046d.hot-update.js",
+ "/js/main.083f1ce04dbf53d25a69.hot-update.js": "/js/main.083f1ce04dbf53d25a69.hot-update.js",
+ "/js/main.5fd6b0c0ac064f4a2961.hot-update.js": "/js/main.5fd6b0c0ac064f4a2961.hot-update.js",
+ "/js/main.dfdfbf318f0ffeccb0f9.hot-update.js": "/js/main.dfdfbf318f0ffeccb0f9.hot-update.js",
+ "/js/main.80201fafcbad093d3a45.hot-update.js": "/js/main.80201fafcbad093d3a45.hot-update.js",
+ "/js/main.2083d295513550522f63.hot-update.js": "/js/main.2083d295513550522f63.hot-update.js"
}
diff --git a/resources/js/App.vue b/resources/js/App.vue
index 4d35f8bd..d2f93d17 100644
--- a/resources/js/App.vue
+++ b/resources/js/App.vue
@@ -3,7 +3,7 @@