aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/ILocalizer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Extensibility/ILocalizer.cs')
-rw-r--r--src/WixToolset.Extensibility/ILocalizer.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/ILocalizer.cs b/src/WixToolset.Extensibility/ILocalizer.cs
new file mode 100644
index 00000000..3ce29aab
--- /dev/null
+++ b/src/WixToolset.Extensibility/ILocalizer.cs
@@ -0,0 +1,15 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolset.Extensibility
4{
5 using WixToolset.Data;
6
7 public interface ILocalizer
8 {
9 int Codepage { get; }
10
11 string GetLocalizedValue(string id);
12
13 LocalizedControl GetLocalizedControl(string dialog, string control);
14 }
15}