[tuxdroid-svn] r5185 - software_suite_v3/smart-core/smart-server/trunk/data/web_interface/devel/xsl
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-07-28 09:10:29
|
Author: remi
Date: 2009-07-28 11:10:13 +0200 (Tue, 28 Jul 2009)
New Revision: 5185
Modified:
software_suite_v3/smart-core/smart-server/trunk/data/web_interface/devel/xsl/plugin_gadget_common.xsl
Log:
* Added a combobox to select the default language of a gadget in the "devel" interface.
Modified: software_suite_v3/smart-core/smart-server/trunk/data/web_interface/devel/xsl/plugin_gadget_common.xsl
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/data/web_interface/devel/xsl/plugin_gadget_common.xsl 2009-07-28 09:04:42 UTC (rev 5184)
+++ software_suite_v3/smart-core/smart-server/trunk/data/web_interface/devel/xsl/plugin_gadget_common.xsl 2009-07-28 09:10:13 UTC (rev 5185)
@@ -238,11 +238,44 @@
</div>
<div class="sectionContentCol22">
<span class="sectionContentPName">
- <xsl:element name="input">
- <xsl:attribute name="class">text</xsl:attribute>
- <xsl:attribute name="type">text</xsl:attribute>
+ <xsl:element name="select">
+ <xsl:attribute name="class">select</xsl:attribute>
<xsl:attribute name="id">req_gadget_defaultLanguage</xsl:attribute>
- <xsl:attribute name="value">English</xsl:attribute>
+ <xsl:attribute name="name">defaultLanguage</xsl:attribute>
+ <xsl:element name="option">
+ <xsl:attribute name="value">all</xsl:attribute>
+ <xsl:attribute name="selected">true</xsl:attribute>all
+ </xsl:element>
+ <xsl:element name="option">
+ <xsl:attribute name="value">en</xsl:attribute>en
+ </xsl:element>
+ <xsl:element name="option">
+ <xsl:attribute name="value">fr</xsl:attribute>fr
+ </xsl:element>
+ <xsl:element name="option">
+ <xsl:attribute name="value">nl</xsl:attribute>nl
+ </xsl:element>
+ <xsl:element name="option">
+ <xsl:attribute name="value">ar</xsl:attribute>ar
+ </xsl:element>
+ <xsl:element name="option">
+ <xsl:attribute name="value">es</xsl:attribute>es
+ </xsl:element>
+ <xsl:element name="option">
+ <xsl:attribute name="value">de</xsl:attribute>de
+ </xsl:element>
+ <xsl:element name="option">
+ <xsl:attribute name="value">it</xsl:attribute>it
+ </xsl:element>
+ <xsl:element name="option">
+ <xsl:attribute name="value">pt</xsl:attribute>pt
+ </xsl:element>
+ <xsl:element name="option">
+ <xsl:attribute name="value">no</xsl:attribute>no
+ </xsl:element>
+ <xsl:element name="option">
+ <xsl:attribute name="value">sv</xsl:attribute>sv
+ </xsl:element>
</xsl:element>
</span>
</div>
|