Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public override async Task ConfigurePage()
sortable: false,
formatter: (value, _) =>
value is null or 0
? LocalizationService.GetString("No consent needed")
? LocalizationService.GetString("customchannelsettings.codesnippets.noconsentneeded")
: allConsents.FirstOrDefault(c => c.ConsentID == (int)value)?.ConsentDisplayName ?? "")
.AddColumn(
nameof(ChannelCodeSnippetItemInfo.ChannelCodeSnippetItemEnable),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:schema id="root"
xmlns=""
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
Expand Down Expand Up @@ -120,4 +123,7 @@
<data name="customchannelsettings.codesnippets.noconsentneeded" xml:space="preserve">
<value>No consent needed</value>
</data>
<data name="customchannelsettings.codesnippets.permissionerror" xml:space="preserve">
<value>Missing permission for channel</value>
</data>
</root>