TransifexRunnerAliases.

TransifexPush(ICakeContext) Method

Summary

This command pushes all local files that have been added to Transifex to the remote server. All new translations are merged with existing ones and if a language doesn't exist then it is created.
Assembly
Cake.Transifex.dll
Namespace
Cake.Transifex
Containing Type
TransifexRunnerAliases

Syntax

public static void TransifexPush(this ICakeContext context)

Examples

Run 'tx push'.

Cake task:

Task("Transifex-Push")
    .Does(() =>
{
    TransifexPush();
};

Attributes

Type Description
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.

Return Value

Type Description
void