├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── app ├── Console │ └── Kernel.php ├── Enums │ └── Stock │ │ ├── ItemStatus.php │ │ ├── SalesOrderStatus.php │ │ ├── StockEntryListPurpose.php │ │ └── StockEntryStatus.php ├── Exceptions │ ├── Handler.php │ └── MissingAttributeException.php ├── Filament │ ├── Exports │ │ └── Common │ │ │ └── CountryExporter.php │ ├── Imports │ │ └── Common │ │ │ ├── CityImporter.php │ │ │ ├── CountryImporter.php │ │ │ ├── ProvinceImporter.php │ │ │ ├── SubDistrictImporter.php │ │ │ └── VillageImporter.php │ ├── Pages │ │ ├── AppSetting.php │ │ ├── Auth │ │ │ ├── Login.php │ │ │ └── Register.php │ │ └── MyProfile.php │ └── Resources │ │ ├── Accounting │ │ ├── PaymentTermTemplatesResource.php │ │ ├── PaymentTermTemplatesResource │ │ │ └── Pages │ │ │ │ ├── CreatePaymentTermTemplates.php │ │ │ │ ├── EditPaymentTermTemplates.php │ │ │ │ ├── ListPaymentTermTemplates.php │ │ │ │ └── ViewPaymentTermTemplates.php │ │ ├── SalesInvoiceResource.php │ │ └── SalesInvoiceResource │ │ │ └── Pages │ │ │ ├── CreateSalesInvoice.php │ │ │ ├── EditSalesInvoice.php │ │ │ ├── ListSalesInvoices.php │ │ │ └── ViewSalesInvoice.php │ │ ├── CRM │ │ ├── AddressResource.php │ │ ├── AddressResource │ │ │ └── Pages │ │ │ │ ├── CreateAddress.php │ │ │ │ ├── EditAddress.php │ │ │ │ ├── ListAddresses.php │ │ │ │ └── ViewAddress.php │ │ ├── ContactResource.php │ │ ├── ContactResource │ │ │ └── Pages │ │ │ │ ├── CreateContact.php │ │ │ │ ├── EditContact.php │ │ │ │ ├── ListContacts.php │ │ │ │ └── ViewContact.php │ │ ├── LeadResource.php │ │ └── LeadResource │ │ │ └── Pages │ │ │ ├── CreateLead.php │ │ │ ├── EditLead.php │ │ │ └── ListLeads.php │ │ ├── Common │ │ ├── CityResource.php │ │ ├── CityResource │ │ │ └── Pages │ │ │ │ ├── CreateCity.php │ │ │ │ ├── EditCity.php │ │ │ │ └── ListCities.php │ │ ├── CountryResource.php │ │ ├── CountryResource │ │ │ ├── Pages │ │ │ │ ├── CreateCountry.php │ │ │ │ ├── EditCountry.php │ │ │ │ └── ListCountries.php │ │ │ └── Widgets │ │ │ │ └── CountryOverview.php │ │ ├── CurrencyResource.php │ │ ├── CurrencyResource │ │ │ ├── Pages │ │ │ │ ├── CreateCurrency.php │ │ │ │ ├── EditCurrency.php │ │ │ │ └── ListCurrencies.php │ │ │ └── Widgets │ │ │ │ └── CurrencyOverview.php │ │ ├── ProvinceResource.php │ │ ├── ProvinceResource │ │ │ └── Pages │ │ │ │ ├── CreateProvince.php │ │ │ │ ├── EditProvince.php │ │ │ │ └── ListProvinces.php │ │ ├── SubDistrictResource.php │ │ ├── SubDistrictResource │ │ │ └── Pages │ │ │ │ ├── CreateSubDistrict.php │ │ │ │ ├── EditSubDistrict.php │ │ │ │ └── ListSubDistricts.php │ │ ├── TimezoneResource.php │ │ ├── TimezoneResource │ │ │ ├── Pages │ │ │ │ ├── CreateTimezone.php │ │ │ │ ├── EditTimezone.php │ │ │ │ └── ListTimezones.php │ │ │ └── Widgets │ │ │ │ └── TimezoneOverview.php │ │ ├── VillageResource.php │ │ └── VillageResource │ │ │ └── Pages │ │ │ ├── CreateVillage.php │ │ │ ├── EditVillage.php │ │ │ └── ListVillages.php │ │ ├── Selling │ │ ├── CustomerGroupResource.php │ │ ├── CustomerGroupResource │ │ │ └── Pages │ │ │ │ ├── CreateCustomerGroup.php │ │ │ │ ├── EditCustomerGroup.php │ │ │ │ ├── ListCustomerGroups.php │ │ │ │ └── ViewCustomerGroup.php │ │ ├── CustomerResource.php │ │ ├── CustomerResource │ │ │ ├── Pages │ │ │ │ ├── CreateCustomer.php │ │ │ │ ├── EditCustomer.php │ │ │ │ ├── ListCustomers.php │ │ │ │ └── ViewCustomer.php │ │ │ └── RelationManagers │ │ │ │ ├── AddressRelationManager.php │ │ │ │ ├── ContactRelationManager.php │ │ │ │ └── SalesRelationManager.php │ │ ├── QuotationResource.php │ │ ├── QuotationResource │ │ │ └── Pages │ │ │ │ ├── CreateQuotation.php │ │ │ │ ├── EditQuotation.php │ │ │ │ ├── ListQuotations.php │ │ │ │ └── ViewQuotation.php │ │ ├── SalesOrderResource.php │ │ ├── SalesOrderResource │ │ │ ├── Form │ │ │ │ ├── AddressContactForm.php │ │ │ │ ├── DetailForm.php │ │ │ │ ├── MoreInfoForm.php │ │ │ │ └── TermForm.php │ │ │ ├── Pages │ │ │ │ ├── CreateSalesOrder.php │ │ │ │ ├── EditSalesOrder.php │ │ │ │ ├── ListSalesOrders.php │ │ │ │ └── ViewSalesOrder.php │ │ │ └── Widgets │ │ │ │ └── SalesOrderOverview.php │ │ ├── SalesPersonResource.php │ │ ├── SalesPersonResource │ │ │ └── Pages │ │ │ │ ├── CreateSalesPerson.php │ │ │ │ ├── EditSalesPerson.php │ │ │ │ ├── ListSalesPeople.php │ │ │ │ └── ViewSalesPerson.php │ │ ├── TargetResource.php │ │ ├── TargetResource │ │ │ └── Pages │ │ │ │ ├── CreateTarget.php │ │ │ │ ├── EditTarget.php │ │ │ │ ├── ListTargets.php │ │ │ │ └── ViewTarget.php │ │ ├── TerritoryResource.php │ │ └── TerritoryResource │ │ │ └── Pages │ │ │ ├── CreateTerritory.php │ │ │ ├── EditTerritory.php │ │ │ ├── ListTerritories.php │ │ │ └── ViewTerritory.php │ │ ├── Shield │ │ ├── RoleResource.php │ │ └── RoleResource │ │ │ └── Pages │ │ │ ├── CreateRole.php │ │ │ ├── EditRole.php │ │ │ ├── ListRoles.php │ │ │ └── ViewRole.php │ │ ├── Stock │ │ ├── BrandResource.php │ │ ├── BrandResource │ │ │ └── Pages │ │ │ │ ├── CreateBrand.php │ │ │ │ ├── EditBrand.php │ │ │ │ └── ListBrands.php │ │ ├── ItemGroupResource.php │ │ ├── ItemGroupResource │ │ │ └── Pages │ │ │ │ ├── CreateItemGroup.php │ │ │ │ ├── EditItemGroup.php │ │ │ │ └── ListItemGroups.php │ │ ├── ItemPriceListResource.php │ │ ├── ItemPriceListResource │ │ │ └── Pages │ │ │ │ ├── CreateItemPriceList.php │ │ │ │ ├── EditItemPriceList.php │ │ │ │ └── ListItemPriceLists.php │ │ ├── ItemPriceResource.php │ │ ├── ItemPriceResource │ │ │ └── Pages │ │ │ │ ├── CreateItemPrice.php │ │ │ │ ├── EditItemPrice.php │ │ │ │ └── ListItemPrices.php │ │ ├── ItemResource.php │ │ ├── ItemResource │ │ │ ├── Pages │ │ │ │ ├── CreateItem.php │ │ │ │ ├── EditItem.php │ │ │ │ ├── ListItems.php │ │ │ │ └── ViewItem.php │ │ │ └── RelationManagers │ │ │ │ ├── ItemPricesRelationManager.php │ │ │ │ └── ItemStockLevelsRelationManager.php │ │ ├── StockEntryResource.php │ │ ├── StockEntryResource │ │ │ └── Pages │ │ │ │ ├── CreateStockEntry.php │ │ │ │ ├── EditStockEntry.php │ │ │ │ ├── ListStockEntries.php │ │ │ │ └── ViewStockEntry.php │ │ ├── StockEntryTypeResource.php │ │ ├── StockEntryTypeResource │ │ │ └── Pages │ │ │ │ ├── CreateStockEntryType.php │ │ │ │ ├── EditStockEntryType.php │ │ │ │ └── ListStockEntryTypes.php │ │ ├── UomResource.php │ │ ├── UomResource │ │ │ └── Pages │ │ │ │ ├── CreateUom.php │ │ │ │ ├── EditUom.php │ │ │ │ └── ListUoms.php │ │ ├── WarehouseResource.php │ │ ├── WarehouseResource │ │ │ └── Pages │ │ │ │ ├── CreateWarehouse.php │ │ │ │ ├── EditWarehouse.php │ │ │ │ └── ListWarehouses.php │ │ ├── WarehouseTypeResource.php │ │ └── WarehouseTypeResource │ │ │ └── Pages │ │ │ ├── CreateWarehouseType.php │ │ │ ├── EditWarehouseType.php │ │ │ └── ListWarehouseTypes.php │ │ ├── UserResource.php │ │ └── UserResource │ │ └── Pages │ │ ├── CreateUser.php │ │ ├── EditUser.php │ │ ├── ListUserActivities.php │ │ ├── ListUsers.php │ │ └── ViewUser.php ├── Http │ ├── Controllers │ │ └── Controller.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php ├── Models │ ├── Accounting │ │ ├── Account.php │ │ ├── PaymentTermTemplates.php │ │ └── SalesInvoice.php │ ├── Buying │ │ └── Supplier.php │ ├── CRM │ │ ├── Address.php │ │ ├── Contact.php │ │ ├── Lead.php │ │ └── Salutation.php │ ├── Common │ │ ├── City.php │ │ ├── Country.php │ │ ├── Currency.php │ │ ├── Email.php │ │ ├── PhoneNumber.php │ │ ├── Province.php │ │ ├── SubDistrict.php │ │ ├── Timezone.php │ │ └── Village.php │ ├── Selling │ │ ├── CreditLimit.php │ │ ├── Customer.php │ │ ├── CustomerGroup.php │ │ ├── CustomerSalesPerson.php │ │ ├── Quotation.php │ │ ├── SalesOrder.php │ │ ├── SalesPerson.php │ │ ├── Target.php │ │ └── Territory.php │ ├── Stock │ │ ├── Batch.php │ │ ├── Brand.php │ │ ├── Conversion.php │ │ ├── Item.php │ │ ├── ItemBarcode.php │ │ ├── ItemGroup.php │ │ ├── ItemInventory.php │ │ ├── ItemPrice.php │ │ ├── ItemPriceList.php │ │ ├── ItemStockLevel.php │ │ ├── ItemUom.php │ │ ├── StockEntry.php │ │ ├── StockEntryType.php │ │ ├── UnitOfMeasure.php │ │ ├── Warehouse.php │ │ └── WarehouseType.php │ └── User.php ├── Observers │ ├── CRM │ │ ├── AddressObserver.php │ │ └── ContactObserver.php │ ├── Selling │ │ ├── CustomerObserver.php │ │ └── SalesOrderObserver.php │ ├── Stock │ │ ├── ItemObserver.php │ │ ├── ItemUomObserver.php │ │ ├── StockEntryObserver.php │ │ └── WarehouseObserver.php │ └── UserObserver.php ├── Policies │ ├── Accounting │ │ ├── PaymentTermTemplatesPolicy.php │ │ └── SalesInvoicePolicy.php │ ├── ActivityPolicy.php │ ├── CRM │ │ ├── AddressPolicy.php │ │ ├── ContactPolicy.php │ │ └── LeadPolicy.php │ ├── Common │ │ ├── CityPolicy.php │ │ ├── CountryPolicy.php │ │ ├── CurrencyPolicy.php │ │ ├── ProvincePolicy.php │ │ ├── SubDistrictPolicy.php │ │ ├── TimezonePolicy.php │ │ └── VillagePolicy.php │ ├── RolePolicy.php │ ├── Selling │ │ ├── CustomerGroupPolicy.php │ │ ├── CustomerPolicy.php │ │ ├── QuotationPolicy.php │ │ ├── SalesOrderPolicy.php │ │ ├── SalesPersonPolicy.php │ │ ├── TargetPolicy.php │ │ └── TerritoryPolicy.php │ ├── Stock │ │ ├── BrandPolicy.php │ │ ├── ItemGroupPolicy.php │ │ ├── ItemPolicy.php │ │ ├── ItemPriceListPolicy.php │ │ ├── ItemPricePolicy.php │ │ ├── StockEntryPolicy.php │ │ ├── StockEntryTypePolicy.php │ │ ├── UnitOfMeasurePolicy.php │ │ ├── UomPolicy.php │ │ ├── WarehousePolicy.php │ │ └── WarehouseTypePolicy.php │ └── UserPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── Filament │ │ └── AdminPanelProvider.php │ └── RouteServiceProvider.php ├── Settings │ └── GeneralSettings.php └── Traits │ ├── GeneratesUniqueNumber.php │ └── SelectableOptions.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── buildDocker.sh ├── composer.json ├── composer.lock ├── config ├── activitylog.php ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── captcha.php ├── cors.php ├── database.php ├── filament-captcha.php ├── filament-logger.php ├── filament-shield.php ├── filament.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── permission.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php ├── settings.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2022_12_14_083707_create_settings_table.php │ ├── 2024_03_23_033343_create_addresses_table.php │ ├── 2024_03_23_042024_create_contacts_table.php │ ├── 2024_03_23_051600_create_sales_people_table.php │ ├── 2024_03_23_051913_create_price_lists_table.php │ ├── 2024_03_23_051914_create_payment_term_templates_table.php │ ├── 2024_03_23_053349_create_territories_table.php │ ├── 2024_03_23_053922_create_customers_table.php │ ├── 2024_03_23_055907_create_sessions_table.php │ ├── 2024_03_23_060912_create_credit_limits_table.php │ ├── 2024_03_23_223734_create_targets_table.php │ ├── 2024_03_23_224227_create_quotations_table.php │ ├── 2024_03_23_232339_create_sales_orders_table.php │ ├── 2024_03_24_030659_create_sales_invoices_table.php │ ├── 2024_03_24_225257_create_permission_tables.php │ ├── 2024_03_24_225451_create_breezy_sessions_table.php │ ├── 2024_03_27_130358_create_tag_tables.php │ ├── 2024_03_28_154345_create_items_table.php │ ├── 2024_03_28_235639_create_job_batches_table.php │ ├── 2024_03_28_235644_create_notifications_table.php │ ├── 2024_03_28_235649_create_imports_table.php │ ├── 2024_03_28_235650_create_exports_table.php │ ├── 2024_03_28_235651_create_failed_import_rows_table.php │ ├── 2024_03_29_215256_create_buying_module_table.php │ ├── 2024_04_01_121534_create_activity_log_table.php │ ├── 2024_04_01_121535_add_event_column_to_activity_log_table.php │ ├── 2024_04_01_121536_add_batch_uuid_column_to_activity_log_table.php │ ├── 2024_04_04_195435_tax_category.php │ ├── 2024_04_06_232942_create_stock_entries_table.php │ ├── 2024_04_07_044909_create_warehouses.php │ └── 2024_04_20_095419_create_attachments_table.php ├── seeders │ ├── CRM │ │ └── SalutationSeed.php │ ├── Common │ │ ├── CountrySeeder.php │ │ ├── CurrencySeeder.php │ │ └── TimezoneSeeder.php │ ├── DatabaseSeeder.php │ ├── Selling │ │ ├── CustomerGroupSeeder.php │ │ └── TerritorySeeder.php │ ├── ShieldSeeder.php │ └── Stock │ │ ├── ItemGroupSeeder.php │ │ ├── ItemPriceListSeeder.php │ │ ├── StockEntryTypeSeeder.php │ │ ├── UomSeeder.php │ │ └── WarehouseSeeder.php └── settings │ └── 2024_04_01_124430_manage_footer_settings.php ├── docker-compose.yml ├── kubectl ├── production │ └── values.yml ├── staging │ └── values.yml └── values.yml ├── lang ├── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── id │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php └── vendor │ └── filament-shield │ ├── ar │ └── filament-shield.php │ ├── cs │ └── filament-shield.php │ ├── de │ └── filament-shield.php │ ├── en │ └── filament-shield.php │ ├── es │ └── filament-shield.php │ ├── fa │ └── filament-shield.php │ ├── filament-shield_pt_PT.php │ ├── fr │ └── filament-shield.php │ ├── hu │ └── filament-shield.php │ ├── hy │ └── filament-shield.php │ ├── id │ └── filament-shield.php │ ├── it │ └── filament-shield.php │ ├── ja │ └── filament-shield.php │ ├── nl │ └── filament-shield.php │ ├── pt_BR │ └── filament-shield.php │ ├── pt_PT │ └── filament-shield.php │ ├── ro │ └── filament-shield.php │ ├── ru │ └── filament-shield.php │ ├── tr │ └── filament-shield.php │ ├── uk │ └── filament-shield.php │ ├── vi │ └── filament-shield.php │ ├── zh_CN │ └── filament-shield.php │ └── zh_TW │ └── filament-shield.php ├── package-lock.json ├── package.json ├── phpunit.xml ├── postcss.config.js ├── public ├── .htaccess ├── css │ ├── bezhansalleh │ │ └── filament-language-switch │ │ │ └── filament-language-switch.css │ ├── dominion-solutions │ │ └── filament-captcha │ │ │ └── filament-captcha-styles.css │ └── filament │ │ ├── filament │ │ └── app.css │ │ ├── forms │ │ └── forms.css │ │ └── support │ │ └── support.css ├── favicon.ico ├── index.php ├── js │ ├── dominion-solutions │ │ └── filament-captcha │ │ │ └── filament-captcha-scripts.js │ └── filament │ │ ├── filament │ │ ├── app.js │ │ └── echo.js │ │ ├── forms │ │ └── components │ │ │ ├── color-picker.js │ │ │ ├── date-time-picker.js │ │ │ ├── file-upload.js │ │ │ ├── key-value.js │ │ │ ├── markdown-editor.js │ │ │ ├── rich-editor.js │ │ │ ├── select.js │ │ │ ├── tags-input.js │ │ │ └── textarea.js │ │ ├── notifications │ │ └── notifications.js │ │ ├── support │ │ ├── async-alpine.js │ │ └── support.js │ │ ├── tables │ │ └── components │ │ │ └── table.js │ │ └── widgets │ │ └── components │ │ ├── chart.js │ │ └── stats-overview │ │ └── stat │ │ └── chart.js └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ ├── en │ │ └── selling │ │ │ ├── customers.php │ │ │ ├── order.php │ │ │ └── stock.php │ ├── id │ │ └── selling │ │ │ ├── customers.php │ │ │ ├── order.php │ │ │ └── stock.php │ └── vendor │ │ └── filament-panels │ │ ├── ar │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── az │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── bg │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── bn │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ └── login.php │ │ │ └── dashboard.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── bs │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ └── login.php │ │ │ └── dashboard.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── ca │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── ckb │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── cs │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── da │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── de │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── el │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ └── dashboard.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── en │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── es │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── fa │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── fi │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── fr │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── he │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── hi │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ └── login.php │ │ │ └── dashboard.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── hr │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── hu │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── hy │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ └── login.php │ │ │ └── dashboard.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── id │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── it │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── ja │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── km │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── ko │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── ku │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── lt │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── lv │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── ms │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── my │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ └── login.php │ │ │ └── dashboard.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── nl │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── no │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── np │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── pl │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── pt_BR │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── pt_PT │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── ro │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── ru │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── sk │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── sq │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── sv │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── sw │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ └── login.php │ │ │ └── dashboard.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── th │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── tr │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── uk │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── uz │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── vi │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ ├── zh_CN │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ │ ├── auth │ │ │ │ ├── edit-profile.php │ │ │ │ ├── email-verification │ │ │ │ │ └── email-verification-prompt.php │ │ │ │ ├── login.php │ │ │ │ ├── password-reset │ │ │ │ │ ├── request-password-reset.php │ │ │ │ │ └── reset-password.php │ │ │ │ └── register.php │ │ │ ├── dashboard.php │ │ │ └── tenancy │ │ │ │ └── edit-tenant-profile.php │ │ ├── resources │ │ │ └── pages │ │ │ │ ├── create-record.php │ │ │ │ ├── edit-record.php │ │ │ │ ├── list-records.php │ │ │ │ └── view-record.php │ │ └── widgets │ │ │ ├── account-widget.php │ │ │ └── filament-info-widget.php │ │ └── zh_TW │ │ ├── global-search.php │ │ ├── layout.php │ │ ├── pages │ │ ├── auth │ │ │ └── login.php │ │ └── dashboard.php │ │ ├── resources │ │ └── pages │ │ │ ├── create-record.php │ │ │ ├── edit-record.php │ │ │ ├── list-records.php │ │ │ └── view-record.php │ │ └── widgets │ │ ├── account-widget.php │ │ └── filament-info-widget.php └── views │ ├── components │ └── layouts │ │ └── app.blade.php │ ├── customFooter.blade.php │ ├── filament │ ├── notifications │ │ └── database-notifications-trigger.blade.php │ └── pages │ │ ├── account-settings-page.blade.php │ │ ├── auth │ │ ├── login.blade.php │ │ └── register.blade.php │ │ ├── footer-settings.blade.php │ │ ├── master-data.blade.php │ │ ├── my-profile.blade.php │ │ ├── profile-page.blade.php │ │ └── user-resource │ │ └── list-user-activities.blade.php │ ├── vendor │ ├── filament-breezy │ │ ├── components │ │ │ ├── clipboard-link.blade.php │ │ │ └── grid-section.blade.php │ │ ├── filament │ │ │ └── pages │ │ │ │ ├── my-profile.blade.php │ │ │ │ └── two-factor.blade.php │ │ └── livewire │ │ │ ├── personal-info.blade.php │ │ │ ├── sanctum-tokens.blade.php │ │ │ ├── two-factor-authentication.blade.php │ │ │ └── update-password.blade.php │ ├── filament-captcha │ │ ├── .gitkeep │ │ └── form │ │ │ └── components │ │ │ └── captcha.blade.php │ └── filament-language-switch │ │ ├── .gitkeep │ │ ├── components │ │ └── flag.blade.php │ │ ├── language-switch.blade.php │ │ └── switch.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── run.bat ├── run.sh ├── sonar-project.properties ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | indent_size = 4 7 | indent_style = space 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | 17 | [docker-compose.yml] 18 | indent_size = 4 19 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | *.blade.php diff=html 4 | *.css diff=css 5 | *.html diff=html 6 | *.md diff=markdown 7 | *.php diff=php 8 | 9 | /.github export-ignore 10 | CHANGELOG.md export-ignore 11 | .styleci.yml export-ignore 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/build 3 | /public/hot 4 | /public/storage 5 | /storage/*.key 6 | /vendor 7 | .env 8 | .env.backup 9 | .env.production 10 | .phpunit.result.cache 11 | Homestead.json 12 | Homestead.yaml 13 | auth.json 14 | npm-debug.log 15 | yarn-error.log 16 | /.fleet 17 | /.idea 18 | /.vscode 19 | -------------------------------------------------------------------------------- /app/Exceptions/MissingAttributeException.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 18 | return route('login'); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | 'current_password', 16 | 'password', 17 | 'password_confirmation', 18 | ]; 19 | } 20 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | public function hosts() 15 | { 16 | return [ 17 | $this->allSubdomainsOfApplicationUrl(), 18 | ]; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 'fbclid', 16 | // 'utm_campaign', 17 | // 'utm_content', 18 | // 'utm_medium', 19 | // 'utm_source', 20 | // 'utm_term', 21 | ]; 22 | } 23 | -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- 1 | 13 | */ 14 | protected $except = [ 15 | // 16 | ]; 17 | } 18 | -------------------------------------------------------------------------------- /app/Models/Accounting/Account.php: -------------------------------------------------------------------------------- 1 | belongsTo(Province::class, 'province_code'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Models/Common/Country.php: -------------------------------------------------------------------------------- 1 | belongsTo(Country::class); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Models/Common/SubDistrict.php: -------------------------------------------------------------------------------- 1 | belongsTo(City::class, 'city_code'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Models/Common/Timezone.php: -------------------------------------------------------------------------------- 1 | belongsTo(SubDistrict::class, 'sub_district_code'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Models/Selling/CreditLimit.php: -------------------------------------------------------------------------------- 1 | belongsTo(CustomerGroup::class); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/Models/Stock/Brand.php: -------------------------------------------------------------------------------- 1 | morphTo(); 16 | } 17 | 18 | public function uom() 19 | { 20 | return $this->belongsTo(UnitOfMeasure::class); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /app/Models/Stock/StockEntryType.php: -------------------------------------------------------------------------------- 1 | StockEntryListPurpose::class, 20 | ]; 21 | } 22 | -------------------------------------------------------------------------------- /app/Models/Stock/UnitOfMeasure.php: -------------------------------------------------------------------------------- 1 | hasMany(Conversion::class); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Models/Stock/WarehouseType.php: -------------------------------------------------------------------------------- 1 | env('CAPTCHA_ENGINE', 'mews'), 8 | ]; 9 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/settings/2024_04_01_124430_manage_footer_settings.php: -------------------------------------------------------------------------------- 1 | migrator->add('general.site_name', 'BUM;CODE'); 10 | $this->migrator->add('general.site_active', true); 11 | } 12 | }; 13 | -------------------------------------------------------------------------------- /kubectl/production/values.yml: -------------------------------------------------------------------------------- 1 | env: 2 | APP_VERSION: -------------------------------------------------------------------------------- /kubectl/staging/values.yml: -------------------------------------------------------------------------------- 1 | env: 2 | APP_VERSION: v0.0.2 -------------------------------------------------------------------------------- /kubectl/values.yml: -------------------------------------------------------------------------------- 1 | env: 2 | APP_VERSION: -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "dev": "vite", 5 | "build": "vite build" 6 | }, 7 | "devDependencies": { 8 | "@tailwindcss/forms": "^0.5.7", 9 | "@tailwindcss/typography": "^0.5.12", 10 | "autoprefixer": "^10.4.19", 11 | "axios": "^1.7.4", 12 | "laravel-vite-plugin": "^0.7.0", 13 | "lodash": "^4.17.19", 14 | "postcss": "^8.4.38", 15 | "postcss-nesting": "^12.1.0", 16 | "tailwindcss": "^3.4.3", 17 | "vite": "^3.2.10" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumicode/erp/21ed4e4aed7103baa516b0b9164f267c11ec49ae/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumicode/erp/21ed4e4aed7103baa516b0b9164f267c11ec49ae/public/favicon.ico -------------------------------------------------------------------------------- /public/js/dominion-solutions/filament-captcha/filament-captcha-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumicode/erp/21ed4e4aed7103baa516b0b9164f267c11ec49ae/public/js/dominion-solutions/filament-captcha/filament-captcha-scripts.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/textarea.js: -------------------------------------------------------------------------------- 1 | function t({initialHeight:e}){return{init:function(){this.render()},render:function(){this.$el.scrollHeight>0&&(this.$el.style.height=e+"rem",this.$el.style.height=this.$el.scrollHeight+"px")}}}export{t as default}; 2 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ar/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'بحث عام', 7 | 'placeholder' => 'بحث', 8 | ], 9 | 10 | 'no_results_message' => 'لم يتم العثور على نتائج عن البحث.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ar/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'لوحة التحكم', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'تصفية', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'تصفية', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'تطبيق', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ar/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'حفظ التغييرات', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'تم الحفظ', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ar/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'القائمة', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ar/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'عرض :label', 6 | 7 | 'breadcrumb' => 'عرض', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'عرض', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ar/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'تسجيل الخروج', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'مرحبا', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ar/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'الوثائق', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/az/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Ümumi axtarış', 7 | 'placeholder' => 'Axtar', 8 | ], 9 | 10 | 'no_results_message' => 'Nəticə tapılmadı.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/az/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'İdarəetmə Paneli', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/az/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Dəyişiklikləri Yadda Saxla', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Yadda Saxlanıldı', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/az/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'List', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/az/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label göstər', 6 | 7 | 'breadcrumb' => 'Göstər', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Göstər', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/az/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Çıxış', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Xoş gəldin', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/az/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentasiya', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bg/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Глобално търсене', 7 | 'placeholder' => 'Търсене...', 8 | ], 9 | 10 | 'no_results_message' => 'Няма намерени резултати.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bg/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Табло', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Филтър', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Филтриране', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Приложи', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bg/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Запази', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Запазено', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bg/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Списък', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bg/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Преглед на :label', 6 | 7 | 'breadcrumb' => 'Преглед', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Детайли', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bg/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Изход', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Добре дошли', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bg/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Документация', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bn/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'সব জায়গায় খুঁজুন', 7 | 'placeholder' => 'খুঁজুন', 8 | ], 9 | 10 | 'no_results_message' => 'খুঁজে পাওয়া যায়নি।', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bn/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'ড্যাশবোর্ড', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bn/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'তালিকা', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bn/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label দেখুন', 6 | 7 | 'breadcrumb' => 'দেখুন', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'দেখুন', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bn/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'সাইন আউট', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'স্বাগতম', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bn/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'ব্যবহার গাইড', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'গিটহাব', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bs/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globalna pretraga', 7 | 'placeholder' => 'Tražite', 8 | ], 9 | 10 | 'no_results_message' => 'Nisu pronađeni rezultati pretrage.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bs/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Nadzorna ploča', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bs/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bs/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Pogled :label', 6 | 7 | 'breadcrumb' => 'Pogled', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Pogled', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bs/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Odjava', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Zdravo', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/bs/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentacija', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ca/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Cerca global', 7 | 'placeholder' => 'Cerca', 8 | ], 9 | 10 | 'no_results_message' => 'No s\'han trobat resultats.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ca/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Escriptori', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filtre', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filtre', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Aplicar', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ca/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Desar canvis', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Canvis desats', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ca/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Llistat', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ca/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Veure :label', 6 | 7 | 'breadcrumb' => 'Veure', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Veure', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ca/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Tancar la sessió', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Benvingut/da', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ca/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentació', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ckb/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'گەڕانی گشتی', 7 | 'placeholder' => 'گەڕان', 8 | ], 9 | 10 | 'no_results_message' => 'هیچ ئەنجامێک بۆ گەڕانەکەت نەدۆزرایەوە.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ckb/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'داشبۆرد', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ckb/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'نوێکردنەوە', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'نوێکرایەوە', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ckb/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'تۆمارەکان', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ckb/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'بینینی :label', 6 | 7 | 'breadcrumb' => 'بینین', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'بینین', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ckb/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'چوونەدەرەوە', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'بەخێربێیت', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ckb/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentation', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/cs/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Vyhledávání', 7 | 'placeholder' => 'Hledat', 8 | ], 9 | 10 | 'no_results_message' => 'Nenalezeny žádné výsledky.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/cs/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Nástěnka', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filtr', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filtr', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Použít', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/cs/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Uložit', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Uloženo', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/cs/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Přehled', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/cs/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Zobrazit :label', 6 | 7 | 'breadcrumb' => 'Zobrazit', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Zobrazit', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/cs/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Odhlásit se', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Vítejte', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/cs/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentace', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/da/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Global søgning', 7 | 'placeholder' => 'Søg', 8 | ], 9 | 10 | 'no_results_message' => 'Ingen søgeresultater fundet.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/da/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filtrer', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filter', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Anvend', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/da/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Gem ændringer', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Gemt', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/da/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/da/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Vis :label', 6 | 7 | 'breadcrumb' => 'Vis', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Vis', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/da/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Log ud', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Velkommen', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/da/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentation', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/de/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globale Suche', 7 | 'placeholder' => 'Suchen', 8 | ], 9 | 10 | 'no_results_message' => 'Keine Ergebnisse gefunden.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/de/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filter', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filter', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Übernehmen', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | ]; 33 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/de/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Speichern', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Gespeichert', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/de/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Übersicht', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/de/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label ansehen', 6 | 7 | 'breadcrumb' => 'Ansehen', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Ansehen', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/de/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Abmelden', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Willkommen', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/de/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentation', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/el/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Γενική αναζήτηση', 7 | 'placeholder' => 'Αναζήτηση', 8 | ], 9 | 10 | 'no_results_message' => 'Δεν βρέθηκαν αποτελέσματα.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/el/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Πίνακας ελέγχου', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/el/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Λίστα', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/el/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Προεπισκόπηση :label', 6 | 7 | 'breadcrumb' => 'Προεπισκόπηση', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Προεπισκόπηση', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/el/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Αποσύνδεση', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Καλώς ήρθες', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/el/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Οδηγός', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/en/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Global search', 7 | 'placeholder' => 'Search', 8 | ], 9 | 10 | 'no_results_message' => 'No search results found.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/en/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filter', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filter', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Apply', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/en/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Save changes', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Saved', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/en/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'List', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/en/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'View :label', 6 | 7 | 'breadcrumb' => 'View', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'View', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/en/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Sign out', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Welcome', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/en/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentation', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/es/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Búsqueda global', 7 | 'placeholder' => 'Buscar', 8 | ], 9 | 10 | 'no_results_message' => 'No se han encontrado resultados.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/es/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Escritorio', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filtro', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filtro', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Aplicar', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/es/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Guardar cambios', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Guardados', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/es/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listado', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/es/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Ver :label', 6 | 7 | 'breadcrumb' => 'Ver', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Ver', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/es/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Salir', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Bienvenida/o', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/es/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentación', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fa/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'جستجو در کل سایت', 7 | 'placeholder' => 'جستجو', 8 | ], 9 | 10 | 'no_results_message' => 'نتیجه‌ای برای جستجوی شما یافت نشد.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fa/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'داشبورد', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fa/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'ذخیره تغییرات', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'ذخیره شد', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fa/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'لیست', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fa/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'مشاهده :label', 6 | 7 | 'breadcrumb' => 'مشاهده', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'مشاهده', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fa/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'خروج', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'خوش آمدید', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fa/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'مستندات', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'گیت‌هاب', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fi/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globaali haku', 7 | 'placeholder' => 'Etsi', 8 | ], 9 | 10 | 'no_results_message' => 'Hakutuloksia ei löytynyt.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fi/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Tallenna muutokset', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Tallennettu', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fi/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fi/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Näytä :label', 6 | 7 | 'breadcrumb' => 'Näytä', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Näytä', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fi/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Kirjaudu ulos', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Tervetuloa', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fi/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Ohjeet', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fr/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Recherche globale', 7 | 'placeholder' => 'Rechercher', 8 | ], 9 | 10 | 'no_results_message' => "Désolé, aucun résultat n'a été trouvé.", 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fr/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Sauvegarder', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Sauvegardé', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fr/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fr/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Afficher :label', 6 | 7 | 'breadcrumb' => 'Afficher', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Afficher', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fr/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Déconnexion', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Bonjour', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/fr/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentation', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/he/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'חיפוש גלובלי', 7 | 'placeholder' => 'חיפוש', 8 | ], 9 | 10 | 'no_results_message' => 'לא נמצאו תוצאות.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/he/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'פאנל', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/he/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'שמור שינויים', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'נשמר', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/he/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'רשימה', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/he/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'תצוגת :label', 6 | 7 | 'breadcrumb' => 'הצגה', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'הצגה', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/he/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'התנתק', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'ברוך הבא', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/he/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'תיעוד', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hi/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'वैश्विक खोज', 7 | 'placeholder' => 'खोजें', 8 | ], 9 | 10 | 'no_results_message' => 'कोई खोज परिणाम नहीं मिला।', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hi/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'डैशबोर्ड', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hi/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'सूची', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hi/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label देखें', 6 | 7 | 'breadcrumb' => 'देखें', 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hi/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'साइन आउट', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'स्वागत', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hi/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'प्रलेखन', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hr/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globalno pretraživanje', 7 | 'placeholder' => 'Pretraži', 8 | ], 9 | 10 | 'no_results_message' => 'Nema pronađenih rezultata pretraživanja.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hr/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Nadzorna ploča', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hr/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Spremi promjene', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Spremljeno', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hr/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hr/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Pregled :label', 6 | 7 | 'breadcrumb' => 'Pregledaj', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Pregled', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hr/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Odjava', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Dobrodošli', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hr/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentacija', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hu/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globális keresés', 7 | 'placeholder' => 'Keresés', 8 | ], 9 | 10 | 'no_results_message' => 'Nincs találat', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hu/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Változtatások mentése', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Mentve', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hu/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hu/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label megtekintése', 6 | 7 | 'breadcrumb' => 'Megtekintés', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Megtekintés', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hu/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Kijelentkezés', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Üdvözlünk', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hu/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentáció', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hy/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Գլոբալ որոնում', 7 | 'placeholder' => 'Որոնել', 8 | ], 9 | 10 | 'no_results_message' => 'Որոնման արդյունքներ չեն գտնվել։', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hy/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Վահանակ', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hy/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Ցանկ', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hy/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Դիտել :label', 6 | 7 | 'breadcrumb' => 'Դիտել', 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hy/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Դուրս գալ', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Բարի գալուստ', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/hy/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Փաստաթղթեր', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/id/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Pencarian global', 7 | 'placeholder' => 'Cari', 8 | ], 9 | 10 | 'no_results_message' => 'Pencarian tidak ditemukan.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/id/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dasbor', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filter', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filter', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Terapkan', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/id/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Simpan', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Disimpan', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/id/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Daftar', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/id/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Lihat :label', 6 | 7 | 'breadcrumb' => 'Lihat', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Lihat', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/id/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Keluar', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Selamat Datang', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/id/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentasi', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/it/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Ricerca globale', 7 | 'placeholder' => 'Ricerca', 8 | ], 9 | 10 | 'no_results_message' => 'Nessun risultato trovato per la ricerca.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/it/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashboard', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filtro', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filtro', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Applica', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/it/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Salva modifiche', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Salvato', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/it/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/it/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Guarda :label', 6 | 7 | 'breadcrumb' => 'Guarda', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Guarda', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/it/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Disconnetti', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Benvenuto', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/it/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentazione', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ja/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'グローバル検索', 7 | 'placeholder' => '検索', 8 | ], 9 | 10 | 'no_results_message' => '検索結果が見つかりませんでした。', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ja/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'ダッシュボード', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'フィルター', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'フィルター', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => '適用', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ja/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => '変更を保存', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => '保存しました', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ja/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '一覧', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ja/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label 詳細', 6 | 7 | 'breadcrumb' => '詳細', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => '詳細', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ja/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'ログアウト', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'ようこそ', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ja/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'ドキュメント', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/km/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'ការស្វែងរកក្នុងប្រព័ន្ធទូទៅ', 7 | 'placeholder' => 'ស្វែងរក', 8 | ], 9 | 10 | 'no_results_message' => 'រកមិនឃើញលទ្ធផលនៃការស្វែងរកទេ។', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/km/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'រក្សាទុកការផ្លាស់ប្តូរ', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'បានរក្សាទុក', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/km/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'បញ្ជី', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/km/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'ស្លាក​សញ្ញា :label', 6 | 7 | 'breadcrumb' => 'ស្លាក​សញ្ញា', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'ស្លាក​សញ្ញា', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/km/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'ចាកចេញពីកម្មវិធីប្រព័ន្ធ', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'សូមស្វាគមន៍', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/km/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'ចូលមើលឯកសារ', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ko/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => '전체 검색', 7 | 'placeholder' => '검색', 8 | ], 9 | 10 | 'no_results_message' => '검색 결과가 없습니다.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ko/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | '대시보드', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => '필터', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => '필터', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => '적용', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ko/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => '변경 사항 저장', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => '저장 완료', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ko/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '목록', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ko/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label 보기', 6 | 7 | 'breadcrumb' => '보기', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => '보기', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ko/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => '로그아웃', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => '어서오세요', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ko/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => '도큐먼트', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ku/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'گەڕانی گشتی', 7 | 'placeholder' => 'گەڕان', 8 | ], 9 | 10 | 'no_results_message' => 'هیچ ئەنجامێک بۆ گەڕانەکەت نەدۆزرایەوە.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ku/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'داشبۆرد', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ku/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'نوێکردنەوە', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'نوێکرایەوە', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ku/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'تۆمارەکان', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ku/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'بینینی :label', 6 | 7 | 'breadcrumb' => 'بینین', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'بینین', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ku/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'چوونەدەرەوە', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'بەخێربێیت', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ku/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentation', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/lt/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globali paieška', 7 | 'placeholder' => 'Paieška', 8 | ], 9 | 10 | 'no_results_message' => 'Paieškos rezultatų nėra.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/lt/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Pagrindinis puslapis', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/lt/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Išsaugoti', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Išsaugota', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/lt/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Sąrašas', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/lt/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Peržiūrėti :label', 6 | 7 | 'breadcrumb' => 'Peržiūrėti', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Peržiūrėti', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/lt/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Atsijungti', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Sveiki atvykę', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/lt/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentacija', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/lv/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Vispārēja meklēšana', 7 | 'placeholder' => 'Meklēt', 8 | ], 9 | 10 | 'no_results_message' => 'Meklēšanas rezultāti nav atrasti.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/lv/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Panelis', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/lv/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Saglabāt izmaiņas', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Izmaiņas saglabātas', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/lv/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Saraksts', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/lv/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Skatīt :label', 6 | 7 | 'breadcrumb' => 'Skatīt', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Skatīt', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/lv/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Iziet', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Laipni lūdzam', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/lv/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentācija', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ms/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Carian global', 7 | 'placeholder' => 'Carian', 8 | ], 9 | 10 | 'no_results_message' => 'Tiada hasil carian ditemui.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ms/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Simpan perubahan', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Disimpan', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ms/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Senarai', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ms/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Lihat :label', 6 | 7 | 'breadcrumb' => 'Lihat', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Lihat', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ms/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Log keluar', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Selamat datang', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ms/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentasi', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/my/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'ကမ္ဘာလုံးဆိုင်ရာ ရှာဖွေမှု', 7 | 'placeholder' => 'ရှာမယ်', 8 | ], 9 | 10 | 'no_results_message' => 'ရှာဖွေမှုရလဒ်များ မတွေ့ပါ', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/my/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'ပင်မစာမျက်နှာ', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/my/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'စာရင်း', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/my/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'စစ်ဆေးပါ', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/my/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'ထွက်မည်', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'ကြိုဆိုပါတယ်', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/my/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'အညွန်း', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/nl/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globaal zoeken', 7 | 'placeholder' => 'Zoeken', 8 | ], 9 | 10 | 'no_results_message' => 'Geen resultaten gevonden.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/nl/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Wijzigingen opslaan', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Opgeslagen', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/nl/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lijst', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/nl/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':Label bekijken', 6 | 7 | 'breadcrumb' => 'Bekijken', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Bekijken', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/nl/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Uitloggen', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Welkom', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/nl/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentatie', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/no/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Globalt søk', 7 | 'placeholder' => 'Søk', 8 | ], 9 | 10 | 'no_results_message' => 'Ingen resultater.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/no/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashbord', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/no/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Lagre endringer', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Lagret', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/no/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/no/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Vis :label', 6 | 7 | 'breadcrumb' => 'Vis', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Vis', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/no/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Logg ut', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Velkommen', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/no/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentasjon', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/np/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'सम्पूर्ण खोज', 7 | 'placeholder' => 'खोज', 8 | ], 9 | 10 | 'no_results_message' => 'कुनै खोज परिणाम फेला परेन।', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/np/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'ड्यासबोर्ड', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/np/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'परिवर्तनहरू सुरक्षित गर्नुहोस', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'सुरक्षित गरियो', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/np/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'सूची', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/np/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label हेर्नुहोस्', 6 | 7 | 'breadcrumb' => 'हेर्नुहोस्', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'हेर्नुहोस्', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/np/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'साइन आउट गर्नुहोस्', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'स्वागतम्', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/np/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'कागजात', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pl/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Wyszukiwanie globalne', 7 | 'placeholder' => 'Szukaj', 8 | ], 9 | 10 | 'no_results_message' => 'Nie znaleziono wyników.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pl/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Panel', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pl/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Zapisz zmiany', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Zapisano', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pl/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pl/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Podgląd :label', 6 | 7 | 'breadcrumb' => 'Podgląd', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Podgląd', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pl/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Wyloguj się', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Witaj', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pl/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentacja', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pt_BR/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Pesquisa global', 7 | 'placeholder' => 'Pesquisar', 8 | ], 9 | 10 | 'no_results_message' => 'Nenhum resultado encontrado.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pt_BR/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Salvar alterações', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Salvo', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pt_BR/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listar', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pt_BR/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Visualizar :label', 6 | 7 | 'breadcrumb' => 'Visualizar', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Visualizar', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pt_BR/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Logout', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Bem-vindo', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pt_BR/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentação', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pt_PT/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Pesquisa global', 7 | 'placeholder' => 'Pesquisar', 8 | ], 9 | 10 | 'no_results_message' => 'Nenhum resultado encontrado.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pt_PT/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Guardar alterações', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Guardado', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pt_PT/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listagem', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pt_PT/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Visualizar :label', 6 | 7 | 'breadcrumb' => 'Visualizar', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Visualizar', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pt_PT/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Terminar Sessão', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Bem-vindo', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/pt_PT/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentação', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ro/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Căutare globală', 7 | 'placeholder' => 'Căutare', 8 | ], 9 | 10 | 'no_results_message' => 'Nu s-au găsit rezultate', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ro/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Salvează modificările', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Salvat cu succes', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ro/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listare', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ro/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Vizualizare :label', 6 | 7 | 'breadcrumb' => 'Vizualizare', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Vizualizare', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ro/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Deconectare', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Bun venit', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ro/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentație', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ru/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Глобальный поиск', 7 | 'placeholder' => 'Поиск', 8 | ], 9 | 10 | 'no_results_message' => 'Ничего не найдено.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ru/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Инфопанель', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ru/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Сохранить изменения', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Сохранено', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ru/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Список', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ru/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Просмотр :label', 6 | 7 | 'breadcrumb' => 'Просмотр', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Просмотр', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ru/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Выход', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Добро пожаловать', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/ru/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Документация', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sk/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Vyhľadávanie', 7 | 'placeholder' => 'Hľadať', 8 | ], 9 | 10 | 'no_results_message' => 'Nenašli sa žiadne výsledky.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sk/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Nástenka', 6 | 7 | 'actions' => [ 8 | 9 | 'filter' => [ 10 | 11 | 'label' => 'Filtre', 12 | 13 | 'modal' => [ 14 | 15 | 'heading' => 'Filtre', 16 | 17 | 'actions' => [ 18 | 19 | 'apply' => [ 20 | 21 | 'label' => 'Použiť', 22 | 23 | ], 24 | 25 | ], 26 | 27 | ], 28 | 29 | ], 30 | 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sk/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Uložiť zmeny', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Uložené', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sk/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Prehľad', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sk/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Zobraziť :label', 6 | 7 | 'breadcrumb' => 'Detail', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Zobraziť', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sk/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Odhlásiť sa', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Vitajte', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sk/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentácia', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sq/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Kërkim global', 7 | 'placeholder' => 'Kërko', 8 | ], 9 | 10 | 'no_results_message' => 'Nuk u gjet asnjë result.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sq/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Faqja Kryesore', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sq/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Ruaj ndryshimet', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Ruaj', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sq/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listo', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sq/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Pamje :label', 6 | 7 | 'breadcrumb' => 'Pamje', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Pamje', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sq/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Dil', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Mirë se vini', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sq/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Documentation', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sv/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Global sökning', 7 | 'placeholder' => 'Sök', 8 | ], 9 | 10 | 'no_results_message' => 'Inga sökresultat.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sv/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Spara ändringar', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Sparades', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sv/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Lista', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sv/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Visa :label', 6 | 7 | 'breadcrumb' => 'Visa', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Visa', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sv/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Logga ut', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Välkommen', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sv/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokumentation', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sw/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Tafuta kote', 7 | 'placeholder' => 'Tafuta', 8 | ], 9 | 10 | 'no_results_message' => 'Hakuna matokeo ya utafutaji yaliyopatikana.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sw/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Dashibodi', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sw/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Listi', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sw/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Angalia :label', 6 | 7 | 'breadcrumb' => 'Angalia', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Angalia', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sw/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Toka', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Karibu', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/sw/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Nyaraka', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/th/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'การค้นหาทั่วไป', 7 | 'placeholder' => 'ค้นหา', 8 | ], 9 | 10 | 'no_results_message' => 'ไม่มีผลลัพธ์', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/th/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'บันทึกการเปลี่ยนแปลง', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'บันทึกแล้ว', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/th/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'รายการ', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/th/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'ดู :label', 6 | 7 | 'breadcrumb' => 'ดู', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'ดู', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/th/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'ออกจากระบบ', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'ยินดีต้อนรับ', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/th/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'เอกสารประกอบ', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/tr/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Genel arama', 7 | 'placeholder' => 'Ara', 8 | ], 9 | 10 | 'no_results_message' => 'Sonuç bulunamadı.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/tr/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Genel Bakış', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/tr/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Değişiklikleri kaydet', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Kaydedildi', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/tr/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Liste', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/tr/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label görüntüle', 6 | 7 | 'breadcrumb' => 'Görüntüle', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Görüntüle', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/tr/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Oturumu kapat', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Hoş geldin', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/tr/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Dokümantasyon', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/uk/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Глобальний пошук', 7 | 'placeholder' => 'Пошук', 8 | ], 9 | 10 | 'no_results_message' => 'Не знайдено жодних результатів пошуку.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/uk/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | 'Інфопанель', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/uk/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Зберегти зміни', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Збережено', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/uk/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Перегляд', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/uk/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Перегляд :label', 6 | 7 | 'breadcrumb' => 'Перегляд', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Перегляд', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/uk/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Вийти', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Вітаємо', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/uk/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Документація', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/uz/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Global qidiruv', 7 | 'placeholder' => 'Qidirish', 8 | ], 9 | 10 | 'no_results_message' => 'Hech narsa topilmadi.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/uz/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'O\'zgarishlarni saqlash', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Saqlandi', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/uz/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Ro\'yxat', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/uz/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':labelni ko\'rish', 6 | 7 | 'breadcrumb' => 'Ko\'rish', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Ko\'rish', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/uz/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Chiqish', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Hush kelibsiz', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/uz/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Hujjat', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/vi/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => 'Tìm kiếm toàn hệ thống', 7 | 'placeholder' => 'Tìm kiếm', 8 | ], 9 | 10 | 'no_results_message' => 'Không tìm thấy kết quả nào.', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/vi/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => 'Lưu thay đổi', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => 'Đã lưu', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/vi/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | 'Danh sách', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/vi/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | 'Xem :label', 6 | 7 | 'breadcrumb' => 'Xem', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => 'Xem', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/vi/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => 'Đăng xuất', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => 'Xin chào', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/vi/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => 'Tài liệu', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/zh_CN/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => '全局搜索', 7 | 'placeholder' => '搜索', 8 | ], 9 | 10 | 'no_results_message' => '未找到搜索结果。', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/zh_CN/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | '仪表板', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/zh_CN/pages/tenancy/edit-tenant-profile.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'actions' => [ 8 | 9 | 'save' => [ 10 | 'label' => '保存', 11 | ], 12 | 13 | ], 14 | 15 | ], 16 | 17 | 'notifications' => [ 18 | 19 | 'saved' => [ 20 | 'title' => '已保存', 21 | ], 22 | 23 | ], 24 | 25 | ]; 26 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/zh_CN/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '列表', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/zh_CN/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | ':label 详情', 6 | 7 | 'breadcrumb' => '详情', 8 | 9 | 'content' => [ 10 | 11 | 'tab' => [ 12 | 'label' => '详情', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/zh_CN/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => '退出登录', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => '欢迎', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/zh_CN/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => '文档', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/zh_TW/global-search.php: -------------------------------------------------------------------------------- 1 | [ 6 | 'label' => '全域搜尋', 7 | 'placeholder' => '搜尋', 8 | ], 9 | 10 | 'no_results_message' => '無搜尋結果。', 11 | 12 | ]; 13 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/zh_TW/pages/dashboard.php: -------------------------------------------------------------------------------- 1 | '主控台', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/zh_TW/resources/pages/list-records.php: -------------------------------------------------------------------------------- 1 | '清單', 6 | 7 | ]; 8 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/zh_TW/resources/pages/view-record.php: -------------------------------------------------------------------------------- 1 | '檢視 :label', 6 | 7 | 'breadcrumb' => '檢視', 8 | 9 | ]; 10 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/zh_TW/widgets/account-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'logout' => [ 8 | 'label' => '登出', 9 | ], 10 | 11 | ], 12 | 13 | 'welcome' => '歡迎', 14 | 15 | ]; 16 | -------------------------------------------------------------------------------- /resources/lang/vendor/filament-panels/zh_TW/widgets/filament-info-widget.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'open_documentation' => [ 8 | 'label' => '說明文件', 9 | ], 10 | 11 | 'open_github' => [ 12 | 'label' => 'GitHub', 13 | ], 14 | 15 | ], 16 | 17 | ]; 18 | -------------------------------------------------------------------------------- /resources/views/customFooter.blade.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /resources/views/filament/notifications/database-notifications-trigger.blade.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /resources/views/filament/pages/account-settings-page.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/views/filament/pages/auth/login.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/views/filament/pages/auth/register.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/views/filament/pages/footer-settings.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/views/filament/pages/master-data.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/views/filament/pages/my-profile.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/views/filament/pages/profile-page.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/views/filament/pages/user-resource/list-user-activities.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-breezy/components/clipboard-link.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'data' 3 | ]) 4 | 7 | @svg('heroicon-s-clipboard-document', 'w-4 mr-2') 8 | {{ __('filament-breezy::default.clipboard.link') }} 9 | 10 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-breezy/filament/pages/my-profile.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | @foreach ($this->getRegisteredMyProfileComponents() as $component) 4 | @unless(is_null($component)) 5 | @livewire($component) 6 | @endunless 7 | @endforeach 8 |
9 |
10 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-breezy/filament/pages/two-factor.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | {{ $this->form }} 4 | 5 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /resources/views/vendor/filament-captcha/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumicode/erp/21ed4e4aed7103baa516b0b9164f267c11ec49ae/resources/views/vendor/filament-captcha/.gitkeep -------------------------------------------------------------------------------- /resources/views/vendor/filament-language-switch/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bumicode/erp/21ed4e4aed7103baa516b0b9164f267c11ec49ae/resources/views/vendor/filament-language-switch/.gitkeep -------------------------------------------------------------------------------- /resources/views/vendor/filament-language-switch/components/flag.blade.php: -------------------------------------------------------------------------------- 1 | @props([ 2 | 'src', 3 | 'alt' => '', 4 | 'circular' => false, 5 | 'switch' => false, 6 | ]) 7 | class([ 11 | 'object-cover object-center', 12 | 'rounded-full' => $circular, 13 | 'rounded-lg' => ! $circular && ! $switch, 14 | 'rounded-md' => ! $circular && $switch, 15 | ]) 16 | }} 17 | /> -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 18 | 19 | $response->assertStatus(302); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import laravel, { refreshPaths } from 'laravel-vite-plugin' 3 | 4 | export default defineConfig({ 5 | plugins: [ 6 | laravel({ 7 | input: ['resources/css/app.css', 'resources/js/app.js'], 8 | refresh: [ 9 | ...refreshPaths, 10 | 'app/Livewire/**', 11 | ], 12 | }), 13 | ], 14 | }) 15 | --------------------------------------------------------------------------------