Метод | Описание | |
---|---|---|
Format ( this culture, string text ) : string |
@Alias Translates the given text applying string.Format(text, arguments) to the current culture language. The text and argument values will be HTML Encoded when used in ASP.NET MVC
|
|
FormatHtml ( this culture, string html ) : System.Web.Mvc.MvcHtmlString |
@Alias Translates the given html applying string.Format(html, arguments.Select(a => HttpUtility.HtmlEncode(a))) to the current culture language. The html will be kept as it is, while arguments will be automatically HTML Encoded
|
|
FormatHtmlPlural ( this culture, string singularHTML, string pluralHTML, int count ) : System.Web.Mvc.MvcHtmlString |
@Alias Translates the given singular or plural HTML applying string.Format(html, arguments.Select(a => HttpUtility.HtmlEncode(a))) to the current culture language. The singular/plural HTML will be kept as it is, while arguments will be automatically HTML Encoded
|
|
FormatPlural ( this culture, string singular, string plural, int count ) : string |
@Alias Translates the given singular or plural text applying string.Format(text, arguments) to the current culture language. The singular/plural text and argument values will be HTML Encoded when used in ASP.NET MVC
|
|
FormatRaw ( this culture, string html ) : System.Web.Mvc.MvcHtmlString |
@Alias Translates the given html applying string.Format(html, htmlArguments) to the current culture language. For each argument the escape func will be called before applying the format
|
|
FormatRaw ( this culture, string html, object>.Func |
@Alias Translates the given html applying string.Format(html, arguments) to the current culture language. For each argument the escape func will be called before applying the format
|
|
FormatRawPlural ( this culture, string singularHTML, string pluralHTML, int count ) : System.Web.Mvc.MvcHtmlString |
@Alias Translates the given singular or plural HTML applying string.Format(html, arguments.Select(a => escapeArgumentFunc(a))) to the current culture language. For each argument the escape func will be called before applying the format
|
|
FormatRawPlural ( this culture, string singular, string plural, int count, string>.Func |
@Alias Translates the given singular or plural text/html applying string.Format(count == 1 ? singular : plural, arguments.Select(a => escapeArgumentFunc(a))) to the current culture language. For each argument the escape func will be called before applying the format
|
|
GetHtml ( this culture, string html ) : System.Web.Mvc.MvcHtmlString |
@Alias Translates the given html applying string.Format(html, arguments.Select(a => HttpUtility.HtmlEncode(a))) to the current culture language. The html will be kept as it is, while arguments will be automatically HTML Encoded
|
|
GetPluralHtml ( this culture, string singularHTML, string pluralHTML, int count ) : System.Web.Mvc.MvcHtmlString |
@Alias Translates the given singular or plural HTML applying string.Format(html, arguments.Select(a => HttpUtility.HtmlEncode(a))) to the current culture language. The singular/plural HTML will be kept as it is, while arguments will be automatically HTML Encoded
|
|
GetPluralRaw ( this culture, string singularHTML, string pluralHTML, int count ) : System.Web.Mvc.MvcHtmlString |
@Alias Translates the given singular or plural HTML applying string.Format(html, arguments.Select(a => escapeArgumentFunc(a))) to the current culture language. For each argument the escape func will be called before applying the format
|
|
GetPluralRaw ( this culture, string singular, string plural, int count, string>.Func |
@Alias Translates the given singular or plural text/html applying string.Format(count == 1 ? singular : plural, arguments.Select(a => escapeArgumentFunc(a))) to the current culture language. For each argument the escape func will be called before applying the format
|
|
GetPluralString ( this culture, string singular, string plural, int count ) : string |
@Alias Translates the given singular or plural text applying string.Format(text, arguments) to the current culture language. The singular/plural text and argument values will be HTML Encoded when used in ASP.NET MVC
|
|
GetRaw ( this culture, string html ) : System.Web.Mvc.MvcHtmlString |
@Alias Translates the given html applying string.Format(html, htmlArguments) to the current culture language. Warning! Neither the html nor the htmlArguments will be encoded whatsoever
|
|
GetRaw ( this culture, string html, object>.Func |
@Alias Translates the given html applying string.Format(html, arguments.Select(a => escapeArgumentFunc(a))) to the current culture language. For each argument the escape func will be called before applying the format
|
|
GetString ( this culture, string text ) : string |
@Alias Translates the given text applying string.Format(text, arguments) to the current culture language. The text and argument values will be HTML Encoded when used in ASP.NET MVC
|
|
_ ( this culture, string text ) : string |
@Alias Translates the given text applying string.Format(text, arguments) to the current culture language. The text and argument values will be HTML Encoded when used in ASP.NET MVC
|
|
__ ( this culture, string html ) : System.Web.Mvc.MvcHtmlString |
@Alias Translates the given html applying string.Format(html, arguments.Select(a => HttpUtility.HtmlEncode(a))) to the current culture language. The html will be kept as it is, while arguments will be automatically HTML Encoded
|
|
___ ( this culture, string html ) : System.Web.Mvc.MvcHtmlString |
@Alias Translates the given html applying string.Format(html, htmlArguments) to the current culture language. Warning! Neither the html nor the htmlArguments will be encoded whatsoever
|
|
___ ( this culture, string html, string>.Func |
@Alias Translates the given html applying string.Format(html, arguments.Select(a => escapeArgumentFunc(a))) to the current culture language. For each argument the escape func will be called before applying the format
|
|
___q ( this culture, string html ) : System.Web.Mvc.MvcHtmlString |
Quotes the text as the xgettext cannot correctly extract values from attributes Translates the given html applying '"'+HttpUtility.HtmlAttributeEncode(string.Format(html, htmlArguments))+'"' to the current culture language. Warning! Neither the html nor the htmlArguments will be encoded whatsoever Usage: <div title=@___q("< class='tip'>There are {0} {1} in cart.</div>", 3, "<b>Items</b>")>... -- Note the missing quotes!
|
|
___s ( this culture, string singularHTML, string pluralHTML, int count ) : System.Web.Mvc.MvcHtmlString |
@Alias Translates the given singular or plural HTML applying string.Format(html, arguments) to the current culture language. Warning! Neither the html nor the htmlArguments will be encoded whatsoever
|
|
___s ( this culture, string singularHTML, string pluralHTML, int count, string>.Func |
@Alias Translates the given singular or plural text/html applying string.Format(count == 1 ? singular : plural, arguments.Select(a => escapeArgumentFunc(a))) to the current culture language. For each argument the escape func will be called before applying the format
|
|
__q ( this culture, string html ) : System.Web.Mvc.MvcHtmlString |
Quotes the text as the xgettext cannot correctly extract values from attributes Translates the given html applying '"'+HttpUtility.HtmlAttributeEncode(string.Format(html, arguments.Select(a => HttpUtility.HtmlEncode(a))))+'"' to the current culture language. The html will be kept as it is, while arguments will be automatically HTML Encoded Usage: <input type="submit" value=@__q("Save") /> -- Note the missing quotes!
|
|
__s ( this culture, string singularHTML, string pluralHTML, int count ) : System.Web.Mvc.MvcHtmlString |
@Alias Translates the given singular or plural HTML applying string.Format(html, arguments.Select(a => HttpUtility.HtmlEncode(a))) to the current culture language. The singular/plural HTML will be kept as it is, while arguments will be automatically HTML Encoded
|
|
_s ( this culture, string singular, string plural, int count ) : string |
@Alias Translates the given singular or plural text applying string.Format(text, arguments) to the current culture language. The singular/plural text and argument values will be HTML Encoded when used in ASP.NET MVC
|
public static Format ( this culture, string text ) : string | ||
culture | this | The culture being extended |
text | string | The text to be translated |
Результат | string |
public static FormatHtml ( this culture, string html ) : System.Web.Mvc.MvcHtmlString | ||
culture | this | The culture being extended |
html | string | The html to be translated |
Результат | System.Web.Mvc.MvcHtmlString |
public static FormatHtmlPlural ( this culture, string singularHTML, string pluralHTML, int count ) : System.Web.Mvc.MvcHtmlString | ||
culture | this | The culture being extended |
singularHTML | string | The HTML to be translated when count is 1 |
pluralHTML | string | The HTML to be translated when count is NOT 1 |
count | int | If count is 1 the singular HTML will be used, otherwise the plural text |
Результат | System.Web.Mvc.MvcHtmlString |
public static FormatPlural ( this culture, string singular, string plural, int count ) : string | ||
culture | this | The culture being extended |
singular | string | The text to be translated when count is 1 |
plural | string | The text to be translated when count is NOT 1 |
count | int | If count is 1 the singular text will be used, otherwise the plural text |
Результат | string |
public static FormatRaw ( this culture, string html ) : System.Web.Mvc.MvcHtmlString | ||
culture | this | The culture being extended |
html | string | The html to be translated |
Результат | System.Web.Mvc.MvcHtmlString |
public static FormatRaw ( this culture, string html, object>.Func | ||
culture | this | The culture being extended |
html | string | The html to be translated |
escapeArgumentFunc | object>.Func | The func to be applied for each argument .i.e. |
Результат | System.Web.Mvc.MvcHtmlString |
public static FormatRawPlural ( this culture, string singularHTML, string pluralHTML, int count ) : System.Web.Mvc.MvcHtmlString | ||
culture | this | The culture being extended |
singularHTML | string | The HTML to be translated when count is 1 |
pluralHTML | string | The HTML to be translated when count is NOT 1 |
count | int | If count is 1 the singular HTML will be used, otherwise the plural HTML |
Результат | System.Web.Mvc.MvcHtmlString |
public static FormatRawPlural ( this culture, string singular, string plural, int count, string>.Func | ||
culture | this | The culture being extended |
singular | string | The text/HTML to be translated when count is 1 |
plural | string | The text/HTML to be translated when count is NOT 1 |
count | int | If count is 1 the singular text/HTML will be used, otherwise the plural text |
escapeArgumentFunc | string>.Func | The func to be applied for each argument .i.e. |
Результат | System.Web.Mvc.MvcHtmlString |
public static GetHtml ( this culture, string html ) : System.Web.Mvc.MvcHtmlString | ||
culture | this | The culture being extended |
html | string | The html to be translated |
Результат | System.Web.Mvc.MvcHtmlString |
public static GetPluralHtml ( this culture, string singularHTML, string pluralHTML, int count ) : System.Web.Mvc.MvcHtmlString | ||
culture | this | The culture being extended |
singularHTML | string | The HTML to be translated when count is 1 |
pluralHTML | string | The HTML to be translated when count is NOT 1 |
count | int | If count is 1 the singular HTML will be used, otherwise the plural text |
Результат | System.Web.Mvc.MvcHtmlString |
public static GetPluralRaw ( this culture, string singularHTML, string pluralHTML, int count ) : System.Web.Mvc.MvcHtmlString | ||
culture | this | The culture being extended |
singularHTML | string | The HTML to be translated when count is 1 |
pluralHTML | string | The HTML to be translated when count is NOT 1 |
count | int | If count is 1 the singular HTML will be used, otherwise the plural HTML |
Результат | System.Web.Mvc.MvcHtmlString |
public static GetPluralRaw ( this culture, string singular, string plural, int count, string>.Func | ||
culture | this | The culture being extended |
singular | string | The text/HTML to be translated when count is 1 |
plural | string | The text/HTML to be translated when count is NOT 1 |
count | int | If count is 1 the singular text/HTML will be used, otherwise the plural text |
escapeArgumentFunc | string>.Func | The func to be applied for each argument .i.e. |
Результат | System.Web.Mvc.MvcHtmlString |
public static GetPluralString ( this culture, string singular, string plural, int count ) : string | ||
culture | this | The culture being extended |
singular | string | The text to be translated when count is 1 |
plural | string | The text to be translated when count is NOT 1 |
count | int | If count is 1 the singular text will be used, otherwise the plural text |
Результат | string |
public static GetRaw ( this culture, string html ) : System.Web.Mvc.MvcHtmlString | ||
culture | this | The culture being extended |
html | string | The html to be translated |
Результат | System.Web.Mvc.MvcHtmlString |
public static GetRaw ( this culture, string html, object>.Func | ||
culture | this | The culture being extended |
html | string | The html to be translated |
escapeArgumentFunc | object>.Func | The func to be applied for each argument .i.e. |
Результат | System.Web.Mvc.MvcHtmlString |
public static GetString ( this culture, string text ) : string | ||
culture | this | The culture being extended |
text | string | The text to be translated |
Результат | string |
public static _ ( this culture, string text ) : string | ||
culture | this | The culture being extended |
text | string | The text to be translated |
Результат | string |
public static __ ( this culture, string html ) : System.Web.Mvc.MvcHtmlString | ||
culture | this | The culture being extended |
html | string | The html to be translated |
Результат | System.Web.Mvc.MvcHtmlString |
public static ___ ( this culture, string html ) : System.Web.Mvc.MvcHtmlString | ||
culture | this | The culture being extended |
html | string | The html to be translated |
Результат | System.Web.Mvc.MvcHtmlString |
public static ___ ( this culture, string html, string>.Func | ||
culture | this | The culture being extended |
html | string | The text to be translated |
escapeArgumentFunc | string>.Func | The func to be applied for each argument .i.e. |
Результат | System.Web.Mvc.MvcHtmlString |
public static ___q ( this culture, string html ) : System.Web.Mvc.MvcHtmlString | ||
culture | this | The culture being extended |
html | string | The html text to be translated |
Результат | System.Web.Mvc.MvcHtmlString |
public static ___s ( this culture, string singularHTML, string pluralHTML, int count ) : System.Web.Mvc.MvcHtmlString | ||
culture | this | The culture being extended |
singularHTML | string | The HTML to be translated when count is 1 |
pluralHTML | string | The HTML to be translated when count is NOT 1 |
count | int | If count is 1 the singular HTML will be used, otherwise the plural HTML |
Результат | System.Web.Mvc.MvcHtmlString |
public static ___s ( this culture, string singularHTML, string pluralHTML, int count, string>.Func | ||
culture | this | The culture being extended |
singularHTML | string | The text/HTML to be translated when count is 1 |
pluralHTML | string | The text/HTML to be translated when count is NOT 1 |
count | int | If count is 1 the singular text/HTML will be used, otherwise the plural text |
escapeArgumentFunc | string>.Func | The func to be applied for each argument .i.e. |
Результат | System.Web.Mvc.MvcHtmlString |
public static __q ( this culture, string html ) : System.Web.Mvc.MvcHtmlString | ||
culture | this | The culture being extended |
html | string | The html text to be translated |
Результат | System.Web.Mvc.MvcHtmlString |
public static __s ( this culture, string singularHTML, string pluralHTML, int count ) : System.Web.Mvc.MvcHtmlString | ||
culture | this | The culture being extended |
singularHTML | string | The HTML to be translated when count is 1 |
pluralHTML | string | The HTML to be translated when count is NOT 1 |
count | int | If count is 1 the singular HTML will be used, otherwise the plural text |
Результат | System.Web.Mvc.MvcHtmlString |
public static _s ( this culture, string singular, string plural, int count ) : string | ||
culture | this | The culture being extended |
singular | string | The text to be translated when count is 1 |
plural | string | The text to be translated when count is NOT 1 |
count | int | If count is 1 the singular text will be used, otherwise the plural text |
Результат | string |