#region Basic Settings
/// <summary>
/// phrase: Custom settings
/// </summary>
[ResourceEntry(
"CustomSettings"
,
Value =
"Custom settings"
,
Description =
"Custom settings"
,
LastModified =
"2014/05/12"
)]
public
string
CustomSettings
{
get
{
return
this
[
"CustomSettings"
];
}
}
/// <summary>
/// phrase: Settings in the form of a dropdownlist
/// </summary>
[ResourceEntry(
"DropDownListSettings"
,
Value =
"Dropdown list settings"
,
Description =
"Dropdown list settings"
,
LastModified =
"2014/05/19"
)]
public
string
DropDownListSettings
{
get
{
return
this
[
"DropDownListSettings"
];
}
}
/// <summary>
/// phrase: Settings in the form of a checkboxlist
/// </summary>
[ResourceEntry(
"CheckBoxListSettings"
,
Value =
"Checkbox list settings"
,
Description =
"Checkbox list settings"
,
LastModified =
"2014/05/19"
)]
public
string
CheckBoxListSettings
{
get
{
return
this
[
"CheckBoxListSettings"
];
}
}
/// <summary>
/// phrase: Custom settings description
/// </summary>
[ResourceEntry(
"CustomSettingsDescription"
,
Value =
"In case you want to save the changes for real, you must create an additional Config file. <br/>Check <a href='{0}' target='_blank'>the Akismet sample from GitHub</a> for sample code and instructions."
,
Description =
"Custom settings description"
,
LastModified =
"2013/05/19"
)]
public
string
CustomSettingsDescription
{
get
{
return
this
[
"CustomSettingsDescription"
];
}
}
#endregion