mirror of
https://github.com/pelican-dev/panel.git
synced 2026-02-24 19:08:53 +03:00
[PR #2143] [CLOSED] Email Localization for Notifications #1779
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/pelican-dev/panel/pull/2143
Author: @lancepioch
Created: 1/27/2026
Status: ❌ Closed
Base:
main← Head:auto-claude/036-feat-localize-emails📝 Commits (10+)
285cefaauto-claude: subtask-1-1 - Add locale detection to AccountCreated notification3225bd1auto-claude: subtask-1-2 - Add locale detection to ServerInstalled notificationc366ea0auto-claude: subtask-1-3 - Add locale detection to AddedToServer notificationd9f272eauto-claude: subtask-1-4 - Add locale detection to RemovedFromServer notificationb8ea02eauto-claude: subtask-1-5 - Add locale detection to MailTested notification726e5cbauto-claude: subtask-2-1 - Convert AccountCreated notification to use translation keys9fb83e5auto-claude: subtask-2-2 - Convert ServerInstalled notification to use translcf6a6d0auto-claude: subtask-2-3 - Convert AddedToServer notification to use translatd1ac03bauto-claude: subtask-2-4 - Convert RemovedFromServer notification to use trana707d53auto-claude: subtask-2-5 - Convert MailTested notification to use translation📊 Changes
14 files changed (+880 additions, -25 deletions)
View changed files
➕
.auto-claude-security.json(+210 -0)➕
.auto-claude-status(+25 -0)➕
.claude_settings.json(+39 -0)📝
.gitignore(+3 -0)➕
TESTING-EMAIL-LOCALIZATION.md(+214 -0)➕
VERIFICATION-SUMMARY.md(+199 -0)📝
app/Notifications/AccountCreated.php(+10 -5)📝
app/Notifications/AddedToServer.php(+9 -4)📝
app/Notifications/MailTested.php(+9 -4)📝
app/Notifications/RemovedFromServer.php(+9 -4)📝
app/Notifications/ServerInstalled.php(+9 -4)📝
lang/en/notifications.php(+26 -2)📝
lang/fr/notifications.php(+26 -2)➕
test-email-localization.php(+92 -0)📄 Description
Implement multi-language email support for the Pelican Panel application, enabling emails to be sent in the recipient's preferred language. This feature was identified during code review of PR #2041 and addresses the need for internationalized email communications across all notification types (password resets, server notifications, account management, etc.). The implementation will leverage Laravel's existing localization infrastructure and extend it to the email notification system.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.