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

Unified 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.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: installer/src/installer-lib/custom-i18n.wxi
===================================================================
new file mode 100644
--- /dev/null
+++ b/installer/src/installer-lib/custom-i18n.wxi
@@ -0,0 +1,24 @@
+<?xml version="1.0"?>
+<Include xmlns="http://schemas.microsoft.com/wix/2006/wi">
+ <!--
+ Schema for custom database to internationalize custom actions.
+ -->
+ <CustomTable Id="AbpUIText">
+ <!--
+ 'component' is the name of the custom action; think of it as a namespace
+ -->
+ <Column Id="component" Type="string" Category="Identifier" PrimaryKey="yes" />
+ <!--
+ 'id' is the particular item within the component
+ -->
+ <Column Id="id" Type="string" Category="Identifier" PrimaryKey="yes" />
+ <!--
+ 'content' is the string to be localized
+ -->
+ <Column Id="content" Type="string" Category="Text" />
+ </CustomTable>
+ <!--
+ If we declare the table, we include the table even if empty
+ -->
+ <EnsureTable Id="AbpUIText"/>
+</Include>

Powered by Google App Engine
This is Rietveld