EMTranslationResourceRepositoryUpdateResourcePhrase Method
|
Alterian Email Manager 6.2.3 SDK Help File
Update an existing Phrase based on its ResourceID.
Optionally associate existing translations with the new Phrase.
Namespace:
DMLibrary.RepositoryAssembly:
DMLibrary (in DMLibrary.dll) Version: 1.0.6340.17420
Syntaxpublic void UpdateResourcePhrase(
string resourceID,
string oldEnglishText,
string newEnglishText,
bool migrateExistingTranslations
)
Public Sub UpdateResourcePhrase (
resourceID As String,
oldEnglishText As String,
newEnglishText As String,
migrateExistingTranslations As Boolean
)
public:
virtual void UpdateResourcePhrase(
String^ resourceID,
String^ oldEnglishText,
String^ newEnglishText,
bool migrateExistingTranslations
) sealed
abstract UpdateResourcePhrase :
resourceID : string *
oldEnglishText : string *
newEnglishText : string *
migrateExistingTranslations : bool -> unit
override UpdateResourcePhrase :
resourceID : string *
oldEnglishText : string *
newEnglishText : string *
migrateExistingTranslations : bool -> unit
function UpdateResourcePhrase(resourceID, oldEnglishText, newEnglishText, migrateExistingTranslations);
Parameters
- resourceID
- Type: SystemString
Human readable resource ID - oldEnglishText
- Type: SystemString
The English Text phrase that is being replaced. - newEnglishText
- Type: SystemString
the updated English Text phrase. - migrateExistingTranslations
- Type: SystemBoolean
Set to "true" to associate any existing translations for the old phrase with the new phrase.
Implements
IEMTranslationResourceRepositoryUpdateResourcePhrase(String, String, String, Boolean)
See Also