Skip to content

Latest commit

 

History

History
164 lines (96 loc) · 3.35 KB

generated.md

File metadata and controls

164 lines (96 loc) · 3.35 KB

Rhythm.Globalization.Umbraco

TranslationHelper NodeAndCulture

TranslationHelper

Helps with translations.

#cctor

Static constructor.

GetDictionaryTranslation(key, culture)

Returns a dictionary translation for the specified dictionary key in the specified culture.

Name Description
key System.String
The Umbraco dictionary key.
culture System.String
The culture.

Returns

The translation.

GetDictionaryTranslation(key)

Returns a dictionary translation for the specified dictionary key.

Name Description
key System.String
The Umbraco dictionary key.

Returns

The translation.

GetTranslationFolderForNode(page)

Gets the translation folder for the specified page.

Name Description
page Umbraco.Core.Models.IPublishedContent
The page to get the translation folder for.

Returns

The translation folder, or null.

GetTranslationNode(page, culture)

Gets the node containing the translations.

Name Description
page Umbraco.Core.Models.IPublishedContent
The node to get the translation node for.
culture System.String
The culture (e.g., "es-mx") to get the translation node for.

Returns

The node containing the translations.

GetTranslationNode(page)

Gets the node containing the translations.

Name Description
page Umbraco.Core.Models.IPublishedContent
The node to get the translation node for.

Returns

The node containing the translations.

GetTranslationNodeFromFolder(translationFolder, culture)

Gets the translation node under the specified translation folder.

Name Description
translationFolder Umbraco.Core.Models.IPublishedContent
The translation folder.
culture System.String
The culture to find the translation node for.

Returns

The translation node, or null.

TranslateFolderInvalidator

Invalidates the cache of translation folders.

TranslationFolderNodeIds

The ID's of the translation folders by the parent node.

TranslationNodeIds

The ID's of the translations nodes by the parent node and culture.

NodeAndCulture

Stores a node ID and a culture code.

Remarks

Equality is checked by comparing the node ID and culture code of two instances of this class.

Constructor(nodeId, culture)

Primary constructor.

Name Description
nodeId System.Int32
The node ID.
culture System.String
The culture code.

Culture

The culture code.

Equals(other)

Compares this instance against another for equality.

Name Description
other Rhythm.Globalization.Umbraco.Types.NodeAndCulture
The other instance.

Returns

True, if the instances are equal; otherwise, false.

Equals(other)

Compares this instance against another for equality.

Name Description
other System.Object
The other instance.

Returns

True, if the instances are equal; otherwise, false.

GetHashCode

Returns a hash code for this instance.

Returns

The hash code.

NodeId

The node ID.