Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: installer/src/installer-lib/custom-i18n.wxi

Issue 5675960980471808: Updated installer with custom action (Closed)
Patch Set: Created March 8, 2014, 5:06 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld