From 074e07a04ac0651f96af60ae99cf0094a29389be Mon Sep 17 00:00:00 2001 From: Nurmuhammet Allanov Date: Sun, 2 Nov 2025 22:52:41 +0500 Subject: [PATCH] wip --- .../CardOrders/Schemas/CardOrderForm.php | 2 +- .../CardPinOrders/CardPinOrderResource.php | 68 +++++++ .../Pages/CreateCardPinOrder.php | 11 ++ .../CardPinOrders/Pages/EditCardPinOrder.php | 19 ++ .../CardPinOrders/Pages/ListCardPinOrders.php | 19 ++ .../Schemas/CardPinOrderForm.php | 181 ++++++++++++++++++ .../Tables/CardPinOrdersTable.php | 68 +++++++ .../LoanOrders/Tables/LoanOrdersTable.php | 13 +- app/Providers/Filament/WorkPanelProvider.php | 1 + lang/tk.json | 5 +- .../filament-edit-profile/ar/default.php | 52 ----- .../filament-edit-profile/cs/default.php | 52 ----- .../filament-edit-profile/de/default.php | 52 ----- .../filament-edit-profile/es/default.php | 52 ----- .../filament-edit-profile/fa/default.php | 52 ----- .../filament-edit-profile/fr/default.php | 52 ----- .../filament-edit-profile/he/default.php | 52 ----- .../filament-edit-profile/hu/default.php | 52 ----- .../filament-edit-profile/id/default.php | 52 ----- .../filament-edit-profile/it/default.php | 52 ----- .../filament-edit-profile/ja/default.php | 52 ----- .../filament-edit-profile/nl/default.php | 52 ----- .../filament-edit-profile/pl/default.php | 52 ----- .../filament-edit-profile/pt_BR/default.php | 52 ----- .../filament-edit-profile/pt_PT/default.php | 52 ----- .../filament-edit-profile/ru/default.php | 52 +++++ .../filament-edit-profile/sk/default.php | 52 ----- .../filament-edit-profile/tk/default.php | 52 +++++ .../filament-edit-profile/tr/default.php | 52 ----- 29 files changed, 484 insertions(+), 891 deletions(-) create mode 100644 app/Filament/Clusters/Cards/Resources/CardPinOrders/CardPinOrderResource.php create mode 100644 app/Filament/Clusters/Cards/Resources/CardPinOrders/Pages/CreateCardPinOrder.php create mode 100644 app/Filament/Clusters/Cards/Resources/CardPinOrders/Pages/EditCardPinOrder.php create mode 100644 app/Filament/Clusters/Cards/Resources/CardPinOrders/Pages/ListCardPinOrders.php create mode 100644 app/Filament/Clusters/Cards/Resources/CardPinOrders/Schemas/CardPinOrderForm.php create mode 100644 app/Filament/Clusters/Cards/Resources/CardPinOrders/Tables/CardPinOrdersTable.php delete mode 100644 lang/vendor/filament-edit-profile/ar/default.php delete mode 100644 lang/vendor/filament-edit-profile/cs/default.php delete mode 100644 lang/vendor/filament-edit-profile/de/default.php delete mode 100644 lang/vendor/filament-edit-profile/es/default.php delete mode 100644 lang/vendor/filament-edit-profile/fa/default.php delete mode 100644 lang/vendor/filament-edit-profile/fr/default.php delete mode 100644 lang/vendor/filament-edit-profile/he/default.php delete mode 100644 lang/vendor/filament-edit-profile/hu/default.php delete mode 100644 lang/vendor/filament-edit-profile/id/default.php delete mode 100644 lang/vendor/filament-edit-profile/it/default.php delete mode 100644 lang/vendor/filament-edit-profile/ja/default.php delete mode 100644 lang/vendor/filament-edit-profile/nl/default.php delete mode 100644 lang/vendor/filament-edit-profile/pl/default.php delete mode 100644 lang/vendor/filament-edit-profile/pt_BR/default.php delete mode 100644 lang/vendor/filament-edit-profile/pt_PT/default.php create mode 100644 lang/vendor/filament-edit-profile/ru/default.php delete mode 100644 lang/vendor/filament-edit-profile/sk/default.php create mode 100644 lang/vendor/filament-edit-profile/tk/default.php delete mode 100644 lang/vendor/filament-edit-profile/tr/default.php diff --git a/app/Filament/Clusters/Cards/CardOrders/Schemas/CardOrderForm.php b/app/Filament/Clusters/Cards/CardOrders/Schemas/CardOrderForm.php index 5c7965d..90bb95a 100644 --- a/app/Filament/Clusters/Cards/CardOrders/Schemas/CardOrderForm.php +++ b/app/Filament/Clusters/Cards/CardOrders/Schemas/CardOrderForm.php @@ -32,7 +32,7 @@ class CardOrderForm ->components([ Hidden::make('user_id')->default(Auth::id()), - Section::make(__('New loan order')) + Section::make(__('New card order')) ->columnSpan(4) ->columns(4) ->components([ diff --git a/app/Filament/Clusters/Cards/Resources/CardPinOrders/CardPinOrderResource.php b/app/Filament/Clusters/Cards/Resources/CardPinOrders/CardPinOrderResource.php new file mode 100644 index 0000000..94eff9d --- /dev/null +++ b/app/Filament/Clusters/Cards/Resources/CardPinOrders/CardPinOrderResource.php @@ -0,0 +1,68 @@ + ListCardPinOrders::route('/'), + 'create' => CreateCardPinOrder::route('/create'), + 'edit' => EditCardPinOrder::route('/{record}/edit'), + ]; + } +} diff --git a/app/Filament/Clusters/Cards/Resources/CardPinOrders/Pages/CreateCardPinOrder.php b/app/Filament/Clusters/Cards/Resources/CardPinOrders/Pages/CreateCardPinOrder.php new file mode 100644 index 0000000..f0eb684 --- /dev/null +++ b/app/Filament/Clusters/Cards/Resources/CardPinOrders/Pages/CreateCardPinOrder.php @@ -0,0 +1,11 @@ +components([ + Hidden::make('user_id')->default(Auth::id()), + + Section::make(__('New loan order')) + ->columnSpanFull() + ->components([ + Select::make('status') + ->label(__('Status')) + ->options(OrderStatusRepository::statusValues()) + ->default(OrderStatusRepository::defaultStatus()) + ->native(false) + ->required() + ->columnSpanFull(), + + RichEditor::make('notes') + ->label(__('Bellik')) + ->columnSpanFull(), + ]), + + Section::make(__('New loan order')) + ->columnSpanFull() + ->columns(6) + ->components([ + Select::make('card_type_id') + ->relationship('cardType', 'name', fn (Builder $query) => $query->orderByTranslation('name')) + ->label(__('Card type')) + ->native(false) + ->columnSpan(3) + ->required(), + + TextInput::make('card_number') + ->label(__('Card number')) + ->mask('9999 9999 9999 9999') + ->maxLength(255) + ->columnSpan(3) + ->required(), + + Select::make('region') + ->label(__('Region')) + ->options(RegionRepository::values()) + ->live() + ->afterStateUpdated(fn (callable $set) => $set('branch_id', null)) + ->columnSpan(3) + ->required(), + + Select::make('branch_id') + ->label(__('Branch')) + ->relationship('branch', 'name', function ($query, callable $get) { + $query->orderByTranslation('name'); + + $region = $get('region'); + if ($region) { + $query->where('region', $region); + } + }) + ->columnSpan(3) + ->required(), + + TextInput::make('customer_name') + ->label(__('Name')) + ->columnSpan(2) + ->default(user()->first_name) + ->required() + ->maxLength(255) + ->autocomplete(Str::random(10)) + ->columnSpan(2), + + TextInput::make('customer_surname') + ->label(__('Surname')) + ->columnSpan(2) + ->default(user()->last_name) + ->required() + ->maxLength(255) + ->columnSpan(2), + + TextInput::make('customer_patronic_name') + ->label(__('Patronic name')) + ->columnSpan(2) + ->default(user()->getOption('patronic_name')) + ->maxLength(255) + ->columnSpan(2), + + DatePicker::make('born_at') + ->displayFormat('d.m.Y') + ->label(__('Birth date')) + ->native(false) + ->columnSpan(2) + ->default(user()->getOption('born_at')) + ->required() + ->beforeOrEqual('today') + ->columnSpan(2), + + FusedGroup::make([ + Select::make('passport_serie') + ->label(__('Passport serie')) + ->options(TurkmenPassportRepository::values()) + ->native(false) + ->required() + ->default(user()->getOption('passport_serie')) + ->columnSpan(1), + + TextInput::make('passport_id') + ->label(__('Passport number')) + ->required() + ->columnSpan(1) + ->default(user()->getOption('passport_id')) + ->mask('999999'), + ]) + ->columnSpan(2) + ->label(__('Passport serie and number')) + ->columns(2), + + TextInput::make('phone') + ->label(__('Phone')) + ->required() + ->mask('99 99 99 99') + ->prefix('+993') + ->default(user()->phone) + ->rules([ + new PhoneNumberVerificationRule, + ]) + ->columnSpan(2), + + FileUpload::make('passport_one') + ->label(__('Passport (page 1)')) + ->image() + ->maxSize(4096) + ->required() + ->columnSpan(3), + + FileUpload::make('passport_two') + ->label(__('Passport (page 2-3)')) + ->image() + ->maxSize(4096) + ->required() + ->columnSpan(3), + + FileUpload::make('passport_three') + ->label(__('Passport (page 8-9)')) + ->image() + ->maxSize(4096) + ->required() + ->columnSpan(3), + + FileUpload::make('passport_four') + ->label(__('Passport (page 32)')) + ->image() + ->maxSize(4096) + ->required() + ->columnSpan(3), + ]), + + ]); + } +} diff --git a/app/Filament/Clusters/Cards/Resources/CardPinOrders/Tables/CardPinOrdersTable.php b/app/Filament/Clusters/Cards/Resources/CardPinOrders/Tables/CardPinOrdersTable.php new file mode 100644 index 0000000..286b3ed --- /dev/null +++ b/app/Filament/Clusters/Cards/Resources/CardPinOrders/Tables/CardPinOrdersTable.php @@ -0,0 +1,68 @@ +columns([ + TextColumn::make('id') + ->label('ID'), + + TextColumn::make('cardType.name') + ->label(__('Card type')) + ->searchable(), + + TextColumn::make('created_at') + ->label(__('Created At')) + ->dateTime() + ->sortable(), + + TextColumn::make('region') + ->label(__('Region')) + ->formatStateUsing(fn (string $state): string => RegionRepository::label($state)) + ->searchable(), + + TextColumn::make('branch.name') + ->label(__('Branch')) + ->searchable(), + + TextColumn::make('customer_name') + ->label(__('Name')) + ->searchable(), + + TextColumn::make('customer_surname') + ->label(__('Surname')) + ->searchable(), + + TextColumn::make('phone') + ->label(__('Phone')) + ->searchable(), + + TextColumn::make('status') + ->formatStateUsing(fn (string $state) => OrderStatusRepository::statusFormatted($state)) + ->searchable(), + ]) + ->filters([ + // + ]) + ->recordActions([ + EditAction::make(), + ]) + ->toolbarActions([ + BulkActionGroup::make([ + DeleteBulkAction::make(), + ]), + ]); + } +} diff --git a/app/Filament/Clusters/Loans/LoanOrders/Tables/LoanOrdersTable.php b/app/Filament/Clusters/Loans/LoanOrders/Tables/LoanOrdersTable.php index 2c453f5..53fddcc 100644 --- a/app/Filament/Clusters/Loans/LoanOrders/Tables/LoanOrdersTable.php +++ b/app/Filament/Clusters/Loans/LoanOrders/Tables/LoanOrdersTable.php @@ -38,35 +38,38 @@ class LoanOrdersTable ->searchable(), TextColumn::make('customer_name') - ->label('Имя клиента') + ->label(__('Name')) ->sortable() ->searchable(), TextColumn::make('customer_surname') - ->label('Фамилия клиента') + ->label(__('Surname')) ->sortable() ->searchable(), TextColumn::make('phone') - ->label('Телефон') + ->label(__('Phone')) ->searchable(), TextColumn::make('status') - ->label('Статус') + ->label(__('Status')) ->sortable() ->searchable(), TextColumn::make('created_at') - ->label('Дата создания') + ->label(__('Created At')) ->dateTime() ->sortable() ->toggleable(), TextColumn::make('updated_at') ->dateTime() + ->label(__('Updated At')) ->sortable() ->toggleable(isToggledHiddenByDefault: true), + TextColumn::make('deleted_at') + ->label(__('Deleted At')) ->dateTime() ->sortable() ->toggleable(isToggledHiddenByDefault: true), diff --git a/app/Providers/Filament/WorkPanelProvider.php b/app/Providers/Filament/WorkPanelProvider.php index f0c5a7f..1e3844e 100644 --- a/app/Providers/Filament/WorkPanelProvider.php +++ b/app/Providers/Filament/WorkPanelProvider.php @@ -87,6 +87,7 @@ class WorkPanelProvider extends PanelProvider ]) ->spa() ->databaseTransactions() + ->breadcrumbs(false) ->colors([ 'danger' => Color::Rose, 'gray' => Color::Gray, diff --git a/lang/tk.json b/lang/tk.json index 9cc287e..eed45ac 100644 --- a/lang/tk.json +++ b/lang/tk.json @@ -670,5 +670,8 @@ "Loan": "Karz", "Please update your profile": "Profiliňizi doldurmagyňyzy haýyş edýäris", "Pay": "Töle", - "Show remaining loan": "Karz galyndysyny gör" + "Show remaining loan": "Karz galyndysyny gör", + "Forgot card pin": "Pin belgini unutdum", + "Pin order": "Pin belgi", + "Pin orders": "Pin belgiler" } diff --git a/lang/vendor/filament-edit-profile/ar/default.php b/lang/vendor/filament-edit-profile/ar/default.php deleted file mode 100644 index 622b35c..0000000 --- a/lang/vendor/filament-edit-profile/ar/default.php +++ /dev/null @@ -1,52 +0,0 @@ - 'تحرير الملف الشخصي', - 'profile_information' => 'معلومات الملف الشخصي', - 'profile_information_description' => 'قم بتحديث معلومات الملف الشخصي لحسابك وعنوان بريدك الإلكتروني.', - 'name' => 'الاسم', - 'email' => 'البريد الإلكتروني', - 'avatar' => 'صورة', - 'password' => 'كلمة المرور', - 'locale' => 'اللغة', - 'theme_color' => 'لون السمة', - 'update_password' => 'تحديث كلمة المرور', - 'current_password' => 'كلمة المرور الحالية', - 'new_password' => 'كلمة المرور الجديدة', - 'confirm_password' => 'تأكيد كلمة المرور', - 'ensure_your_password' => 'تأكد من أن حسابك يستخدم كلمة مرور طويلة وعشوائية ليظل آمنًا.', - 'delete_account' => 'حذف الحساب', - 'delete_account_description' => 'احذف حسابك نهائيًا.', - 'yes_delete_it' => 'نعم، احذفه!', - 'are_you_sure' => 'هل أنت متأكد من رغبتك في حذف حسابك؟ هذا لا يمكن التراجع عنها!', - 'incorrect_password' => 'كلمة المرور التي أدخلتها غير صحيحة. حاول مرة اخرى.', - 'user_load_error' => 'يجب أن يكون كائن المستخدم المصادق عليه نموذج Eloquent للسماح لصفحة الملف الشخصي بتحديثه.', - 'delete_account_card_description' => 'بمجرد حذف حسابك، سيتم مسح جميع مواردك وبياناتك نهائيًا. قبل حذف حسابك، يرجى تنزيل أي بيانات أو معلومات ترغب في الاحتفاظ بها.', - 'saved_successously' => 'تم حفظ معلومات ملفك الشخصي بنجاح.', - 'custom_fields' => 'حقول مخصصة', - 'custom_fields_description' => 'قم بتحديث حقولك المخصصة.', - 'save' => 'حفظ', - 'token_name' => 'اسم الرمز المميز', - 'token_abilities' => 'القدرات', - 'token_created_at' => 'تم الإنشاء في', - 'token_expires_at' => 'تنتهي صلاحيته عند', - 'token_section_title' => 'رموز واجهة برمجة التطبيقات', - 'token_section_description' => 'إدارة الرموز المميزة لواجهة برمجة التطبيقات التي تسمح لخدمات الجهات الخارجية بالوصول إلى هذا التطبيق نيابة عنك.', - 'token_action_label' => 'إنشاء رمز مميز', - 'token_modal_heading' => 'إنشاء', - 'token_create_notification' => 'تم إنشاء الرمز المميز بنجاح!', - 'token_helper_text' => 'يظهر رمزك المميز مرة واحدة فقط عند الإنشاء. إذا فقدت الرمز المميز الخاص بك، فسوف تحتاج إلى حذفه وإنشاء رمز جديد.', - 'token_modal_heading_2' => 'نسخ رمز الوصول الشخصي', - 'token_empty_state_heading' => 'إنشاء الرمز المميز الأول الخاص بك', - 'token_empty_state_description' => 'أنشئ رمز وصول شخصي للبدء.', - 'mfa_section_title' => 'المصادقة متعددة العوامل', - 'mfa_section_description' => 'إدارة إعدادات المصادقة متعددة العوامل لديك.', - 'browser_section_title' => 'جلسات المتصفح', - 'browser_section_description' => 'إدارة جلساتك النشطة وتسجيل الخروج منها على المتصفحات والأجهزة الأخرى.', - 'browser_sessions_content' => 'إذا لزم الأمر، يمكنك تسجيل الخروج من جميع جلسات المتصفح الأخرى عبر جميع أجهزتك. بعض جلساتك الأخيرة مذكورة أدناه؛ ومع ذلك، قد لا تكون هذه القائمة شاملة. إذا شعرت أن حسابك قد تم اختراقه، فيجب عليك أيضًا تحديث كلمة المرور الخاصة بك.', - 'browser_sessions_device' => 'هذا الجهاز', - 'browser_sessions_last_active' => 'آخر نشاط', - 'browser_sessions_log_out' => 'تسجيل الخروج من جلسات المتصفح الأخرى', - 'browser_sessions_confirm_pass' => 'يُرجى إدخال كلمة المرور الخاصة بك لتأكيد رغبتك في تسجيل الخروج من جلسات المتصفح الأخرى عبر جميع أجهزتك.', - 'browser_sessions_logout_success_notification' => 'تم تسجيل الخروج من جميع جلسات المتصفح الأخرى بنجاح.', -]; diff --git a/lang/vendor/filament-edit-profile/cs/default.php b/lang/vendor/filament-edit-profile/cs/default.php deleted file mode 100644 index a3f9b3d..0000000 --- a/lang/vendor/filament-edit-profile/cs/default.php +++ /dev/null @@ -1,52 +0,0 @@ - 'Upravit profil', - 'profile_information' => 'Základní informace', - 'profile_information_description' => 'Upravte informace o svém profilu a e-mailovou adresu.', - 'name' => 'Jméno', - 'email' => 'E-mail', - 'avatar' => 'Fotografie', - 'password' => 'Heslo', - 'locale' => 'Jazyk', - 'theme_color' => 'Barva motivu', - 'update_password' => 'Aktualizovat heslo', - 'current_password' => 'Současné heslo', - 'new_password' => 'Nové heslo', - 'confirm_password' => 'Potvrďte nové heslo', - 'ensure_your_password' => 'Zajistěte, aby váš účet používal dlouhé a náhodné heslo, a zůstaňte tak v bezpečí.', - 'delete_account' => 'Odstranit účet', - 'delete_account_description' => 'Trvale vymazat účet.', - 'yes_delete_it' => 'Ano, vymazat účet!', - 'are_you_sure' => 'Opravdu chcete svůj účet smazat? Tato akce je nevratná.', - 'incorrect_password' => 'Zadané heslo bylo nesprávné. Zkuste to prosím znovu.', - 'user_load_error' => 'Uživatele musí být modelem Eloquent, aby jej stránka profilu mohla aktualizovat.', - 'delete_account_card_description' => 'Po smazání účtu budou všechny vaše prostředky a data trvale vymazány. Před odstraněním účtu si stáhněte všechna data nebo informace, které si přejete zachovat.', - 'saved_successfully' => 'Informace o vašem profilu byly úspěšně uloženy.', - 'custom_fields' => 'Vlastní pole', - 'custom_fields_description' => 'Upravit vlastní pole.', - 'save' => 'Uložit', - 'token_name' => 'Název tokenu', - 'token_abilities' => 'Oprávnění', - 'token_created_at' => 'Vytvořen', - 'token_expires_at' => 'Vyprší', - 'token_section_title' => 'API Tokeny', - 'token_section_description' => 'Spravujte tokeny API, které umožňují službám třetích stran přistupovat k této aplikaci vašim jménem.', - 'token_action_label' => 'Vytvořit token', - 'token_modal_heading' => 'Vytvořit', - 'token_create_notification' => 'Token byl úspěšně vytvořen!', - 'token_helper_text' => 'Token je možné zobrazit pouze jednou. Pokud svůj token ztratíte, musíte jej smazat a vytvořit nový.', - 'token_modal_heading_2' => 'Zkopírovat osobní přístupový token', - 'token_empty_state_heading' => 'Vytvořit první token', - 'token_empty_state_description' => 'Vytvořte si osobní přístupový token a začněte.', - 'mfa_section_title' => 'Vícefaktorové ověřování', - 'mfa_section_description' => 'Spravujte nastavení vícefaktorového ověřování.', - 'browser_section_title' => 'Relace prohlížeče', - 'browser_section_description' => 'Spravujte a odhlašujte své aktivní relace v jiných prohlížečích a zařízeních.', - 'browser_sessions_content' => 'V případě potřeby se můžete odhlásit ze všech ostatních relací na všech svých zařízeních. Některé z vašich posledních relací jsou uvedeny níže; tento seznam však nemusí být úplný. Pokud máte pocit, že byl váš účet kompromitován, měli byste také aktualizovat své heslo.', - 'browser_sessions_device' => 'Toto zařízení', - 'browser_sessions_last_active' => 'Naposledy aktivní', - 'browser_sessions_log_out' => 'Odhlášení ostatních relací', - 'browser_sessions_confirm_pass' => 'Zadejte své heslo a potvrďte, že se chcete odhlásit z ostatních relací ve všech zařízeních.', - 'browser_sessions_logout_success_notification' => 'Všechny ostatní relace byly úspěšně odhlášeny.', -]; diff --git a/lang/vendor/filament-edit-profile/de/default.php b/lang/vendor/filament-edit-profile/de/default.php deleted file mode 100644 index 9e92d20..0000000 --- a/lang/vendor/filament-edit-profile/de/default.php +++ /dev/null @@ -1,52 +0,0 @@ - 'Profil bearbeiten', - 'profile_information' => 'Profilinformationen', - 'profile_information_description' => 'Aktualisieren Sie Ihre Kontoprofilinformationen und E-Mail-Adresse.', - 'name' => 'Name', - 'email' => 'E-Mail', - 'avatar' => 'Foto', - 'password' => 'Passwort', - 'locale' => 'Sprache', - 'theme_color' => 'Themenfarbe', - 'update_password' => 'Passwort aktualisieren', - 'current_password' => 'Aktuelles Passwort', - 'new_password' => 'Neues Passwort', - 'confirm_password' => 'Passwort bestätigen', - 'ensure_your_password' => 'Stellen Sie sicher, dass Ihr Konto ein langes, zufälliges Passwort verwendet, um sicher zu bleiben.', - 'delete_account' => 'Konto löschen', - 'delete_account_description' => 'Löschen Sie Ihr Konto dauerhaft.', - 'yes_delete_it' => 'Ja, löschen!', - 'are_you_sure' => 'Sind Sie sicher, dass Sie Ihr Konto löschen möchten? Dies kann nicht rückgängig gemacht werden!', - 'incorrect_password' => 'Das eingegebene Passwort ist falsch. Bitte versuchen Sie es erneut.', - 'user_load_error' => 'Das authentifizierte Benutzerobjekt muss ein Eloquent-Modell sein, um die Profilseite aktualisieren zu können.', - 'delete_account_card_description' => 'Sobald Ihr Konto gelöscht ist, werden alle Ihre Ressourcen und Daten dauerhaft gelöscht. Laden Sie vor dem Löschen Ihres Kontos alle Daten oder Informationen herunter, die Sie behalten möchten.', - 'saved_successfully' => 'Ihre Profilinformationen wurden erfolgreich gespeichert.', - 'custom_fields' => 'Benutzerdefinierte Felder', - 'custom_fields_description' => 'Aktualisieren Sie Ihre benutzerdefinierten Felder.', - 'save' => 'Speichern', - 'token_name' => 'Token-Name', - 'token_abilities' => 'Fähigkeiten', - 'token_created_at' => 'Erstellt am', - 'token_expires_at' => 'Läuft ab am', - 'token_section_title' => 'API-Tokens', - 'token_section_description' => 'Verwalten Sie API-Tokens, die Drittanbietern den Zugriff auf diese Anwendung in Ihrem Namen ermöglichen.', - 'token_action_label' => 'Token erstellen', - 'token_modal_heading' => 'Erstellen', - 'token_create_notification' => 'Token erfolgreich erstellt!', - 'token_helper_text' => 'Ihr Token wird nur einmal bei der Erstellung angezeigt. Wenn Sie Ihren Token verlieren, müssen Sie ihn löschen und einen neuen erstellen.', - 'token_modal_heading_2' => 'Persönlichen Zugriffstoken Kopieren', - 'token_empty_state_heading' => 'Erstellen Sie Ihren ersten Token', - 'token_empty_state_description' => 'Erstellen Sie einen persönlichen Zugriffstoken, um zu beginnen.', - 'mfa_section_title' => 'Mehrfaktor-Authentifizierung', - 'mfa_section_description' => 'Verwalten Sie Ihre Einstellungen für die Mehrfaktor-Authentifizierung.', - 'browser_section_title' => 'Browsersitzungen', - 'browser_section_description' => 'Verwalten und melden Sie sich von Ihren aktiven Sitzungen auf anderen Browsern und Geräten ab.', - 'browser_sessions_content' => 'Bei Bedarf können Sie sich von all Ihren anderen Browsersitzungen auf all Ihren Geräten abmelden. Einige Ihrer letzten Sitzungen sind unten aufgeführt; diese Liste ist jedoch möglicherweise nicht vollständig. Wenn Sie glauben, dass Ihr Konto kompromittiert wurde, sollten Sie auch Ihr Passwort aktualisieren.', - 'browser_sessions_device' => 'Dieses Gerät', - 'browser_sessions_last_active' => 'Zuletzt aktiv', - 'browser_sessions_log_out' => 'Von anderen Browsersitzungen abmelden', - 'browser_sessions_confirm_pass' => 'Bitte geben Sie Ihr Passwort ein, um zu bestätigen, dass Sie sich von Ihren anderen Browsersitzungen auf all Ihren Geräten abmelden möchten.', - 'browser_sessions_logout_success_notification' => 'Alle anderen Browsersitzungen wurden erfolgreich abgemeldet.', -]; diff --git a/lang/vendor/filament-edit-profile/es/default.php b/lang/vendor/filament-edit-profile/es/default.php deleted file mode 100644 index d6308e3..0000000 --- a/lang/vendor/filament-edit-profile/es/default.php +++ /dev/null @@ -1,52 +0,0 @@ - 'Editar perfil', - 'profile_information' => 'Información del perfil', - 'profile_information_description' => 'Actualiza la información del perfil de tu cuenta y tu dirección de correo electrónico', - 'name' => 'Nombre', - 'email' => 'Correo Electrónico', - 'avatar' => 'Foto', - 'password' => 'Contraseña', - 'locale' => 'Idioma', - 'theme_color' => 'Color del tema', - 'update_password' => 'Actualizar Contraseña', - 'current_password' => 'Contraseña actual', - 'new_password' => 'Nueva Contraseña', - 'confirm_password' => 'Confirmar Contraseña', - 'ensure_your_password' => 'Asegúrate de que tu cuenta utiliza una contraseña larga y aleatoria para estar seguro', - 'delete_account' => 'Eliminar cuenta', - 'delete_account_description' => 'Elimina permanentemente tu cuenta', - 'yes_delete_it' => '¡Sí, elimínala!', - 'are_you_sure' => '¿Estás seguro de que deseas eliminar tu cuenta? Esto no se puede deshacer', - 'incorrect_password' => 'La contraseña introducida es incorrecta. Por favor, inténtalo de nuevo', - 'user_load_error' => 'El objeto de usuario autenticado debe ser un modelo Eloquent para permitir que la página de perfil lo actualice', - 'delete_account_card_description' => 'Una vez eliminada tu cuenta, todos tus recursos y datos serán borrados permanentemente. Antes de borrar tu cuenta, por favor descarga cualquier dato o información que desees conservar.', - 'saved_successfully' => 'La información de tu perfil se ha guardado correctamente', - 'custom_fields' => 'Campos personalizados', - 'custom_fields_description' => 'Actualiza tus campos personalizados', - 'save' => 'Guardar', - 'token_name' => 'Nombre del Token', - 'token_abilities' => 'Habilidades', - 'token_created_at' => 'Creado en', - 'token_expires_at' => 'Caduca a las', - 'token_section_title' => 'Tokens de API', - 'token_section_description' => 'Administrar tokens de API que permiten a servicios de terceros acceder a esta aplicación en su nombre', - 'token_action_label' => 'Crear token', - 'token_modal_heading' => 'Crear', - 'token_create_notification' => 'Token creado con éxito', - 'token_helper_text' => 'Tu token sólo se muestra una vez al crearlo. Si pierdes tu token, tendrás que borrarlo y crear uno nuevo', - 'token_modal_heading_2' => 'Copiar clave de acceso personal', - 'token_empty_state_heading' => 'Crea tu primer token', - 'token_empty_state_description' => 'Crea un token de acceso personal para empezar', - 'mfa_section_title' => 'Autenticación multifactor', - 'mfa_section_description' => 'Administra la configuración de la autenticación multifactor.', - 'browser_section_title' => 'Sesiones del navegador', - 'browser_section_description' => 'Gestiona y cierra tus sesiones activas en otros navegadores y dispositivos', - 'browser_sessions_content' => 'Si es necesario, puedes cerrar todas tus sesiones de navegación en todos tus dispositivos. Algunas de sus sesiones recientes se enumeran a continuación; sin embargo, esta lista puede no ser exhaustiva. Si cree que su cuenta ha sido comprometida, también debería actualizar su contraseña', - 'browser_sessions_device' => 'Este dispositivo', - 'browser_sessions_last_active' => 'Última activa', - 'browser_sessions_log_out' => 'Cerrar otras sesiones del navegador', - 'browser_sessions_confirm_pass' => 'Por favor, introduzca su contraseña para confirmar que desea salir de sus otras sesiones de navegación en todos sus dispositivos', - 'browser_sessions_logout_success_notification' => 'Se han cerrado todas las demás sesiones del navegador con éxito.', -]; diff --git a/lang/vendor/filament-edit-profile/fa/default.php b/lang/vendor/filament-edit-profile/fa/default.php deleted file mode 100644 index 56c7bbd..0000000 --- a/lang/vendor/filament-edit-profile/fa/default.php +++ /dev/null @@ -1,52 +0,0 @@ - 'ویرایش پروفایل', - 'profile_information' => 'اطلاعات پروفایل', - 'profile_information_description' => 'اطلاعات پروفایل و آدرس ایمیل خود را به روز کنید.', - 'name' => 'نام', - 'email' => 'ایمیل', - 'avatar' => 'آواتار', - 'password' => 'رمز عبور', - 'locale' => 'زبان', - 'theme_color' => 'رنگ تم', - 'update_password' => 'بروزرسانی رمز عبور', - 'current_password' => 'رمز عبور فعلی', - 'new_password' => 'رمز عبور جدید', - 'confirm_password' => 'تایید رمز عبور', - 'ensure_your_password' => 'اطمینان حاصل کنید که حساب شما از رمز عبور طولانی و تصادفی برای حفظ امنیت استفاده می کند.', - 'delete_account' => 'حذف حساب کاربری', - 'delete_account_description' => 'اکانت خود را برای همیشه حذف کنید', - 'yes_delete_it' => 'بله؛ حذف کن', - 'are_you_sure' => 'آیا مطمئن هستید که می خواهید حساب خود را حذف کنید؟ این قابل بازگشت نیست!', - 'incorrect_password' => 'رمز عبور ای که وارد کردید نادرست بود. لطفا دوباره تلاش کنید.', - 'user_load_error' => ' کاربر تأیید شده باید یک مدل Eloquent باشد تا به صفحه پروفایل اجازه به روز رسانی آن را بدهد.', - 'delete_account_card_description' => 'پس از حذف حساب شما، تمام منابع و داده های شما برای همیشه پاک می شوند. قبل از حذف حساب خود، لطفاً هر داده یا اطلاعاتی را که می‌خواهید نگه دارید دانلود کنید.', - 'saved_successfully' => 'اطلاعات پروفایل شما با موفقیت ذخیره شد.', - 'custom_fields' => 'فیلدهای سفارشی', - 'custom_fields_description' => 'فیلدهای سفارشی خود را به روز کنید.', - 'save' => 'ذخیره', - 'token_name' => 'نام توکن', - 'token_abilities' => 'توانایی ها', - 'token_created_at' => 'ساخته شده در', - 'token_expires_at' => 'منقضی در', - 'token_section_title' => 'توکن API', - 'token_section_description' => 'توکن‌های API را مدیریت کنید که به سرویس‌های شخص ثالث اجازه می‌دهند از طرف شما به این برنامه دسترسی داشته باشند.', - 'token_action_label' => 'ساخت توکن', - 'token_modal_heading' => 'ايجاد كردن', - 'token_create_notification' => 'توکن با موفقیت ساخته شد', - 'token_helper_text' => 'توکن شما تنها یک بار پس از ایجاد نشان داده می شود. اگر توکن خود را گم کردید، باید آن را حذف کرده و یک توکن جدید ایجاد کنید.', - 'token_modal_heading_2' => 'توکن دسترسی شخصی را کپی کنید', - 'token_empty_state_heading' => 'ایجاد اولین توکن شما', - 'token_empty_state_description' => 'برای شروع یک نشانه دسترسی شخصی ایجاد کنید.', - 'mfa_section_title' => 'احراز هویت چندمرحله‌ای', - 'mfa_section_description' => 'تنظیمات احراز هویت چندمرحله‌ای خود را مدیریت کنید.', - 'browser_section_title' => 'سشن های مرورگر', - 'browser_section_description' => 'سشن های فعال خود را در سایر مرورگرها و دستگاه ها مدیریت کرده و از سیستم خارج شوید.', - 'browser_sessions_content' => 'در صورت لزوم، می توانید از تمام سشن های مرورگر دیگر خود در همه دستگاه های خود خارج شوید. برخی از سشن های اخیر شما در زیر فهرست شده است. با این حال، این فهرست ممکن است جامع نباشد. اگر احساس می کنید حساب شما به خطر افتاده است، باید رمز عبور خود را نیز به روز کنید.', - 'browser_sessions_device' => 'این دستگاه', - 'browser_sessions_last_active' => 'آخرین فعالیت', - 'browser_sessions_log_out' => 'از سایر سشن های مرورگر خارج شوید', - 'browser_sessions_confirm_pass' => 'لطفاً رمز عبور خود را وارد کنید تا تأیید کنید که می خواهید از سایر سشن های مرورگر خود در همه دستگاه های خود خارج شوید.', - 'browser_sessions_logout_success_notification' => 'تمامی جلسات دیگر مرورگر با موفقیت خارج شدند.', -]; diff --git a/lang/vendor/filament-edit-profile/fr/default.php b/lang/vendor/filament-edit-profile/fr/default.php deleted file mode 100644 index fb8ef26..0000000 --- a/lang/vendor/filament-edit-profile/fr/default.php +++ /dev/null @@ -1,52 +0,0 @@ - 'Modifier le profil', - 'profile_information' => 'Informations de profil', - 'profile_information_description' => 'Mettez à jour les informations de votre profil de compte et votre adresse e-mail.', - 'name' => 'Nom', - 'email' => 'E-mail', - 'avatar' => 'Photo', - 'password' => 'Mot de passe', - 'locale' => 'Langue', - 'theme_color' => 'Couleur du thème', - 'update_password' => 'Mettre à jour le mot de passe', - 'current_password' => 'Mot de passe actuel', - 'new_password' => 'Nouveau mot de passe', - 'confirm_password' => 'Confirmer le mot de passe', - 'ensure_your_password' => 'Assurez-vous que votre compte utilise un mot de passe long et aléatoire pour rester en sécurité.', - 'delete_account' => 'Supprimer le compte', - 'delete_account_description' => 'Supprimer définitivement votre compte.', - 'yes_delete_it' => 'Oui, supprimez-le !', - 'are_you_sure' => 'Êtes-vous sûr de vouloir supprimer votre compte ? Ça ne peut pas être annulé!', - 'incorrect_password' => 'Le mot de passe que vous avez entré était incorrect. Veuillez réessayer.', - 'user_load_error' => 'L\'objet utilisateur authentifié doit être un modèle Eloquent pour permettre à la page de profil de le mettre à jour.', - 'delete_account_card_description' => 'Une fois votre compte supprimé, toutes vos ressources et données seront définitivement effacées. Avant de supprimer votre compte, veuillez télécharger toutes les données ou informations que vous souhaitez conserver.', - 'saved_successfully' => 'Les informations de votre profil ont été enregistrées avec succès.', - 'custom_fields' => 'Champs personnalisés', - 'custom_fields_description' => 'Mettez à jour vos champs personnalisés.', - 'save' => 'Enregistrer', - 'token_name' => 'Nom du jeton', - 'token_abilities' => 'Capacités', - 'token_created_at' => 'Créé à', - 'token_expires_at' => 'Expire à', - 'token_section_title' => 'Jetons API', - 'token_section_description' => 'Gérer les jetons API qui permettent aux services tiers d\'accéder à cette application en votre nom.', - 'token_action_label' => 'Créer un jeton', - 'token_modal_heading' => 'Créer', - 'token_create_notification' => 'Jeton créé avec succès !', - 'token_helper_text' => 'Votre token n\'est affiché qu\'une seule fois lors de sa création. Si vous perdez votre token, vous devrez le supprimer et en créer un nouveau.', - 'token_modal_heading_2' => 'Copier le jeton d\'accès personnel', - 'token_empty_state_heading' => 'Créez votre premier jeton', - 'token_empty_state_description' => 'Créez un jeton d\'accès personnel pour commencer.', - 'mfa_section_title' => 'Authentification multifacteur', - 'mfa_section_description' => 'Gérez les paramètres de votre authentification multifacteur.', - 'browser_section_title' => 'Sessions du navigateur', - 'browser_section_description' => 'Gérez et déconnectez-vous de vos sessions actives sur d\'autres navigateurs et appareils.', - 'browser_sessions_content' => 'Si nécessaire, vous pouvez vous déconnecter de toutes vos autres sessions de navigateur sur tous vos appareils. Certaines de vos sessions récentes sont répertoriées ci-dessous ; cependant, cette liste n\'est peut-être pas exhaustive. Si vous pensez que votre compte a été compromis, vous devez également mettre à jour votre mot de passe.', - 'browser_sessions_device' => 'Cet appareil', - 'browser_sessions_last_active' => 'Dernier actif', - 'browser_sessions_log_out' => 'Déconnexion des autres sessions du navigateur', - 'browser_sessions_confirm_pass' => 'Veuillez saisir votre mot de passe pour confirmer que vous souhaitez vous déconnecter de vos autres sessions de navigateur sur tous vos appareils.', - 'browser_sessions_logout_success_notification' => 'Toutes les autres sessions de navigateur ont été déconnectées avec succès.', -]; diff --git a/lang/vendor/filament-edit-profile/he/default.php b/lang/vendor/filament-edit-profile/he/default.php deleted file mode 100644 index d5d64f0..0000000 --- a/lang/vendor/filament-edit-profile/he/default.php +++ /dev/null @@ -1,52 +0,0 @@ - 'עריכת פרופיל', - 'profile_information' => 'פרטי פרופיל', - 'profile_information_description' => 'עדכן את פרטי החשבון ואת כתובת הדואר האלקטרוני בחשבונך.', - 'name' => 'שם', - 'email' => 'דואר אלקטרוני', - 'avatar' => 'תמונה', - 'password' => 'סיסמה', - 'locale' => 'שפה', - 'theme_color' => 'ערכת צבע', - 'update_password' => 'עדכון סיסמה', - 'current_password' => 'סיסמה נוכחית', - 'new_password' => 'סיסמה חדשה', - 'confirm_password' => 'אשר סיסמה', - 'ensure_your_password' => 'הקפד להשתמש בסיסמה ארוכה ומורכבת, כדי לשמור על החשבון מאובטח.', - 'delete_account' => 'מחיקת חשבון', - 'delete_account_description' => 'מחק את החשבון שלך לצמיתות.', - 'yes_delete_it' => 'כן, מחק!', - 'are_you_sure' => 'האם אתה בטוח שברצונך למחוק את חשבונך? פעולה זו אינה ניתנת לביטול!', - 'incorrect_password' => 'הסיסמה שהוזנה אינה נכונה. אנא נסה שנית.', - 'user_load_error' => 'The authenticated user object must be an Eloquent model to allow the profile page to update it.', - 'delete_account_card_description' => 'לאחר מחיקת החשבון, כל המידע והמשאבים של החשבון שלך יימחקו לצמיתות. אנא הורד את כל הנתונים או את המידע שברצונך לשמור לפני מחיקת החשבון.', - 'saved_successfully' => 'פרטי הפרופיל שלך נשמרו בהצלחה.', - 'custom_fields' => 'שדות בהתאמה אישית', - 'custom_fields_description' => 'עדכן את השדות המותאמות אישית.', - 'save' => 'שמירה', - 'token_name' => 'שם אסימון', - 'token_abilities' => 'יכולות', - 'token_created_at' => 'נוצר בתאריך', - 'token_expires_at' => 'יפוג בתאריך', - 'token_section_title' => 'אסימוני API', - 'token_section_description' => 'נהל אסימוני API המאפשרים לשירותי צד שלישי לגשת לאפליקציה זו בשמך.', - 'token_action_label' => 'יצירת אסימון', - 'token_modal_heading' => 'יצירה', - 'token_create_notification' => 'אסימון נוצר בהצלחה!', - 'token_helper_text' => 'האסימון מוצג רק פעם אחת בעת היצירה. אם תאבד את האסימון, יהיה עליך למחוק אותו וליצור אחד חדש.', - 'token_modal_heading_2' => 'העתק את אסימון הגישה', - 'token_empty_state_heading' => 'צור את האסימון הראשון שלך', - 'token_empty_state_description' => 'צור אסימון גישה כדי להתחיל.', - 'mfa_section_title' => 'אימות דו-שלבי', - 'mfa_section_description' => 'נהל את ההגדרות שלך עבור אימות דו-שלבי.', - 'browser_section_title' => 'חיבורים פעילים בדפדפן', - 'browser_section_description' => 'נהל ונתק חיבורים פעילים בדפדפנים ומכשירים אחרים.', - 'browser_sessions_content' => 'במידת הצורך, תוכל לנתק את כל החיבורים הפעילים בדפדפנים אחרים בכל המכשירים שלך. חלק מהחיבורים הפעילים מפורטים להלן; עם זאת, ייתכן שרשימה זו אינה מלאה. אם הינך סבור שחשבונך נפרץ, עליך לשנות בנוסף את הסיסמה שלך.', - 'browser_sessions_device' => 'מכשיר זה', - 'browser_sessions_last_active' => 'פעיל לאחרונה', - 'browser_sessions_log_out' => 'נתק חיבורים פעילים אחרים בדפדפן', - 'browser_sessions_confirm_pass' => 'אנא הזן את הסיסמה שלך כדי לאשר שברצונך לנתק חיבורים פעילים בדפדפנים אחרים בכל המכשירים שלך.', - 'browser_sessions_logout_success_notification' => 'כל החיבורים הפעילים בדפדפנים אחרים נותקו בהצלחה.', -]; diff --git a/lang/vendor/filament-edit-profile/hu/default.php b/lang/vendor/filament-edit-profile/hu/default.php deleted file mode 100644 index c989b1c..0000000 --- a/lang/vendor/filament-edit-profile/hu/default.php +++ /dev/null @@ -1,52 +0,0 @@ - 'Profil szerkesztése', - 'profile_information' => 'Profil információk', - 'profile_information_description' => 'Frissítsd a fiókod profilinformációit és e-mail címed.', - 'name' => 'Név', - 'email' => 'E-mail', - 'avatar' => 'Fotó', - 'password' => 'Jelszó', - 'locale' => 'Nyelv', - 'theme_color' => 'Témaszín', - 'update_password' => 'Jelszó frissítése', - 'current_password' => 'Jelenlegi jelszó', - 'new_password' => 'Új jelszó', - 'confirm_password' => 'Jelszó megerősítése', - 'ensure_your_password' => 'Győződj meg róla, hogy a fiókod hosszú, véletlenszerű jelszót használ a biztonság érdekében.', - 'delete_account' => 'Fiók törlése', - 'delete_account_description' => 'Véglegesen töröld a fiókodat.', - 'yes_delete_it' => 'Igen, töröld!', - 'are_you_sure' => 'Biztosan törölni szeretnéd a fiókodat? Ez nem visszavonható!', - 'incorrect_password' => 'A megadott jelszó helytelen volt. Kérjük, próbáld újra.', - 'user_load_error' => 'A hitelesített felhasználó objektumnak egy Eloquent modellnek kell lennie, hogy lehetővé tegye a profiloldal frissítését.', - 'delete_account_card_description' => 'Miután a fiókod törlődik, az összes erőforrásod és adatod véglegesen törlődik. Mielőtt törölnéd a fiókodat, kérjük, töltsd le azokat az adatokat vagy információkat, amelyeket meg szeretnél tartani.', - 'saved_successfully' => 'Profilinformációid sikeresen elmentve.', - 'custom_fields' => 'Egyedi mezők', - 'custom_fields_description' => 'Frissítsd az egyedi mezőket.', - 'save' => 'Mentés', - 'token_name' => 'Token neve', - 'token_abilities' => 'Képességek', - 'token_created_at' => 'Létrehozva', - 'token_expires_at' => 'Lejárati dátum', - 'token_section_title' => 'API Tokenek', - 'token_section_description' => 'Kezeld az API tokeneket, amelyek lehetővé teszik harmadik féltől származó szolgáltatások számára, hogy hozzáférjenek ehhez az alkalmazáshoz a nevedben.', - 'token_action_label' => 'Token létrehozása', - 'token_modal_heading' => 'Létrehozás', - 'token_create_notification' => 'Token sikeresen létrehozva!', - 'token_helper_text' => 'A tokent csak egyszer mutatjuk meg létrehozáskor. Ha elveszíted a tokent, törölnöd kell, és újat kell létrehoznod.', - 'token_modal_heading_2' => 'Személyes hozzáférési token másolása', - 'token_empty_state_heading' => 'Hozd létre az első tokent', - 'token_empty_state_description' => 'Hozz létre egy személyes hozzáférési tokent a kezdéshez.', - 'mfa_section_title' => 'Többfaktoros hitelesítés', - 'mfa_section_description' => 'A többfaktoros hitelesítés beállításainak kezelése.', - 'browser_section_title' => 'Böngésző munkamenetek', - 'browser_section_description' => 'Kezeld és jelentkezz ki az aktív munkameneteidből más böngészőkben és eszközökön.', - 'browser_sessions_content' => 'Szükség esetén kijelentkezhetsz az összes többi böngésző munkamenetéből az összes eszközödön. Az alábbiakban néhány aktuális munkamenet látható; azonban ez a lista nem feltétlenül teljes. Ha úgy érzed, hogy a fiókodat feltörték, frissítsd jelszavad is.', - 'browser_sessions_device' => 'Ez az eszköz', - 'browser_sessions_last_active' => 'Legutóbbi aktivitás', - 'browser_sessions_log_out' => 'Kijelentkezés más böngésző munkamenetekből', - 'browser_sessions_confirm_pass' => 'Kérjük, add meg a jelszavad, hogy megerősítsd, ki szeretnél jelentkezni az összes többi böngésző munkamenetből az összes eszközödön.', - 'browser_sessions_logout_success_notification' => 'Az összes többi böngésző munkamenet sikeresen kijelentkezett.', -]; diff --git a/lang/vendor/filament-edit-profile/id/default.php b/lang/vendor/filament-edit-profile/id/default.php deleted file mode 100644 index 3f295c8..0000000 --- a/lang/vendor/filament-edit-profile/id/default.php +++ /dev/null @@ -1,52 +0,0 @@ - 'Edit Profil', - 'profile_information' => 'Informasi Profil', - 'profile_information_description' => 'Perbarui informasi profil dan alamat email Anda.', - 'name' => 'Nama', - 'email' => 'Email', - 'avatar' => 'Foto', - 'password' => 'Kata Sandi', - 'locale' => 'Bahasa', - 'theme_color' => 'Warna Tema', - 'update_password' => 'Perbarui Kata Sandi', - 'current_password' => 'Kata Sandi Saat Ini', - 'new_password' => 'Kata Sandi Baru', - 'confirm_password' => 'Konfirmasi Kata Sandi', - 'ensure_your_password' => 'Pastikan akun Anda menggunakan kata sandi yang panjang dan acak untuk keamanan.', - 'delete_account' => 'Hapus Akun', - 'delete_account_description' => 'Hapus akun Anda secara permanen.', - 'yes_delete_it' => 'Ya, hapus!', - 'are_you_sure' => 'Apakah Anda yakin ingin menghapus akun Anda? Ini tidak dapat dibatalkan!', - 'incorrect_password' => 'Kata sandi yang Anda masukkan salah. Silakan coba lagi.', - 'user_load_error' => 'Objek pengguna yang terautentikasi harus merupakan model Eloquent agar halaman profil dapat memperbaruinya.', - 'delete_account_card_description' => 'Setelah akun Anda dihapus, semua data dan sumber daya Anda akan dihapus secara permanen. Sebelum menghapus akun, unduh data atau informasi yang ingin Anda simpan.', - 'saved_successfully' => 'Informasi profil Anda telah berhasil disimpan.', - 'custom_fields' => 'Bidang Kustom', - 'custom_fields_description' => 'Perbarui bidang kustom Anda.', - 'save' => 'Simpan', - 'token_name' => 'Nama Token', - 'token_abilities' => 'Kemampuan', - 'token_created_at' => 'Dibuat pada', - 'token_expires_at' => 'Berlaku hingga', - 'token_section_title' => 'Token API', - 'token_section_description' => 'Kelola token API yang memungkinkan layanan pihak ketiga mengakses aplikasi ini atas nama Anda.', - 'token_action_label' => 'Buat Token', - 'token_modal_heading' => 'Buat', - 'token_create_notification' => 'Token berhasil dibuat!', - 'token_helper_text' => 'Token Anda hanya ditampilkan sekali saat pembuatan. Jika Anda kehilangan token, Anda perlu menghapusnya dan membuat yang baru.', - 'token_modal_heading_2' => 'Salin Token Akses Pribadi', - 'token_empty_state_heading' => 'Buat token pertama Anda', - 'token_empty_state_description' => 'Buat token akses pribadi untuk memulai.', - 'mfa_section_title' => 'Autentikasi Multi-Faktor', - 'mfa_section_description' => 'Kelola pengaturan autentikasi multi-faktor Anda.', - 'browser_section_title' => 'Sesi Browser', - 'browser_section_description' => 'Kelola dan keluar dari sesi aktif Anda di browser dan perangkat lain.', - 'browser_sessions_content' => 'Jika perlu, Anda dapat keluar dari semua sesi browser Anda di semua perangkat. Beberapa sesi terbaru Anda terdaftar di bawah; daftar ini mungkin tidak lengkap. Jika Anda merasa akun Anda telah dikompromikan, perbarui kata sandi Anda.', - 'browser_sessions_device' => 'Perangkat ini', - 'browser_sessions_last_active' => 'Terakhir aktif', - 'browser_sessions_log_out' => 'Keluar dari Sesi Browser Lain', - 'browser_sessions_confirm_pass' => 'Masukkan kata sandi Anda untuk mengonfirmasi bahwa Anda ingin keluar dari sesi browser lain di semua perangkat.', - 'browser_sessions_logout_success_notification' => 'Semua sesi browser lainnya telah berhasil keluar.', -]; diff --git a/lang/vendor/filament-edit-profile/it/default.php b/lang/vendor/filament-edit-profile/it/default.php deleted file mode 100644 index fa6e407..0000000 --- a/lang/vendor/filament-edit-profile/it/default.php +++ /dev/null @@ -1,52 +0,0 @@ - 'Modifica Profilo', - 'profile_information' => 'Informazioni del Profilo', - 'profile_information_description' => "Aggiorna le informazioni del tuo profilo e l'indirizzo email del tuo account.", - 'name' => 'Nome', - 'email' => 'Email', - 'password' => 'Password', - 'avatar' => 'Avatar', - 'locale' => 'Lingua', - 'theme_color' => 'Colore del tema', - 'update_password' => 'Aggiorna Password', - 'current_password' => 'Password Attuale', - 'new_password' => 'Nuova Password', - 'confirm_password' => 'Conferma Password', - 'ensure_your_password' => 'Assicurati che il tuo account utilizzi una password lunga e casuale per rimanere sicuro.', - 'delete_account' => 'Elimina Account', - 'delete_account_description' => 'Elimina permanentemente il tuo account.', - 'yes_delete_it' => 'Sì, eliminalo!', - 'are_you_sure' => 'Sei sicuro di voler eliminare il tuo account? Questa operazione non può essere annullata!', - 'incorrect_password' => 'La password inserita è errata. Per favore riprova.', - 'user_load_error' => "L'oggetto utente autenticato deve essere un modello Eloquent per consentire alla pagina del profilo di aggiornarlo.", - 'delete_account_card_description' => 'Una volta eliminato il tuo account, tutte le tue risorse e dati saranno cancellati permanentemente. Prima di eliminare il tuo account, scarica eventuali dati o informazioni che desideri conservare.', - 'saved_successfully' => 'Le informazioni del tuo profilo sono state salvate con successo.', - 'custom_fields' => 'Campi Personalizzati', - 'custom_fields_description' => 'Aggiorna i tuoi campi personalizzati.', - 'save' => 'Salva', - 'token_name' => 'Nome del Token', - 'token_abilities' => 'Permessi', - 'token_created_at' => 'Creato il', - 'token_expires_at' => 'Scade il', - 'token_section_title' => 'Token API', - 'token_section_description' => 'Gestisci i token API che consentono ai servizi di terze parti di accedere a questa applicazione per tuo conto.', - 'token_action_label' => 'Crea Token', - 'token_modal_heading' => 'Crea', - 'token_create_notification' => 'Token creato con successo!', - 'token_helper_text' => 'Il tuo token viene mostrato solo una volta alla creazione. Se perdi il tuo token, dovrai eliminarlo e crearne uno nuovo.', - 'token_modal_heading_2' => 'Copia il Token di Accesso Personale', - 'token_empty_state_heading' => 'Crea il tuo primo token', - 'token_empty_state_description' => 'Crea un token di accesso personale per iniziare.', - 'mfa_section_title' => 'Autenticazione a più fattori', - 'mfa_section_description' => 'Gestisci le impostazioni della tua autenticazione a più fattori.', - 'browser_section_title' => 'Sessioni del Browser', - 'browser_section_description' => 'Gestisci e disconnetti le tue sessioni attive su altri browser e dispositivi.', - 'browser_sessions_content' => 'Se necessario, puoi disconnetterti da tutte le tue altre sessioni del browser su tutti i tuoi dispositivi. Alcune delle tue sessioni recenti sono elencate di seguito; tuttavia, questo elenco potrebbe non essere esaustivo. Se ritieni che il tuo account sia stato compromesso, dovresti anche aggiornare la tua password.', - 'browser_sessions_device' => 'Questo dispositivo', - 'browser_sessions_last_active' => 'Ultima attività', - 'browser_sessions_log_out' => 'Disconnetti altre sessioni del browser', - 'browser_sessions_confirm_pass' => 'Inserisci la tua password per confermare che desideri disconnettere le altre sessioni del browser su tutti i tuoi dispositivi.', - 'browser_sessions_logout_success_notification' => 'Tutte le altre sessioni del browser sono state disconnesse con successo.', -]; diff --git a/lang/vendor/filament-edit-profile/ja/default.php b/lang/vendor/filament-edit-profile/ja/default.php deleted file mode 100644 index 647637c..0000000 --- a/lang/vendor/filament-edit-profile/ja/default.php +++ /dev/null @@ -1,52 +0,0 @@ - 'プロフィール編集', - 'profile_information' => 'プロフィール情報', - 'profile_information_description' => 'アカウントのプロフィール情報とメールアドレスを更新してください。', - 'name' => '名前', - 'email' => 'メールアドレス', - 'avatar' => '写真', - 'password' => 'パスワード', - 'locale' => '言語', - 'theme_color' => 'テーマカラー', - 'update_password' => 'パスワード更新', - 'current_password' => '現在のパスワード', - 'new_password' => '新しいパスワード', - 'confirm_password' => 'パスワード確認', - 'ensure_your_password' => 'アカウントのセキュリティを保つために、長くランダムなパスワードを使用していることを確認してください。', - 'delete_account' => 'アカウント削除', - 'delete_account_description' => 'アカウントを永久に削除します。', - 'yes_delete_it' => 'はい、削除します!', - 'are_you_sure' => '本当にアカウントを削除してもよろしいですか? この操作は元に戻せません!', - 'incorrect_password' => '入力されたパスワードが正しくありません。もう一度お試しください。', - 'user_load_error' => 'プロフィールページが更新できるように、認証されたユーザーオブジェクトは Eloquent モデルである必要があります。', - 'delete_account_card_description' => 'アカウントを削除すると、すべてのリソースとデータが永久に消去されます。アカウントを削除する前に、保存しておきたいデータや情報をダウンロードしてください。', - 'saved_successfully' => 'プロフィール情報が正常に保存されました。', - 'custom_fields' => 'カスタムフィールド', - 'custom_fields_description' => 'カスタムフィールドを更新してください。', - 'save' => '保存', - 'token_name' => 'トークン名', - 'token_abilities' => '権限', - 'token_created_at' => '作成日時', - 'token_expires_at' => '有効期限', - 'token_section_title' => 'APIトークン', - 'token_section_description' => 'サードパーティのサービスがあなたに代わってこのアプリケーションにアクセスできるようにするAPIトークンを管理します。', - 'token_action_label' => 'トークン作成', - 'token_modal_heading' => '作成', - 'token_create_notification' => 'トークンが正常に作成されました!', - 'token_helper_text' => 'トークンは作成時に一度だけ表示されます。紛失した場合は、削除して新しいトークンを作成する必要があります。', - 'token_modal_heading_2' => 'パーソナルアクセストークンをコピー', - 'token_empty_state_heading' => '最初のトークンを作成', - 'token_empty_state_description' => 'パーソナルアクセストークンを作成して始めましょう。', - 'mfa_section_title' => '多要素認証', - 'mfa_section_description' => '多要素認証の設定を管理します。', - 'browser_section_title' => 'ブラウザセッション', - 'browser_section_description' => '他のブラウザやデバイスでのアクティブなセッションを管理し、ログアウトします。', - 'browser_sessions_content' => '必要に応じて、すべてのデバイスでの他のブラウザセッションからログアウトすることができます。最近のセッションの一部が下に表示されていますが、すべてが表示されるわけではありません。アカウントが不正アクセスされた場合は、パスワードも更新してください。', - 'browser_sessions_device' => 'このデバイス', - 'browser_sessions_last_active' => '最終アクティブ時刻', - 'browser_sessions_log_out' => '他のブラウザセッションからログアウト', - 'browser_sessions_confirm_pass' => 'すべてのデバイスで他のブラウザセッションからログアウトすることを確認するために、パスワードを入力してください。', - 'browser_sessions_logout_success_notification' => '他のすべてのブラウザセッションから正常にログアウトしました。', -]; diff --git a/lang/vendor/filament-edit-profile/nl/default.php b/lang/vendor/filament-edit-profile/nl/default.php deleted file mode 100644 index 10ae396..0000000 --- a/lang/vendor/filament-edit-profile/nl/default.php +++ /dev/null @@ -1,52 +0,0 @@ - 'Profiel Bewerken', - 'profile_information' => 'Profielinformatie', - 'profile_information_description' => 'Werk uw accountprofielinformatie en e-mailadres bij.', - 'name' => 'Naam', - 'email' => 'E-mail', - 'avatar' => 'Foto', - 'password' => 'Wachtwoord', - 'locale' => 'Taal', - 'theme_color' => 'Themakleur', - 'update_password' => 'Wachtwoord Bijwerken', - 'current_password' => 'Huidig Wachtwoord', - 'new_password' => 'Nieuw Wachtwoord', - 'confirm_password' => 'Bevestig Wachtwoord', - 'ensure_your_password' => 'Zorg ervoor dat uw account een lang, willekeurig wachtwoord gebruikt om veilig te blijven.', - 'delete_account' => 'Account Verwijderen', - 'delete_account_description' => 'Verwijder uw account permanent.', - 'yes_delete_it' => 'Ja, verwijder het!', - 'are_you_sure' => 'Weet u zeker dat u uw account wilt verwijderen? Dit kan niet ongedaan worden gemaakt!', - 'incorrect_password' => 'Het ingevoerde wachtwoord is onjuist. Probeer het opnieuw.', - 'user_load_error' => 'Het geauthenticeerde gebruikersobject moet een Eloquent-model zijn om de profielpagina te kunnen bijwerken.', - 'delete_account_card_description' => 'Zodra uw account is verwijderd, worden al uw bronnen en gegevens permanent gewist. Download voor het verwijderen van uw account alle gegevens of informatie die u wilt bewaren.', - 'saved_successfully' => 'Uw profielinformatie is succesvol opgeslagen.', - 'custom_fields' => 'Aangepaste Velden', - 'custom_fields_description' => 'Werk uw aangepaste velden bij.', - 'save' => 'Opslaan', - 'token_name' => 'Tokennaam', - 'token_abilities' => 'Mogelijkheden', - 'token_created_at' => 'Aangemaakt op', - 'token_expires_at' => 'Verloopt op', - 'token_section_title' => 'API Tokens', - 'token_section_description' => 'Beheer API-tokens die derden toestaan toegang te krijgen tot deze applicatie namens u.', - 'token_action_label' => 'Token Aanmaken', - 'token_modal_heading' => 'Aanmaken', - 'token_create_notification' => 'Token succesvol aangemaakt!', - 'token_helper_text' => 'Uw token wordt slechts één keer weergegeven bij het aanmaken. Als u uw token verliest, moet u deze verwijderen en een nieuwe aanmaken.', - 'token_modal_heading_2' => 'Persoonlijke Toegangstoken Kopiëren', - 'token_empty_state_heading' => 'Maak uw eerste token aan', - 'token_empty_state_description' => 'Maak een persoonlijke toegangstoken om te beginnen.', - 'mfa_section_title' => 'Multi-factorauthenticatie', - 'mfa_section_description' => 'Beheer je instellingen voor multi-factorauthenticatie.', - 'browser_section_title' => 'Browsersessies', - 'browser_section_description' => 'Beheer en log uit uw actieve sessies op andere browsers en apparaten.', - 'browser_sessions_content' => 'Indien nodig kunt u uitloggen bij al uw andere browsersessies op al uw apparaten. Sommige van uw recente sessies worden hieronder vermeld; deze lijst is echter mogelijk niet uitputtend. Als u vermoedt dat uw account is gecompromitteerd, moet u ook uw wachtwoord bijwerken.', - 'browser_sessions_device' => 'Dit apparaat', - 'browser_sessions_last_active' => 'Laatst actief', - 'browser_sessions_log_out' => 'Log Uit bij Andere Browsersessies', - 'browser_sessions_confirm_pass' => 'Voer uw wachtwoord in om te bevestigen dat u wilt uitloggen bij uw andere browsersessies op al uw apparaten.', - 'browser_sessions_logout_success_notification' => 'Alle andere browsersessies zijn succesvol uitgelogd.', -]; diff --git a/lang/vendor/filament-edit-profile/pl/default.php b/lang/vendor/filament-edit-profile/pl/default.php deleted file mode 100644 index 7eb3d3b..0000000 --- a/lang/vendor/filament-edit-profile/pl/default.php +++ /dev/null @@ -1,52 +0,0 @@ - 'Mój profil', - 'profile_information' => 'Podstawowe informacje', - 'profile_information_description' => 'Zaktualizuj nazwę i adres e-mail swojego konta.', - 'name' => 'Nazwa użytkownika', - 'email' => 'E-mail', - 'avatar' => 'Zdjęcie', - 'password' => 'Hasło', - 'locale' => 'Język', - 'theme_color' => 'Kolor motywu', - 'update_password' => 'Zaktualizuj hasło', - 'current_password' => 'Obecne hasło', - 'new_password' => 'Nowe hasło', - 'confirm_password' => 'Powtórz hasło', - 'ensure_your_password' => 'Upewnij się, że Twoje konto używa długiego, losowego, bezpiecznego hasła, aby zachować bezpieczeństwo.', - 'delete_account' => 'Usuń konto', - 'delete_account_description' => 'Trwale usuń konto.', - 'yes_delete_it' => 'Tak, usuń!', - 'are_you_sure' => 'Czy na pewno chcesz usunąć swoje konto? Tej operacji nie można cofnąć!', - 'incorrect_password' => 'Wprowadzone hasło jest nieprawidłowe. Spróbuj ponownie.', - 'user_load_error' => 'Uwierzytelniony obiekt użytkownika musi być modelem Eloquent, aby umożliwić aktualizację strony profilu.', - 'delete_account_card_description' => 'Po usunięciu konta wszystkie Twoje zasoby i dane zostaną trwale usunięte. Przed usunięciem konta pobierz wszelkie dane lub informacje, które chcesz zachować.', - 'saved_successfully' => 'Informacje o Twoim profilu zostały pomyślnie zapisane.', - 'custom_fields' => 'Pola niestandardowe', - 'custom_fields_description' => 'Zaktualizuj pola niestandardowe.', - 'save' => 'Zapisz', - 'token_name' => 'Nazwa tokena', - 'token_abilities' => 'Uprawnienia', - 'token_created_at' => 'Utworzono', - 'token_expires_at' => 'Wygasa', - 'token_section_title' => 'Tokeny API', - 'token_section_description' => 'Zarządzaj tokenami API, które umożliwiają usługom zewnętrznym dostęp do tej aplikacji w Twoim imieniu.', - 'token_action_label' => 'Utwórz token', - 'token_modal_heading' => 'Utwórz', - 'token_create_notification' => 'Token został pomyślnie utworzony!', - 'token_helper_text' => 'Twój token jest wyświetlany tylko raz podczas tworzenia. Jeśli zgubisz token, będziesz musiał go usunąć i utworzyć nowy.', - 'token_modal_heading_2' => 'Skopiuj osobisty token dostępu', - 'token_empty_state_heading' => 'Utwórz swój pierwszy token', - 'token_empty_state_description' => 'Utwórz osobisty token dostępu, aby rozpocząć.', - 'mfa_section_title' => 'Uwierzytelnianie wieloskładnikowe', - 'mfa_section_description' => 'Zarządzaj ustawieniami uwierzytelniania wieloskładnikowego.', - 'browser_section_title' => 'Sesje przeglądarki', - 'browser_section_description' => 'Zarządzaj i wyloguj swoje aktywne sesje na innych przeglądarkach i urządzeniach.', - 'browser_sessions_content' => 'Jeśli to konieczne, możesz wylogować się ze wszystkich innych sesji przeglądarki na wszystkich swoich urządzeniach. Poniżej wymieniono niektóre z Twoich ostatnich sesji, jednak lista ta może nie być pełna. Jeśli uważasz, że Twoje konto zostało naruszone, powinieneś również zaktualizować hasło.', - 'browser_sessions_device' => 'To urządzenie', - 'browser_sessions_last_active' => 'Ostatnia aktywność', - 'browser_sessions_log_out' => 'Wyloguj inne sesje przeglądarki', - 'browser_sessions_confirm_pass' => 'Wprowadź swoje hasło, aby potwierdzić, że chcesz wylogować się z innych sesji przeglądarki na wszystkich swoich urządzeniach.', - 'browser_sessions_logout_success_notification' => 'Wszystkie inne sesje przeglądarki zostały pomyślnie wylogowane.', -]; diff --git a/lang/vendor/filament-edit-profile/pt_BR/default.php b/lang/vendor/filament-edit-profile/pt_BR/default.php deleted file mode 100644 index 9e0a44c..0000000 --- a/lang/vendor/filament-edit-profile/pt_BR/default.php +++ /dev/null @@ -1,52 +0,0 @@ - 'Editar Perfil', - 'profile_information' => 'Informação do Perfil', - 'profile_information_description' => 'Atualize as informações do seu perfil e endereço de e-mail.', - 'name' => 'Nome', - 'email' => 'E-mail', - 'avatar' => 'Foto', - 'password' => 'Senha', - 'locale' => 'Idioma', - 'theme_color' => 'Cor do tema', - 'update_password' => 'Atualizar Senha', - 'current_password' => 'Senha Atual', - 'new_password' => 'Nova Senha', - 'confirm_password' => 'Confirmar Senha', - 'ensure_your_password' => 'Certifique-se de que sua conta está usando uma senha longa e aleatória para se manter segura.', - 'delete_account' => 'Excluir Conta', - 'delete_account_description' => 'Excluir permanentemente sua conta.', - 'yes_delete_it' => 'Sim, exclua!', - 'are_you_sure' => 'Tem certeza de que deseja excluir sua conta? Isso não pode ser desfeito!', - 'incorrect_password' => 'A senha que você digitou estava incorreta. Por favor, tente novamente.', - 'user_load_error' => 'O objeto de usuário autenticado deve ser um modelo Eloquent para permitir que a página de perfil o atualize.', - 'delete_account_card_description' => 'Depois que sua conta for excluída, todos os seus recursos e dados serão apagados permanentemente. Antes de excluir sua conta, faça o download de quaisquer dados ou informações que deseja manter.', - 'saved_successfully' => 'Suas informações de perfil foram salvas com sucesso.', - 'custom_fields' => 'Campos Personalizados', - 'custom_fields_description' => 'Atualize seus campos personalizados.', - 'save' => 'Salvar', - 'token_name' => 'Nome do Token', - 'token_abilities' => 'Permissões', - 'token_created_at' => 'Criado em', - 'token_expires_at' => 'Expira em', - 'token_section_title' => 'API Tokens', - 'token_section_description' => 'Gerencie tokens de API que permitem que serviços de terceiros acessem este aplicativo em seu nome.', - 'token_action_label' => 'Criar Token', - 'token_modal_heading' => 'Criar', - 'token_create_notification' => 'Seu Token foi criado com sucesso!', - 'token_helper_text' => 'O token só é mostrado uma vez após a criação. Se você perder o token, precisará excluí-lo e criar um novo', - 'token_modal_heading_2' => 'Copiar Toke de Acesso', - 'token_empty_state_heading' => 'Crie seu primeiro token', - 'token_empty_state_description' => 'Crie um personal access token para começar.', - 'mfa_section_title' => 'Autenticação multifator', - 'mfa_section_description' => 'Gerencie as configurações da sua autenticação multifator.', - 'browser_section_title' => 'Sessões do navegador', - 'browser_section_description' => 'Gerencie e efetue logout de suas sessões ativas em outros navegadores e dispositivos.', - 'browser_sessions_content' => 'Se necessário, você pode sair de todas as outras sessões do navegador em todos os seus dispositivos. Algumas de suas sessões recentes estão listadas abaixo; no entanto, esta lista pode não ser exaustiva. Se você acha que sua conta foi comprometida, você também deve atualizar sua senha.', - 'browser_sessions_device' => 'Este dispositivo', - 'browser_sessions_last_active' => 'Ultima Atividade', - 'browser_sessions_log_out' => 'Sair de outras sessões do navegador', - 'browser_sessions_confirm_pass' => 'Digite sua senha para confirmar que deseja sair das outras sessões do navegador em todos os seus dispositivos.', - 'browser_sessions_logout_success_notification' => 'Todas as outras sessões do navegador foram desconectadas com sucesso.', -]; diff --git a/lang/vendor/filament-edit-profile/pt_PT/default.php b/lang/vendor/filament-edit-profile/pt_PT/default.php deleted file mode 100644 index 3215677..0000000 --- a/lang/vendor/filament-edit-profile/pt_PT/default.php +++ /dev/null @@ -1,52 +0,0 @@ - 'Editar Perfil', - 'profile_information' => 'Informação do Perfil', - 'profile_information_description' => 'Atualize as informações do seu perfil e endereço de email.', - 'name' => 'Nome', - 'email' => 'Email', - 'avatar' => 'Foto', - 'password' => 'Palavra-passe', - 'locale' => 'Idioma', - 'theme_color' => 'Cor do tema', - 'update_password' => 'Atualizar Palavra-passe', - 'current_password' => 'Palavra-passe Atual', - 'new_password' => 'Nova Palavra-passe', - 'confirm_password' => 'Confirmar Palavra-passe', - 'ensure_your_password' => 'Garanta que a sua conta está a usar uma palavra-passe longa e aleatória para manter a segurança.', - 'delete_account' => 'Eliminar Conta', - 'delete_account_description' => 'Eliminar permanentemente a sua conta.', - 'yes_delete_it' => 'Sim, eliminar!', - 'are_you_sure' => 'Tem a certeza de que deseja eliminar a sua conta? Esta ação não pode ser desfeita!', - 'incorrect_password' => 'A palavra-passe que introduziu está incorreta. Por favor, tente novamente.', - 'user_load_error' => 'O objeto de utilizador autenticado deve ser um modelo Eloquent para permitir que a página do perfil o atualize.', - 'delete_account_card_description' => 'Uma vez eliminada a sua conta, todos os seus recursos e dados serão permanentemente apagados. Antes de eliminar a sua conta, por favor, descarregue quaisquer dados ou informações que deseje manter.', - 'saved_successfully' => 'As informações do seu perfil foram guardadas com sucesso.', - 'custom_fields' => 'Campos Personalizados', - 'custom_fields_description' => 'Atualize os seus campos personalizados.', - 'save' => 'Guardar', - 'token_name' => 'Nome do Token', - 'token_abilities' => 'Habilidades', - 'token_created_at' => 'Criado em', - 'token_expires_at' => 'Expira em', - 'token_section_title' => 'Tokens de API', - 'token_section_description' => 'Gerir tokens de API que permitem que serviços de terceiros acedam a esta aplicação em seu nome.', - 'token_action_label' => 'Criar Token', - 'token_modal_heading' => 'Criar', - 'token_create_notification' => 'Token criado com sucesso!', - 'token_helper_text' => 'O seu token é mostrado apenas uma vez aquando da criação. Se perder o seu token, terá de o eliminar e criar um novo.', - 'token_modal_heading_2' => 'Copiar Token de Acesso Pessoal', - 'token_empty_state_heading' => 'Crie o seu primeiro token', - 'token_empty_state_description' => 'Crie um token de acesso pessoal para começar.', - 'mfa_section_title' => 'Autenticação multifator', - 'mfa_section_description' => 'Gira as definições da sua autenticação multifator.', - 'browser_section_title' => 'Sessões do Navegador', - 'browser_section_description' => 'Gerir e terminar as suas sessões ativas em outros navegadores e dispositivos.', - 'browser_sessions_content' => 'Se necessário, pode terminar todas as suas outras sessões de navegador em todos os seus dispositivos. Algumas das suas sessões recentes estão listadas abaixo; no entanto, esta lista pode não ser exaustiva. Se sentir que a sua conta foi comprometida, deve também atualizar a sua palavra-passe.', - 'browser_sessions_device' => 'Este dispositivo', - 'browser_sessions_last_active' => 'Última atividade', - 'browser_sessions_log_out' => 'Terminar Sessões de Outros Navegadores', - 'browser_sessions_confirm_pass' => 'Por favor, introduza a sua palavra-passe para confirmar que deseja terminar as sessões de outros navegadores em todos os seus dispositivos.', - 'browser_sessions_logout_success_notification' => 'Todas as outras sessões do navegador foram desconectadas com êxito.', -]; diff --git a/lang/vendor/filament-edit-profile/ru/default.php b/lang/vendor/filament-edit-profile/ru/default.php new file mode 100644 index 0000000..88d5c88 --- /dev/null +++ b/lang/vendor/filament-edit-profile/ru/default.php @@ -0,0 +1,52 @@ + 'Edit Profile', + 'profile_information' => 'Profile Information', + 'profile_information_description' => 'Update your account profile information and email address.', + 'name' => 'Name', + 'email' => 'Email', + 'avatar' => 'Photo', + 'password' => 'Password', + 'locale' => 'Language', + 'theme_color' => 'Theme Color', + 'update_password' => 'Update Password', + 'current_password' => 'Current Password', + 'new_password' => 'New Password', + 'confirm_password' => 'Confirm Password', + 'ensure_your_password' => 'Ensure your account is using long, random password to stay secure.', + 'delete_account' => 'Delete Account', + 'delete_account_description' => 'Permanently delete your account.', + 'yes_delete_it' => 'Yes, delete it!', + 'are_you_sure' => 'Are you sure you would like to delete your account? This cannot be undone!', + 'incorrect_password' => 'The password you entered was incorrect. Please try again.', + 'user_load_error' => 'The authenticated user object must be an Eloquent model to allow the profile page to update it.', + 'delete_account_card_description' => 'Once your account is deleted, all of your resources and data will be permanently erased. Before deleting your account, please download any data or information you wish to keep.', + 'saved_successfully' => 'Your profile information has been saved successfully.', + 'custom_fields' => 'Custom Fields', + 'custom_fields_description' => 'Update your custom fields.', + 'save' => 'Save', + 'token_name' => 'Token name', + 'token_abilities' => 'Abilities', + 'token_created_at' => 'Created at', + 'token_expires_at' => 'Expires at', + 'token_section_title' => 'API Tokens', + 'token_section_description' => 'Manage API tokens that allow third-party services to access this application on your behalf.', + 'token_action_label' => 'Create Token', + 'token_modal_heading' => 'Create', + 'token_create_notification' => 'Token created successfully!', + 'token_helper_text' => 'Your token is only shown once upon creation. If you lose your token, you will need to delete it and create a new one.', + 'token_modal_heading_2' => 'Copy Personal Access Token', + 'token_empty_state_heading' => 'Create your first token', + 'token_empty_state_description' => 'Create a personal access token to get started.', + 'mfa_section_title' => 'Multi-Factor Authentication', + 'mfa_section_description' => 'Manage your multi factor authentication settings.', + 'browser_section_title' => 'Browser Sessions', + 'browser_section_description' => 'Manage and log out your active sessions on other browsers and devices.', + 'browser_sessions_content' => 'If necessary, you may log out of all of your other browser sessions across all of your devices. Some of your recent sessions are listed below; however, this list may not be exhaustive. If you feel your account has been compromised, you should also update your password.', + 'browser_sessions_device' => 'This device', + 'browser_sessions_last_active' => 'Last active', + 'browser_sessions_log_out' => 'Log Out Other Browser Sessions', + 'browser_sessions_confirm_pass' => 'Please enter your password to confirm you would like to log out of your other browser sessions across all of your devices.', + 'browser_sessions_logout_success_notification' => 'All other browser sessions have been logged out successfully.', +]; diff --git a/lang/vendor/filament-edit-profile/sk/default.php b/lang/vendor/filament-edit-profile/sk/default.php deleted file mode 100644 index 5eff112..0000000 --- a/lang/vendor/filament-edit-profile/sk/default.php +++ /dev/null @@ -1,52 +0,0 @@ - 'Upraviť profil', - 'profile_information' => 'Základné informácie', - 'profile_information_description' => 'Upravte základné informácie a e-mailovú adresu profilu.', - 'name' => 'Meno', - 'email' => 'E-mail', - 'avatar' => 'Fotografia', - 'password' => 'Heslo', - 'locale' => 'Jazyk', - 'theme_color' => 'Farba témy', - 'update_password' => 'Aktualizuj heslo', - 'current_password' => 'Aktuálne heslo', - 'new_password' => 'Nové heslo', - 'confirm_password' => 'Potvrďte nové heslo', - 'ensure_your_password' => 'Uistite sa že používate dlhé a bezpečné heslo s náhodnými znakmi, aby ste zostali v bezpečí.', - 'delete_account' => 'Odstrániť účet', - 'delete_account_description' => 'Odstrániť účet natrvalo.', - 'yes_delete_it' => 'Áno, odstrániť účet!', - 'are_you_sure' => 'Ste si istý, že chcete svoj účet odstrániť natrvalo? Túto akciu nemožno vrátiť späť!', - 'incorrect_password' => 'Chybné heslo. Skúste to prosím znova.', - 'user_load_error' => 'Autentifikovaný užívateľský účet musí byť modelom Eloquent, aby ho profilová stránka mohla aktualizovať.', - 'delete_account_card_description' => 'Po odstránení účtu budú všetky vaše súbory a údaje natrvalo vymazané. Pred odstránením účtu si stiahnite všetky veci, ktoré si chcete ponechať.', - 'saved_successfully' => 'Vaše profilové infomácie boli úspešne uložené.', - 'custom_fields' => 'Vlastné polia', - 'custom_fields_description' => 'Upravte Vaše vlastné polia.', - 'save' => 'Uložiť', - 'token_name' => 'Názov tokenu', - 'token_abilities' => 'Oprávnenia', - 'token_created_at' => 'Vytvorený', - 'token_expires_at' => 'Upravený', - 'token_section_title' => 'API Tokeny', - 'token_section_description' => 'Spravujte API tokeny, ktoré umožňujú službám tretích strán pristupovať k tejto aplikácii vo Vašom mene.', - 'token_action_label' => 'Vytvoriť token', - 'token_modal_heading' => 'Vytvoriť', - 'token_create_notification' => 'Token bol úspešne vytvorený!', - 'token_helper_text' => 'Váš token bude zobrazený iba raz a to pri jeho vytvorení. Ak ho stratíte, tak ho budete musieť vymazať a vytvoriť nový.', - 'token_modal_heading_2' => 'Kopírovať osobný prístupový token', - 'token_empty_state_heading' => 'Vytvorte svoj prvý token', - 'token_empty_state_description' => 'Vytvorte si osobný prístupový token, aby ho mohli začať používať.', - 'mfa_section_title' => 'Viacfaktorové overenie', - 'mfa_section_description' => 'Spravujte nastavenia viacfaktorového overenia.', - 'browser_section_title' => 'Vaše relácie na zariadeniach', - 'browser_section_description' => 'Spravujte a odhláste sa z aplikácie na ostatných zariadeniach.', - 'browser_sessions_content' => 'V prípade potreby sa môžete odhlásiť z ostatných relácií na svojich zariadeniach. Niektoré z vašich nedávnych prihlásení sú uvedené nižšie. Tento zoznam však nemusí byť úplný. Ak máte pocit, že váš účet bol odcudzený, mali by ste aktualizovať svoje heslo.', - 'browser_sessions_device' => 'Vaše aktuálna relácia', - 'browser_sessions_last_active' => 'Naposledy aktívna', - 'browser_sessions_log_out' => 'Odhláste sa z ostatných relácií', - 'browser_sessions_confirm_pass' => 'Zadajte prosím svoje heslo, aby ste potvrdili, že sa naozaj chcete odhlásiť z ostatných relácií na svojich zariadeniach.', - 'browser_sessions_logout_success_notification' => 'Boli ste úspešne odhlásený z ostatných relácií na svojich zariadeniach.', -]; diff --git a/lang/vendor/filament-edit-profile/tk/default.php b/lang/vendor/filament-edit-profile/tk/default.php new file mode 100644 index 0000000..88d5c88 --- /dev/null +++ b/lang/vendor/filament-edit-profile/tk/default.php @@ -0,0 +1,52 @@ + 'Edit Profile', + 'profile_information' => 'Profile Information', + 'profile_information_description' => 'Update your account profile information and email address.', + 'name' => 'Name', + 'email' => 'Email', + 'avatar' => 'Photo', + 'password' => 'Password', + 'locale' => 'Language', + 'theme_color' => 'Theme Color', + 'update_password' => 'Update Password', + 'current_password' => 'Current Password', + 'new_password' => 'New Password', + 'confirm_password' => 'Confirm Password', + 'ensure_your_password' => 'Ensure your account is using long, random password to stay secure.', + 'delete_account' => 'Delete Account', + 'delete_account_description' => 'Permanently delete your account.', + 'yes_delete_it' => 'Yes, delete it!', + 'are_you_sure' => 'Are you sure you would like to delete your account? This cannot be undone!', + 'incorrect_password' => 'The password you entered was incorrect. Please try again.', + 'user_load_error' => 'The authenticated user object must be an Eloquent model to allow the profile page to update it.', + 'delete_account_card_description' => 'Once your account is deleted, all of your resources and data will be permanently erased. Before deleting your account, please download any data or information you wish to keep.', + 'saved_successfully' => 'Your profile information has been saved successfully.', + 'custom_fields' => 'Custom Fields', + 'custom_fields_description' => 'Update your custom fields.', + 'save' => 'Save', + 'token_name' => 'Token name', + 'token_abilities' => 'Abilities', + 'token_created_at' => 'Created at', + 'token_expires_at' => 'Expires at', + 'token_section_title' => 'API Tokens', + 'token_section_description' => 'Manage API tokens that allow third-party services to access this application on your behalf.', + 'token_action_label' => 'Create Token', + 'token_modal_heading' => 'Create', + 'token_create_notification' => 'Token created successfully!', + 'token_helper_text' => 'Your token is only shown once upon creation. If you lose your token, you will need to delete it and create a new one.', + 'token_modal_heading_2' => 'Copy Personal Access Token', + 'token_empty_state_heading' => 'Create your first token', + 'token_empty_state_description' => 'Create a personal access token to get started.', + 'mfa_section_title' => 'Multi-Factor Authentication', + 'mfa_section_description' => 'Manage your multi factor authentication settings.', + 'browser_section_title' => 'Browser Sessions', + 'browser_section_description' => 'Manage and log out your active sessions on other browsers and devices.', + 'browser_sessions_content' => 'If necessary, you may log out of all of your other browser sessions across all of your devices. Some of your recent sessions are listed below; however, this list may not be exhaustive. If you feel your account has been compromised, you should also update your password.', + 'browser_sessions_device' => 'This device', + 'browser_sessions_last_active' => 'Last active', + 'browser_sessions_log_out' => 'Log Out Other Browser Sessions', + 'browser_sessions_confirm_pass' => 'Please enter your password to confirm you would like to log out of your other browser sessions across all of your devices.', + 'browser_sessions_logout_success_notification' => 'All other browser sessions have been logged out successfully.', +]; diff --git a/lang/vendor/filament-edit-profile/tr/default.php b/lang/vendor/filament-edit-profile/tr/default.php deleted file mode 100644 index 02026dc..0000000 --- a/lang/vendor/filament-edit-profile/tr/default.php +++ /dev/null @@ -1,52 +0,0 @@ - 'Profili Düzenle', - 'profile_information' => 'Profil Bilgileri', - 'profile_information_description' => 'Hesap profil bilgilerinizi ve e-posta adresinizi güncelleyin.', - 'name' => 'İsim', - 'email' => 'E-posta', - 'avatar' => 'Fotoğraf', - 'password' => 'Şifre', - 'locale' => 'Dil', - 'theme_color' => 'Tema rengi', - 'update_password' => 'Şifreyi Güncelle', - 'current_password' => 'Mevcut Şifre', - 'new_password' => 'Yeni Şifre', - 'confirm_password' => 'Şifreyi Onayla', - 'ensure_your_password' => 'Hesabınızın güvenliğini sağlamak için uzun ve rastgele bir şifre kullanın.', - 'delete_account' => 'Hesabı Sil', - 'delete_account_description' => 'Hesabınızı kalıcı olarak silin.', - 'yes_delete_it' => 'Evet, sil!', - 'are_you_sure' => 'Hesabınızı silmek istediğinizden emin misiniz? Bu işlem geri alınamaz!', - 'incorrect_password' => 'Girdiğiniz şifre hatalı. Lütfen tekrar deneyin.', - 'user_load_error' => 'Kimliği doğrulanmış kullanıcı nesnesi, profil sayfasının güncellenmesine izin vermek için bir Eloquent modeli olmalıdır.', - 'delete_account_card_description' => 'Hesabınız silindikten sonra tüm kaynaklarınız ve verileriniz kalıcı olarak silinecektir. Hesabınızı silmeden önce saklamak istediğiniz tüm verileri indirmenizi öneririz.', - 'saved_successfully' => 'Profil bilgileriniz başarıyla kaydedildi.', - 'custom_fields' => 'Özel Alanlar', - 'custom_fields_description' => 'Özel alanlarınızı güncelleyin.', - 'save' => 'Kaydet', - 'token_name' => 'Jeton Adı', - 'token_abilities' => 'Yetkiler', - 'token_created_at' => 'Oluşturulma Tarihi', - 'token_expires_at' => 'Son Kullanma Tarihi', - 'token_section_title' => 'API Jetonları', - 'token_section_description' => 'Üçüncü taraf hizmetlerin bu uygulamaya sizin adınıza erişmesini sağlayan API jetonlarını yönetin.', - 'token_action_label' => 'Jeton Oluştur', - 'token_modal_heading' => 'Oluştur', - 'token_create_notification' => 'Jeton başarıyla oluşturuldu!', - 'token_helper_text' => 'Jetonunuzu yalnızca oluşturulduğunda gösterilir. Eğer jetonunuzu kaybederseniz, onu silip yeni bir tane oluşturmanız gerekir.', - 'token_modal_heading_2' => 'Kişisel Erişim Jetonlarını Kopyala', - 'token_empty_state_heading' => 'İlk jetonunuzu oluşturun', - 'token_empty_state_description' => 'Başlamak için bir kişisel erişim jetonu oluşturun.', - 'mfa_section_title' => 'Çok Faktörlü Kimlik Doğrulama', - 'mfa_section_description' => 'Çok faktörlü kimlik doğrulama ayarlarınızı yönetin.', - 'browser_section_title' => 'Tarayıcı Oturumları', - 'browser_section_description' => 'Diğer tarayıcılar ve cihazlardaki aktif oturumlarınızı yönetin ve çıkış yapın.', - 'browser_sessions_content' => 'Gerekirse, diğer tüm tarayıcı oturumlarınızdan çıkış yapabilirsiniz. Aşağıda bazı son oturumlarınız listelenmiştir, ancak bu liste tam kapsamlı olmayabilir. Hesabınızın güvenliğinin ihlal edildiğini düşünüyorsanız, şifrenizi de güncellemeniz gerekir.', - 'browser_sessions_device' => 'Bu Cihaz', - 'browser_sessions_last_active' => 'Son aktif', - 'browser_sessions_log_out' => 'Diğer Tarayıcı Oturumlarından Çıkış Yap', - 'browser_sessions_confirm_pass' => 'Tüm cihazlarınızdaki diğer tarayıcı oturumlarından çıkış yapmak istediğinizi onaylamak için lütfen şifrenizi girin.', - 'browser_sessions_logout_success_notification' => 'Tüm diğer tarayıcı oturumlarından başarıyla çıkış yapıldı.', -];