Talk:XUL Tutorial:Property Files
From MDC
I favor adding parameters to this page, especially the ordering, which is so easy to forget.
# LOCALIZATION NOTE (key): %1$S = first name, %2$S = middle name key=the first name is %1$S, the middle name is %2$S
I'd advise folks to use Localization notes, too.
--AxelHecht 15:28, 5 July 2006 (PDT)
Note: investigate this comment:
[edit] Note about usage of Stringbundles
If you're using a stringbundle inside an overlay, you need some changes. For example :
<overlay id="OverLayId">
<stringbundleset id="strbundles">
<stringbundle id="strings" src="strings.properties"/>
</stringbundleset>
</overlay>
You won't be able to retrieve it. To be able to, you need to change your code this way :
<overlay id="OverLayId">
<window id="main-window">
<stringbundleset id="strbundles">
<stringbundle id="strings" src="strings.properties"/>
</stringbundleset>
</window>
</overlay>