Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 670 Bytes

tag.msg.md

File metadata and controls

29 lines (23 loc) · 670 Bytes

Msg Tag

The Msg tag displays multi-language strings in JSP.

<%@ taglib prefix="efw" uri="efw" %>
<body>
...
<efw:Msg key="here"/> // or efw:msg, efw:MSG
...
</body>

The key should be defined in Language XML.

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
<properties>
<entry key="here">here</entry>
</properties>

Attributes

Name Required Default Description
key Yes The key for the multi-language string.
default No "" The default value to display if the key is not defined in the Language XML file.