75 lines
2.7 KiB
C#
75 lines
2.7 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Microsoft.Extensions.Localization
|
|
{
|
|
public static class StringLocalizerExtensions
|
|
{
|
|
/// <summary>
|
|
/// Gets the string resource with the given name.
|
|
/// </summary>
|
|
/// <param name="stringLocalizer">The <see cref="IStringLocalizer"/>.</param>
|
|
/// <param name="name">The name of the string resource.</param>
|
|
/// <returns>The string resource as a <see cref="LocalizedString"/>.</returns>
|
|
public static LocalizedString GetString(
|
|
this IStringLocalizer stringLocalizer,
|
|
string name)
|
|
{
|
|
if (stringLocalizer == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(stringLocalizer));
|
|
}
|
|
|
|
if (name == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(name));
|
|
}
|
|
|
|
return stringLocalizer[name];
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the string resource with the given name and formatted with the supplied arguments.
|
|
/// </summary>
|
|
/// <param name="stringLocalizer">The <see cref="IStringLocalizer"/>.</param>
|
|
/// <param name="name">The name of the string resource.</param>
|
|
/// <param name="arguments">The values to format the string with.</param>
|
|
/// <returns>The formatted string resource as a <see cref="LocalizedString"/>.</returns>
|
|
public static LocalizedString GetString(
|
|
this IStringLocalizer stringLocalizer,
|
|
string name,
|
|
params object[] arguments)
|
|
{
|
|
if (stringLocalizer == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(stringLocalizer));
|
|
}
|
|
|
|
if (name == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(name));
|
|
}
|
|
|
|
return stringLocalizer[name, arguments];
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all string resources including those for ancestor cultures.
|
|
/// </summary>
|
|
/// <param name="stringLocalizer">The <see cref="IStringLocalizer"/>.</param>
|
|
/// <returns>The string resources.</returns>
|
|
public static IEnumerable<LocalizedString> GetAllStrings(this IStringLocalizer stringLocalizer)
|
|
{
|
|
if (stringLocalizer == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(stringLocalizer));
|
|
}
|
|
|
|
return stringLocalizer.GetAllStrings(includeAncestorCultures: true);
|
|
}
|
|
}
|
|
}
|