-
РЕШЕНИЯ ЗА ДОМА
Модеми и шлюзове
Your doorway to the internet
Решения за разширение на мрежата
Easy ways to expand and enhance your network
SOHO Switches
Keeping your home wired for quality connections
Аксесоари
Everything else you need for a connected lifestyle
-
Умен ДОМ
Cloud камери
Keeping an eye on what matters
Интелигентни контакти
Smarten up your home devices
Интелигентни крушки
Light for every occasion
Range Extender+
Extend Wi-Fi and manage with Kasa app
-
Бизнес решения
JetStream комутатори
High-Speed wired networking from L3 managed to unmanaged
Точки за достъп под управлението на софтуер контролер
Professional business Wi-Fi with centralized management
Omada Cloud SDN
The smarter cloud solution for business networking
Pharos Бизнес Oudoor Wireless Broadband
Ideal for long range wireless broadband networking
SafeStream рутер
Secure VPN and Load Balance gateways to the business
VIGI Surveillance
VIGI video surveillance is dedicated to your security
-
ДОСТАВЧИЦИ НА УСЛУГИ
DSL
Capable of high-speed network and integrated broadband applications
LTE/3G оборудване
Сигурен достъп до интернет в движение.
PON оборудване
The leading technology for delivering gigabit Internet services
Powerline адаптери
Трансформират електрическата инсталация за пренос на мрежов сигнал.
Range Extender
Easily expand your Wi-Fi coverage.
Комутатори
Увеличават производителността на вашата бизнес мрежа.
Безжични решения за бизнеса
Увеличават производителността на вашата Wi-Fi бизнес мрежа
How to Change the Language of the Printed Voucher Code?
By default, the EAP/Omada Controller supports English language only. So when you print the Voucher code and hand it over to the customer, it’s in English as shown in the picture below.
Some customers may want to localize the language or customize the information on the Voucher Code. This document will introduce an easy and practical way to achieve this.
Steps
- Run the EAP Controller first. This is a mandatory step.
- Find the installation path of the EAP Controller, by default, it’s “C:\Program Files (x86)\TP-LINK”. And then go further to the path “C:\Program Files (x86)\TP-LINK\EAP Controller\work\com.tp-link.eap.web\webapp\WEB-INF\jsp\hotspot” and find the print.jsp file. This file defines the print operation of the Voucher Code, and we can change the info on the Voucher code by modifying this file.
- Please open the print.jsp file with the notebook and then find the getStatus(voucher) function:
function getStatus(voucher) {
return "Valid for " + transferTime2(voucher.duration * 60);
}
Here we modify the function as below
function getStatus(voucher) {
return "VALID FOR" + transferTime2(voucher.duration * 60);
}
- Then find the getType(voucher) function:
function getType(voucher) {
if (voucher.type == 0) {
return "with single use";
} else {
return "with " + voucher.quota + " online user(s)";
}
}
Here we modify the function as below
function getType(voucher) {
if (voucher.type == 0) {
return "WITH SINGLE USE";
} else {
return "WITH " + voucher.quota + " ONLINE USER(S)";
}
}
- Save the changes and then print the Voucher codes, the effects are shown as follow:
Note: all the changes will be restored to the default after you restart the EAP/Omada Controller.
Your feedback helps improve this site.