[PR #4710] [CLOSED] Supports multiple languages in the web interface #3941

Closed
opened 2026-02-26 08:32:32 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/NginxProxyManager/nginx-proxy-manager/pull/4710
Author: @QiMa
Created: 8/13/2025
Status: Closed

Base: developHead: develop


📝 Commits (2)

  • 0e039e7 Supports multiple languages in the web interface. The interface will automatically detect your browser's language preference, or you can manually select your preferred language in the Settings page
  • ea081eb supports multiple languages in the web interface

📊 Changes

20 files changed (+2472 additions, -336 deletions)

View changed files

📝 README.md (+29 -0)
📝 frontend/js/app/cache.js (+41 -1)
📝 frontend/js/app/i18n.js (+201 -14)
📝 frontend/js/app/main.js (+5 -0)
📝 frontend/js/app/settings/list/item.ejs (+34 -7)
📝 frontend/js/app/settings/list/item.js (+36 -1)
📝 frontend/js/app/settings/main.js (+22 -8)
📝 frontend/js/app/ui/header/main.ejs (+4 -0)
📝 frontend/js/app/ui/header/main.js (+16 -2)
frontend/js/i18n/README.md (+222 -0)
frontend/js/i18n/en-US.json (+305 -0)
frontend/js/i18n/fr-FR.json (+306 -0)
frontend/js/i18n/ja-JP.json (+13 -0)
frontend/js/i18n/ko-KR.json (+13 -0)
frontend/js/i18n/messages.json (+0 -301)
frontend/js/i18n/pt-PT.json (+306 -0)
frontend/js/i18n/ru-RU.json (+306 -0)
frontend/js/i18n/zh-CN.json (+305 -0)
frontend/js/i18n/zh-TW.json (+305 -0)
📝 frontend/webpack.config.js (+3 -2)

📄 Description

Language Support

Nginx Proxy Manager supports multiple languages in the web interface. The interface will automatically detect your browser's language preference, or you can manually select your preferred language in the Settings page.

Available Languages

  • English (en) - Default language
  • 简体中文 (zh) - Simplified Chinese
  • 繁體中文 (tw) - Traditional Chinese
  • Français (fr) - French
  • 日本語 (jp) - Japanese
  • 한국어 (kr) - Korean
  • Русский (ru) - Russian
  • Português (pt) - Portuguese

Changing Language

  1. Log in to the admin interface
  2. Go to Settings in the main menu
  3. Find the Interface Language section
  4. Select your preferred language from the dropdown
  5. The interface will automatically reload with the new language

For technical details about translations and contributing new languages, see frontend/js/i18n/README.md.


🔄 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/NginxProxyManager/nginx-proxy-manager/pull/4710 **Author:** [@QiMa](https://github.com/QiMa) **Created:** 8/13/2025 **Status:** ❌ Closed **Base:** `develop` ← **Head:** `develop` --- ### 📝 Commits (2) - [`0e039e7`](https://github.com/NginxProxyManager/nginx-proxy-manager/commit/0e039e74aa8fbdd0d4f27b79ec87ba9394d530e9) Supports multiple languages in the web interface. The interface will automatically detect your browser's language preference, or you can manually select your preferred language in the Settings page - [`ea081eb`](https://github.com/NginxProxyManager/nginx-proxy-manager/commit/ea081eb184c6c3dda567632a18994379d9d5bc7a) supports multiple languages in the web interface ### 📊 Changes **20 files changed** (+2472 additions, -336 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+29 -0) 📝 `frontend/js/app/cache.js` (+41 -1) 📝 `frontend/js/app/i18n.js` (+201 -14) 📝 `frontend/js/app/main.js` (+5 -0) 📝 `frontend/js/app/settings/list/item.ejs` (+34 -7) 📝 `frontend/js/app/settings/list/item.js` (+36 -1) 📝 `frontend/js/app/settings/main.js` (+22 -8) 📝 `frontend/js/app/ui/header/main.ejs` (+4 -0) 📝 `frontend/js/app/ui/header/main.js` (+16 -2) ➕ `frontend/js/i18n/README.md` (+222 -0) ➕ `frontend/js/i18n/en-US.json` (+305 -0) ➕ `frontend/js/i18n/fr-FR.json` (+306 -0) ➕ `frontend/js/i18n/ja-JP.json` (+13 -0) ➕ `frontend/js/i18n/ko-KR.json` (+13 -0) ➖ `frontend/js/i18n/messages.json` (+0 -301) ➕ `frontend/js/i18n/pt-PT.json` (+306 -0) ➕ `frontend/js/i18n/ru-RU.json` (+306 -0) ➕ `frontend/js/i18n/zh-CN.json` (+305 -0) ➕ `frontend/js/i18n/zh-TW.json` (+305 -0) 📝 `frontend/webpack.config.js` (+3 -2) </details> ### 📄 Description ## Language Support Nginx Proxy Manager supports multiple languages in the web interface. The interface will automatically detect your browser's language preference, or you can manually select your preferred language in the Settings page. ### Available Languages - **English** (en) - Default language - **简体中文** (zh) - Simplified Chinese - **繁體中文** (tw) - Traditional Chinese - **Français** (fr) - French - **日本語** (jp) - Japanese - **한국어** (kr) - Korean - **Русский** (ru) - Russian - **Português** (pt) - Portuguese ### Changing Language 1. Log in to the admin interface 2. Go to **Settings** in the main menu 3. Find the **Interface Language** section 4. Select your preferred language from the dropdown 5. The interface will automatically reload with the new language For technical details about translations and contributing new languages, see [frontend/js/i18n/README.md](frontend/js/i18n/README.md). --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 08:32:32 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/nginx-proxy-manager-NginxProxyManager#3941
No description provided.