system.util.getAvailableTerms
This function is used in Python Scripting.
Description
Returns a collection of available terms defined in the translation system.
Client Permission Restrictions
This scripting function has no Client Permission restrictions.
Syntax
system.util.getAvailableTerms()
Parameters
None
Returns
Collection - a collection of all of the terms available from the translation manager.
Scope
Client
Code Examples
Example #1
# This code will print out a list of all of the available terms to the console.
collection = system.util.getAvailableTerms()
for term in collection:
print term