You are here

function lingotek_get_sync_methods in Lingotek Translation 7.3

Same name and namespace in other branches
  1. 6 lingotek.api.inc \lingotek_get_sync_methods()
  2. 7.2 lingotek.api.inc \lingotek_get_sync_methods()
  3. 7.4 lingotek.api.inc \lingotek_get_sync_methods()
  4. 7.5 lingotek.remote.inc \lingotek_get_sync_methods()
  5. 7.6 lingotek.remote.inc \lingotek_get_sync_methods()

File

./lingotek.api.inc, line 477

Code

function lingotek_get_sync_methods() {
  $methods = array();
  $methods[0] = t("Never");

  // Manual
  $methods[1] = t("Always");

  // Automatic
  $methods[100] = t("100%");
  return $methods;
}