Build path to translation source, out of a server path replacement pattern.
stdClass $project: Project object containing data to be inserted in the template.
string $template: String containing placeholders. Available placeholders:
string String with replaced placeholders.
function locale_translation_build_server_pattern($project, $template) {
$variables = array(
'%project' => $project->name,
'%version' => $project->version,
'%core' => $project->core,
'%language' => isset($project->langcode) ? $project->langcode : '%language',
);
return strtr($template, $variables);
}