TransifexMode Enum

Summary

Specifies the mode of the translation file to pull.
Namespace
Cake.Transifex
Interfaces
  • IComparable
  • IFormattable
  • IConvertible
Base Types
  • object
  • ValueType
  • Enum
graph BT Type-->Base0["Enum"] Base0-->Base1["ValueType"] Base1-->Base2["object"] Type-.->Interface0["IComparable"] Type-.->Interface1["IFormattable"] Type-.->Interface2["IConvertible"] Type["TransifexMode"] class Type type-node

Syntax

public enum TransifexMode

Fields

Name Constant Value Summary
Developer 1
Pull down all translations, whether they have been translated or not.
static
OnlyReviewed 4
Pull down only strings that have been translated and reviewed.
static
OnlyTranslated 3
Pull down only strings that have been translated.
static
Reviewed 0
Only pull down reviewed translations.
static
SourceAsTranslation 5
Pull down both translated and untranslated strings (untranslated strings will be set to the value of the source).
static
Translator 2
Pull down all completed translations, whether they have been reviewed or not.
static
GitHub