50 lines
1.7 KiB
C#
50 lines
1.7 KiB
C#
using Nop.Core.Configuration;
|
|
|
|
namespace Nop.Core.Domain.Localization;
|
|
|
|
/// <summary>
|
|
/// Localization settings
|
|
/// </summary>
|
|
public partial class LocalizationSettings : ISettings
|
|
{
|
|
/// <summary>
|
|
/// Default admin area language identifier
|
|
/// </summary>
|
|
public int DefaultAdminLanguageId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Use images for language selection
|
|
/// </summary>
|
|
public bool UseImagesForLanguageSelection { get; set; }
|
|
|
|
/// <summary>
|
|
/// A value indicating whether SEO friendly URLs with multiple languages are enabled
|
|
/// </summary>
|
|
public bool SeoFriendlyUrlsForLanguagesEnabled { get; set; }
|
|
|
|
/// <summary>
|
|
/// A value indicating whether we should detect the current language by a customer region (browser settings)
|
|
/// </summary>
|
|
public bool AutomaticallyDetectLanguage { get; set; }
|
|
|
|
/// <summary>
|
|
/// A value indicating whether to load all LocaleStringResource records on application startup
|
|
/// </summary>
|
|
public bool LoadAllLocaleRecordsOnStartup { get; set; }
|
|
|
|
/// <summary>
|
|
/// A value indicating whether to load all LocalizedProperty records on application startup
|
|
/// </summary>
|
|
public bool LoadAllLocalizedPropertiesOnStartup { get; set; }
|
|
|
|
/// <summary>
|
|
/// A value indicating whether to load all search engine friendly names (slugs) on application startup
|
|
/// </summary>
|
|
public bool LoadAllUrlRecordsOnStartup { get; set; }
|
|
|
|
/// <summary>
|
|
/// A value indicating whether to we should ignore RTL language property for admin area.
|
|
/// It's useful for store owners with RTL languages for public store but preferring LTR for admin area
|
|
/// </summary>
|
|
public bool IgnoreRtlPropertyForAdminArea { get; set; }
|
|
} |