├── C#-Code-Samples ├── BreakSentence.cs ├── Detect.cs ├── DictionaryExample.cs ├── DictionaryLookup.cs ├── LICENSE.txt ├── Language.cs ├── Readme.md ├── Translate.cs └── Transliterate.cs ├── GO-Code-Samples ├── BreakSentence.go ├── Detect.go ├── DictionaryExamples.go ├── DictionaryLookup.go ├── LICENSE.txt ├── Languages.go ├── README.md ├── Translate.go └── Transliterate.go ├── Java-Code-Samples ├── .DS_Store ├── BreakSentence │ ├── .DS_Store │ ├── .gradle │ │ ├── 7.1.1 │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileHashes │ │ │ │ └── fileHashes.lock │ │ │ └── gc.properties │ │ ├── checksums │ │ │ └── checksums.lock │ │ └── vcs-1 │ │ │ └── gc.properties │ ├── build.gradle.kts │ └── src │ │ ├── .DS_Store │ │ └── main │ │ ├── .DS_Store │ │ └── java │ │ └── BreakSentence.java ├── Detect │ ├── .gradle │ │ ├── 7.1.1 │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileHashes │ │ │ │ └── fileHashes.lock │ │ │ └── gc.properties │ │ ├── checksums │ │ │ └── checksums.lock │ │ └── vcs-1 │ │ │ └── gc.properties │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── Detect.java ├── Dictionary │ ├── .gradle │ │ ├── 7.1.1 │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileHashes │ │ │ │ └── fileHashes.lock │ │ │ └── gc.properties │ │ ├── checksums │ │ │ └── checksums.lock │ │ └── vcs-1 │ │ │ └── gc.properties │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── AltTranslation.java ├── GetLanguages │ ├── .gradle │ │ ├── 7.1.1 │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileHashes │ │ │ │ └── fileHashes.lock │ │ │ └── gc.properties │ │ ├── checksums │ │ │ └── checksums.lock │ │ └── vcs-1 │ │ │ └── gc.properties │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── GetLanguages.java ├── LICENSE.txt ├── README.md ├── Translate │ ├── .gradle │ │ ├── 7.1.1 │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileHashes │ │ │ │ └── fileHashes.lock │ │ │ └── gc.properties │ │ ├── checksums │ │ │ └── checksums.lock │ │ └── vcs-1 │ │ │ └── gc.properties │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── java │ │ └── Translate.java └── Transliterate │ ├── .gradle │ ├── 7.1.1 │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ ├── fileHashes │ │ │ └── fileHashes.lock │ │ └── gc.properties │ ├── checksums │ │ └── checksums.lock │ └── vcs-1 │ │ └── gc.properties │ ├── build.gradle.kts │ └── src │ └── main │ └── java │ └── Transliterate.java ├── NodeJS-Code-Samples ├── BreakSentence.js ├── Detect.js ├── DictionaryExamples.js ├── DictionaryLookup.js ├── LICENSE.txt ├── Languages.js ├── README.md ├── Translate.js └── Transliterate.js ├── Python-Code-Samples ├── BreakSentence.py ├── Detect.py ├── DictionaryExample.py ├── DictionaryLookup.py ├── LICENSE.txt ├── Languages.py ├── README.md ├── Translate.py └── Transliterate.py ├── Text-Translation-AAD ├── AADToken.cs ├── BreakSentence.cs ├── Detect.cs ├── DictionaryExamples.cs ├── DictionaryLookup.cs ├── LICENSE.txt ├── Languages.cs ├── README.md ├── Translate.cs └── Transliterate.cs └── Text-Translation-AzureToken ├── AzureAuthToken.cs ├── BreakSentence.cs ├── Detect.cs ├── DictionaryExamples.cs ├── DictionaryLookup.cs ├── LICENSE.txt ├── Languages.cs ├── Readme.md ├── Translate.cs └── Transliterate.cs /C#-Code-Samples/BreakSentence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/C#-Code-Samples/BreakSentence.cs -------------------------------------------------------------------------------- /C#-Code-Samples/Detect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/C#-Code-Samples/Detect.cs -------------------------------------------------------------------------------- /C#-Code-Samples/DictionaryExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/C#-Code-Samples/DictionaryExample.cs -------------------------------------------------------------------------------- /C#-Code-Samples/DictionaryLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/C#-Code-Samples/DictionaryLookup.cs -------------------------------------------------------------------------------- /C#-Code-Samples/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/C#-Code-Samples/LICENSE.txt -------------------------------------------------------------------------------- /C#-Code-Samples/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/C#-Code-Samples/Language.cs -------------------------------------------------------------------------------- /C#-Code-Samples/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/C#-Code-Samples/Readme.md -------------------------------------------------------------------------------- /C#-Code-Samples/Translate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/C#-Code-Samples/Translate.cs -------------------------------------------------------------------------------- /C#-Code-Samples/Transliterate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/C#-Code-Samples/Transliterate.cs -------------------------------------------------------------------------------- /GO-Code-Samples/BreakSentence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/GO-Code-Samples/BreakSentence.go -------------------------------------------------------------------------------- /GO-Code-Samples/Detect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/GO-Code-Samples/Detect.go -------------------------------------------------------------------------------- /GO-Code-Samples/DictionaryExamples.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/GO-Code-Samples/DictionaryExamples.go -------------------------------------------------------------------------------- /GO-Code-Samples/DictionaryLookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/GO-Code-Samples/DictionaryLookup.go -------------------------------------------------------------------------------- /GO-Code-Samples/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/GO-Code-Samples/LICENSE.txt -------------------------------------------------------------------------------- /GO-Code-Samples/Languages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/GO-Code-Samples/Languages.go -------------------------------------------------------------------------------- /GO-Code-Samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/GO-Code-Samples/README.md -------------------------------------------------------------------------------- /GO-Code-Samples/Translate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/GO-Code-Samples/Translate.go -------------------------------------------------------------------------------- /GO-Code-Samples/Transliterate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/GO-Code-Samples/Transliterate.go -------------------------------------------------------------------------------- /Java-Code-Samples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/.DS_Store -------------------------------------------------------------------------------- /Java-Code-Samples/BreakSentence/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/BreakSentence/.DS_Store -------------------------------------------------------------------------------- /Java-Code-Samples/BreakSentence/.gradle/7.1.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/BreakSentence/.gradle/7.1.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/BreakSentence/.gradle/7.1.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Java-Code-Samples/BreakSentence/.gradle/7.1.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/BreakSentence/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/BreakSentence/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /Java-Code-Samples/BreakSentence/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/BreakSentence/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/BreakSentence/build.gradle.kts -------------------------------------------------------------------------------- /Java-Code-Samples/BreakSentence/src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/BreakSentence/src/.DS_Store -------------------------------------------------------------------------------- /Java-Code-Samples/BreakSentence/src/main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/BreakSentence/src/main/.DS_Store -------------------------------------------------------------------------------- /Java-Code-Samples/BreakSentence/src/main/java/BreakSentence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/BreakSentence/src/main/java/BreakSentence.java -------------------------------------------------------------------------------- /Java-Code-Samples/Detect/.gradle/7.1.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/Detect/.gradle/7.1.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/Detect/.gradle/7.1.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Java-Code-Samples/Detect/.gradle/7.1.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/Detect/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/Detect/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /Java-Code-Samples/Detect/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/Detect/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/Detect/build.gradle.kts -------------------------------------------------------------------------------- /Java-Code-Samples/Detect/src/main/java/Detect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/Detect/src/main/java/Detect.java -------------------------------------------------------------------------------- /Java-Code-Samples/Dictionary/.gradle/7.1.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/Dictionary/.gradle/7.1.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/Dictionary/.gradle/7.1.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Java-Code-Samples/Dictionary/.gradle/7.1.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/Dictionary/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/Dictionary/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /Java-Code-Samples/Dictionary/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/Dictionary/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/Dictionary/build.gradle.kts -------------------------------------------------------------------------------- /Java-Code-Samples/Dictionary/src/main/java/AltTranslation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/Dictionary/src/main/java/AltTranslation.java -------------------------------------------------------------------------------- /Java-Code-Samples/GetLanguages/.gradle/7.1.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/GetLanguages/.gradle/7.1.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/GetLanguages/.gradle/7.1.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Java-Code-Samples/GetLanguages/.gradle/7.1.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/GetLanguages/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/GetLanguages/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /Java-Code-Samples/GetLanguages/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/GetLanguages/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/GetLanguages/build.gradle.kts -------------------------------------------------------------------------------- /Java-Code-Samples/GetLanguages/src/main/java/GetLanguages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/GetLanguages/src/main/java/GetLanguages.java -------------------------------------------------------------------------------- /Java-Code-Samples/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/LICENSE.txt -------------------------------------------------------------------------------- /Java-Code-Samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/README.md -------------------------------------------------------------------------------- /Java-Code-Samples/Translate/.gradle/7.1.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/Translate/.gradle/7.1.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/Translate/.gradle/7.1.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Java-Code-Samples/Translate/.gradle/7.1.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/Translate/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/Translate/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /Java-Code-Samples/Translate/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/Translate/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/Translate/build.gradle.kts -------------------------------------------------------------------------------- /Java-Code-Samples/Translate/src/main/java/Translate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/Translate/src/main/java/Translate.java -------------------------------------------------------------------------------- /Java-Code-Samples/Transliterate/.gradle/7.1.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/Transliterate/.gradle/7.1.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/Transliterate/.gradle/7.1.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /Java-Code-Samples/Transliterate/.gradle/7.1.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/Transliterate/.gradle/checksums/checksums.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/Transliterate/.gradle/checksums/checksums.lock -------------------------------------------------------------------------------- /Java-Code-Samples/Transliterate/.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Java-Code-Samples/Transliterate/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/Transliterate/build.gradle.kts -------------------------------------------------------------------------------- /Java-Code-Samples/Transliterate/src/main/java/Transliterate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Java-Code-Samples/Transliterate/src/main/java/Transliterate.java -------------------------------------------------------------------------------- /NodeJS-Code-Samples/BreakSentence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/NodeJS-Code-Samples/BreakSentence.js -------------------------------------------------------------------------------- /NodeJS-Code-Samples/Detect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/NodeJS-Code-Samples/Detect.js -------------------------------------------------------------------------------- /NodeJS-Code-Samples/DictionaryExamples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/NodeJS-Code-Samples/DictionaryExamples.js -------------------------------------------------------------------------------- /NodeJS-Code-Samples/DictionaryLookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/NodeJS-Code-Samples/DictionaryLookup.js -------------------------------------------------------------------------------- /NodeJS-Code-Samples/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/NodeJS-Code-Samples/LICENSE.txt -------------------------------------------------------------------------------- /NodeJS-Code-Samples/Languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/NodeJS-Code-Samples/Languages.js -------------------------------------------------------------------------------- /NodeJS-Code-Samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/NodeJS-Code-Samples/README.md -------------------------------------------------------------------------------- /NodeJS-Code-Samples/Translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/NodeJS-Code-Samples/Translate.js -------------------------------------------------------------------------------- /NodeJS-Code-Samples/Transliterate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/NodeJS-Code-Samples/Transliterate.js -------------------------------------------------------------------------------- /Python-Code-Samples/BreakSentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Python-Code-Samples/BreakSentence.py -------------------------------------------------------------------------------- /Python-Code-Samples/Detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Python-Code-Samples/Detect.py -------------------------------------------------------------------------------- /Python-Code-Samples/DictionaryExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Python-Code-Samples/DictionaryExample.py -------------------------------------------------------------------------------- /Python-Code-Samples/DictionaryLookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Python-Code-Samples/DictionaryLookup.py -------------------------------------------------------------------------------- /Python-Code-Samples/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Python-Code-Samples/LICENSE.txt -------------------------------------------------------------------------------- /Python-Code-Samples/Languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Python-Code-Samples/Languages.py -------------------------------------------------------------------------------- /Python-Code-Samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Python-Code-Samples/README.md -------------------------------------------------------------------------------- /Python-Code-Samples/Translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Python-Code-Samples/Translate.py -------------------------------------------------------------------------------- /Python-Code-Samples/Transliterate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Python-Code-Samples/Transliterate.py -------------------------------------------------------------------------------- /Text-Translation-AAD/AADToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AAD/AADToken.cs -------------------------------------------------------------------------------- /Text-Translation-AAD/BreakSentence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AAD/BreakSentence.cs -------------------------------------------------------------------------------- /Text-Translation-AAD/Detect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AAD/Detect.cs -------------------------------------------------------------------------------- /Text-Translation-AAD/DictionaryExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AAD/DictionaryExamples.cs -------------------------------------------------------------------------------- /Text-Translation-AAD/DictionaryLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AAD/DictionaryLookup.cs -------------------------------------------------------------------------------- /Text-Translation-AAD/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AAD/LICENSE.txt -------------------------------------------------------------------------------- /Text-Translation-AAD/Languages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AAD/Languages.cs -------------------------------------------------------------------------------- /Text-Translation-AAD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AAD/README.md -------------------------------------------------------------------------------- /Text-Translation-AAD/Translate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AAD/Translate.cs -------------------------------------------------------------------------------- /Text-Translation-AAD/Transliterate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AAD/Transliterate.cs -------------------------------------------------------------------------------- /Text-Translation-AzureToken/AzureAuthToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AzureToken/AzureAuthToken.cs -------------------------------------------------------------------------------- /Text-Translation-AzureToken/BreakSentence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AzureToken/BreakSentence.cs -------------------------------------------------------------------------------- /Text-Translation-AzureToken/Detect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AzureToken/Detect.cs -------------------------------------------------------------------------------- /Text-Translation-AzureToken/DictionaryExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AzureToken/DictionaryExamples.cs -------------------------------------------------------------------------------- /Text-Translation-AzureToken/DictionaryLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AzureToken/DictionaryLookup.cs -------------------------------------------------------------------------------- /Text-Translation-AzureToken/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AzureToken/LICENSE.txt -------------------------------------------------------------------------------- /Text-Translation-AzureToken/Languages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AzureToken/Languages.cs -------------------------------------------------------------------------------- /Text-Translation-AzureToken/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AzureToken/Readme.md -------------------------------------------------------------------------------- /Text-Translation-AzureToken/Translate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AzureToken/Translate.cs -------------------------------------------------------------------------------- /Text-Translation-AzureToken/Transliterate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftTranslator/Text-Translation-Code-Samples/HEAD/Text-Translation-AzureToken/Transliterate.cs --------------------------------------------------------------------------------