How to reproduce it :
- into your skin, override captcha template with these params : placeholder-i18n, placeholder-catalogue and placeholder
<xsl:call-template name="captcha"> <xsl:with-param name="key-name">captcha-key</xsl:with-param> <xsl:with-param name="key-id">signup-<xsl:value-of select="$uniqueId"/>-captcha-key</xsl:with-param> <xsl:with-param name="placeholder-i18n" select="true()"/> <xsl:with-param name="placeholder">PLUGINS_WEB_SERVICE_USER_SIGNUP_VIEW_CAPTCHA</xsl:with-param> <xsl:with-param name="placeholder-catalogue">plugin.web</xsl:with-param>
- the i18n key is not translated because template "captcha" calls the template "captcha_impl" without the placeholder-i18n neither the placeholder-catalogue.
[CMS-10036] Param missing into captcha_impl template of CMS plugin
Status | Original: Resolved [ 5 ] | New: Closed [ 6 ] |
Resolution | New: Fixed [ 1 ] | |
Status | Original: Open [ 1 ] | New: Resolved [ 5 ] |
Fix Version/s | New: 4.2.7 [ 15517 ] | |
Fix Version/s | Original: 4.2.6 [ 15490 ] |
Fix Version/s | New: 4.1.19 [ 15508 ] | |
Fix Version/s | Original: 4.1.18 [ 15417 ] |
Fix Version/s | New: 4.2.6 [ 15490 ] | |
Fix Version/s | Original: 4.2.5 [ 15416 ] |
Fix Version/s | New: 4.1.18 [ 15417 ] | |
Fix Version/s | New: 4.2.5 [ 15416 ] | |
Fix Version/s | New: 4.3.0 [ 14678 ] |
Description |
Original:
How to reproduce it :
- into your skin, surcharge captcha template with these params : placeholder-i18n, placeholder-catalogue and placeholder {code:java} <xsl:call-template name="captcha"> <xsl:with-param name="key-name">captcha-key</xsl:with-param> <xsl:with-param name="key-id">signup-<xsl:value-of select="$uniqueId"/>-captcha-key</xsl:with-param> <xsl:with-param name="placeholder-i18n" select="true()"/> <xsl:with-param name="placeholder">PLUGINS_WEB_SERVICE_USER_SIGNUP_VIEW_CAPTCHA</xsl:with-param> <xsl:with-param name="placeholder-catalogue">plugin.web</xsl:with-param>{code} - the i18n key is not translated because template "captcha" calls the template "captcha_impl" without the placeholder-i18n neither the placeholder-catalogue. |
New:
How to reproduce it :
- into your skin, override captcha template with these params : placeholder-i18n, placeholder-catalogue and placeholder {code:java} <xsl:call-template name="captcha"> <xsl:with-param name="key-name">captcha-key</xsl:with-param> <xsl:with-param name="key-id">signup-<xsl:value-of select="$uniqueId"/>-captcha-key</xsl:with-param> <xsl:with-param name="placeholder-i18n" select="true()"/> <xsl:with-param name="placeholder">PLUGINS_WEB_SERVICE_USER_SIGNUP_VIEW_CAPTCHA</xsl:with-param> <xsl:with-param name="placeholder-catalogue">plugin.web</xsl:with-param>{code} - the i18n key is not translated because template "captcha" calls the template "captcha_impl" without the placeholder-i18n neither the placeholder-catalogue. |