Ticket #636 (closed defect: fixed)
I18N catalogue problem
| Reported by: | sergeymorkovkin | Owned by: | xue |
|---|---|---|---|
| Priority: | urgent | Milestone: | 3.1.2 |
| Component: | Prado Framework v3 | Version: | 3.1 |
| Severity: | major | Keywords: | |
| Cc: |
Description
1. Code used to produce an error:
<com:TTranslate>
{greeting} {name}!, The unix-time is "{time}". <com:TTranslateParameter Key="name"><com:TTranslate Catalogue="tests" Text="World" /></com:TTranslateParameter> <com:TTranslateParameter Key="greeting" Value="Hello" /> <com:TTranslateParameter Key="time" Value="<%= Time() %>" />
</com:TTranslate>
2. Module configuration
<module id="globalization" class="TGlobalization">
<translation type="XLIFF" source="SitePages?.Users.Texts" marker="@@" autosave="true" cache="true" />
</module>
---
If there is no catalogue named 'tests' and autosave is enabled, it writes unsaved 'World' message into dfault messages.xml as many times as you hit the page.
