[PR #1554] [MERGED] Client area translations #1450

Closed
opened 2026-02-05 18:14:23 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/pelican-dev/panel/pull/1554
Author: @notAreYouScared
Created: 7/23/2025
Status: Merged
Merged: 8/1/2025
Merged by: @notAreYouScared

Base: mainHead: charles/client-area-translation


📝 Commits (10+)

📊 Changes

47 files changed (+889 additions, -283 deletions)

View changed files

📝 app/Enums/BackupStatus.php (+1 -1)
📝 app/Enums/ContainerStatus.php (+1 -1)
📝 app/Filament/App/Resources/ServerResource/Pages/ListServers.php (+4 -4)
📝 app/Filament/Components/Forms/Actions/PreviewStartupAction.php (+5 -0)
📝 app/Filament/Server/Pages/Console.php (+15 -1)
📝 app/Filament/Server/Pages/Settings.php (+57 -47)
📝 app/Filament/Server/Pages/Startup.php (+25 -14)
📝 app/Filament/Server/Resources/ActivityResource.php (+15 -8)
📝 app/Filament/Server/Resources/ActivityResource/Pages/ListActivities.php (+5 -0)
📝 app/Filament/Server/Resources/AllocationResource.php (+13 -11)
📝 app/Filament/Server/Resources/AllocationResource/Pages/ListAllocations.php (+11 -1)
📝 app/Filament/Server/Resources/BackupResource.php (+35 -21)
📝 app/Filament/Server/Resources/BackupResource/Pages/ListBackups.php (+10 -5)
📝 app/Filament/Server/Resources/DatabaseResource.php (+20 -5)
📝 app/Filament/Server/Resources/DatabaseResource/Pages/ListDatabases.php (+11 -6)
📝 app/Filament/Server/Resources/FileResource.php (+5 -0)
📝 app/Filament/Server/Resources/FileResource/Pages/EditFiles.php (+7 -7)
📝 app/Filament/Server/Resources/FileResource/Pages/ListFiles.php (+62 -47)
📝 app/Filament/Server/Resources/FileResource/Pages/SearchFiles.php (+16 -4)
📝 app/Filament/Server/Resources/ScheduleResource.php (+50 -37)

...and 27 more files

📄 Description

Replaces https://github.com/pelican-dev/panel/pull/1418
Closes https://github.com/pelican-dev/panel/issues/1230

  • Dashboard / Server List
  • Console
  • Files
  • Backups
  • Schedules
  • Users
  • Databases
  • Network
  • Activity
  • Startup
  • Settings

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/pelican-dev/panel/pull/1554 **Author:** [@notAreYouScared](https://github.com/notAreYouScared) **Created:** 7/23/2025 **Status:** ✅ Merged **Merged:** 8/1/2025 **Merged by:** [@notAreYouScared](https://github.com/notAreYouScared) **Base:** `main` ← **Head:** `charles/client-area-translation` --- ### 📝 Commits (10+) - [`a8890d9`](https://github.com/pelican-dev/panel/commit/a8890d910fc7c416346747802a0cf86fe09754fc) init - [`7bd007b`](https://github.com/pelican-dev/panel/commit/7bd007be6bb69c793fa2e1fc232210f34476f1f4) Console - [`d8c94c1`](https://github.com/pelican-dev/panel/commit/d8c94c1ee111bda15fe63c1faeaed2629d97898d) File - [`2ae0621`](https://github.com/pelican-dev/panel/commit/2ae06211ddcb4d61966d729a979c23491e5c21a9) Backup - [`a0660e8`](https://github.com/pelican-dev/panel/commit/a0660e82b8449bc29fa1b10980d332f03e89a0a2) User - [`9f13c19`](https://github.com/pelican-dev/panel/commit/9f13c194fd416db051c29dcf6db1552ff344a72e) Network - [`6010a4f`](https://github.com/pelican-dev/panel/commit/6010a4ffd4927cc73e02b66ab4b7dd6c698ed43c) Activity - [`65774e5`](https://github.com/pelican-dev/panel/commit/65774e5f988bd7be1588540b94f2622b32ff5fe1) Network-v2 - [`f68e0fc`](https://github.com/pelican-dev/panel/commit/f68e0fc339181be18467f61dfcfeda9eb94b63e9) File-v2 - [`7e087cd`](https://github.com/pelican-dev/panel/commit/7e087cd0bcae6b64252fc51d26b23b02209aac1e) Backup-v2 ### 📊 Changes **47 files changed** (+889 additions, -283 deletions) <details> <summary>View changed files</summary> 📝 `app/Enums/BackupStatus.php` (+1 -1) 📝 `app/Enums/ContainerStatus.php` (+1 -1) 📝 `app/Filament/App/Resources/ServerResource/Pages/ListServers.php` (+4 -4) 📝 `app/Filament/Components/Forms/Actions/PreviewStartupAction.php` (+5 -0) 📝 `app/Filament/Server/Pages/Console.php` (+15 -1) 📝 `app/Filament/Server/Pages/Settings.php` (+57 -47) 📝 `app/Filament/Server/Pages/Startup.php` (+25 -14) 📝 `app/Filament/Server/Resources/ActivityResource.php` (+15 -8) 📝 `app/Filament/Server/Resources/ActivityResource/Pages/ListActivities.php` (+5 -0) 📝 `app/Filament/Server/Resources/AllocationResource.php` (+13 -11) 📝 `app/Filament/Server/Resources/AllocationResource/Pages/ListAllocations.php` (+11 -1) 📝 `app/Filament/Server/Resources/BackupResource.php` (+35 -21) 📝 `app/Filament/Server/Resources/BackupResource/Pages/ListBackups.php` (+10 -5) 📝 `app/Filament/Server/Resources/DatabaseResource.php` (+20 -5) 📝 `app/Filament/Server/Resources/DatabaseResource/Pages/ListDatabases.php` (+11 -6) 📝 `app/Filament/Server/Resources/FileResource.php` (+5 -0) 📝 `app/Filament/Server/Resources/FileResource/Pages/EditFiles.php` (+7 -7) 📝 `app/Filament/Server/Resources/FileResource/Pages/ListFiles.php` (+62 -47) 📝 `app/Filament/Server/Resources/FileResource/Pages/SearchFiles.php` (+16 -4) 📝 `app/Filament/Server/Resources/ScheduleResource.php` (+50 -37) _...and 27 more files_ </details> ### 📄 Description Replaces https://github.com/pelican-dev/panel/pull/1418 Closes https://github.com/pelican-dev/panel/issues/1230 - [x] Dashboard / Server List - [X] Console - [X] Files - [X] Backups - [x] Schedules - [X] Users - [X] Databases - [X] Network - [X] Activity - [X] Startup - [X] Settings --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-05 18:14:23 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/panel-pelican-dev#1450