Send for translation

NEW TO SITEFINITY?

The following code sample demonstrates how you can send programmatically items for translation. The sample send all News items for translation from English to German and French:

using System;
using System.Globalization;
using System.Linq;
using Telerik.Sitefinity.GenericContent.Model;
using Telerik.Sitefinity.Modules.News;
using Telerik.Sitefinity.Services;
using Telerik.Sitefinity.Translations;
namespace Telerik.Sitefinity.Documentation.CodeSnippets.DevGuide.SitefinityEssentials.Modules
{
public partial class TranslationsSnippets
{
public static void SendAllNewsForTranslation()
{
// Creates a translation project selecting the first connector
var projectInfo = new ProjectInfo(
"Translating News", // Title
DateTime.UtcNow, // Start date
DateTime.UtcNow.AddDays(5), // Due date
"Translating all news from EN to FR and DE", // Description
TranslationService.Current.Connectors.First().Name, // connector name
string.Empty, // PO reference
string.Empty); // the actual language of the source
// Get a list of news items for translation
var newsManager = NewsManager.GetManager();
var newsItemsToTranslate = newsManager.GetNewsItems().Where(i => i.Status == ContentLifecycleStatus.Master);
// Send the items to the translation agency
TranslationService.Current.SendForTranslation(
newsItemsToTranslate,
SystemManager.CurrentContext.AppSettings.GetCultureByName("en"),
new CultureInfo[] { SystemManager.CurrentContext.AppSettings.GetCultureByName("fr"), SystemManager.CurrentContext.AppSettings.GetCultureByName("de") },
projectInfo);
}
}
}

Want to learn more?

Increase your Sitefinity skills by signing up for our free trainings. Get Sitefinity-certified at Progress Education Community to boost your credentials.

Get started with Integration Hub | Sitefinity Cloud | Sitefinity SaaS

This free lesson teaches administrators, marketers, and other business professionals how to use the Integration hub service to create automated workflows between Sitefinity and other business systems.

Web Security for Sitefinity Administrators

This free lesson teaches administrators the basics about protecting yor Sitefinity instance and its sites from external threats. Configure HTTPS, SSL, allow lists for trusted sites, and cookie security, among others.

Foundations of Sitefinity ASP.NET Core Development

The free on-demand video course teaches developers how to use Sitefinity .NET Core and leverage its decoupled architecture and new way of coding against the platform.

Was this article helpful?