OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0"?> |
| 2 <Include xmlns="http://schemas.microsoft.com/wix/2006/wi"> |
| 3 <!-- |
| 4 Schema for custom database to internationalize custom actions. |
| 5 --> |
| 6 <CustomTable Id="AbpUIText"> |
| 7 <!-- |
| 8 'component' is the name of the custom action; think of it as a namespace |
| 9 --> |
| 10 <Column Id="component" Type="string" Category="Identifier" PrimaryKey="yes"
/> |
| 11 <!-- |
| 12 'id' is the particular item within the component |
| 13 --> |
| 14 <Column Id="id" Type="string" Category="Identifier" PrimaryKey="yes" /> |
| 15 <!-- |
| 16 'content' is the string to be localized |
| 17 --> |
| 18 <Column Id="content" Type="string" Category="Text" /> |
| 19 </CustomTable> |
| 20 <!-- |
| 21 If we declare the table, we include the table even if empty |
| 22 --> |
| 23 <EnsureTable Id="AbpUIText"/> |
| 24 </Include> |
OLD | NEW |