Configuration
You don't have to include a Static Typoscript Template. Everything loads automatically in backend context
The extension is usable without any custom configuration. If you want to use an auto-translation-provider, you have to enter your own API-Key and flag the provider active.
Example Azure Cloud
To use azure as translation-provider, enter this:
module.tx_datamintslocallangbuilder_tools_datamintslocallangbuildertranslate {
settings {
providers {
azure {
active = 1
key = YOUR_KEY
}
}
}
}
Note
To get your API-Key follow this Link: https://docs.microsoft.com/en-us/azure/cognitive-services/Translator/translator-how-to-signup . It's a bit complicated at first, but it's worth it. Insert this API-Key in the "YOUR_KEY" Field in the typoscript configuration example above.
Example DeepL
To use DeepL as translation-provider, enter this:
module.tx_datamintslocallangbuilder_tools_datamintslocallangbuildertranslate {
settings {
providers {
deepl {
active = 1
key = YOUR_KEY
}
}
}
}
Note
DeepL is probably the easiest provider to set up. Simply register and call https://www.deepl.com/pro-account/plan . You need the "Authentificationkey". Insert this API-Key in the "YOUR_KEY" Field in the typoscript configuration example above.
Example Google
To use Google as translation-provider, enter this:
module.tx_datamintslocallangbuilder_tools_datamintslocallangbuildertranslate {
settings {
providers {
google {
active = 1
key = YOUR_KEY
}
}
}
}
Note
Get your API by calling: https://console.cloud.google.com/apis/api/translate.googleapis.com/credentials . Login to the Google Console and add a API-Key. Insert this API-Key in the "YOUR_KEY" Field in the typoscript configuration example above.
TypoScript Reference
azure.url
-
- Datatype
-
string
- Default
There should be no need to modify this value. It's the api-host for azure.
azure.version
-
- Datatype
-
string
- Default
-
3.0
API-Version number for azure.
azure.key
-
- Datatype
-
string
- Default
-
<empty>
Your API-Key for Azure.
azure.area
-
- Datatype
-
string
- Default
-
global
Your defined area, defined in the azure console.
azure.active
-
- Datatype
-
int
- Default
Flag, if this provider is active. Keep in mind to select not more than one provider.
deepl.url
-
- Datatype
-
string
- Default
There should be no need to modify this value. It's the api-host for Deepl.
deepl.version
-
- Datatype
-
string
Not in use by DeepL
deepl.key
-
- Datatype
-
string
- Default
-
<empty>
Your API-Key for DeepL.
deepl.area
-
- Datatype
-
string
Not in use by DeepL
deepl.active
-
- Datatype
-
int
- Default
Flag, if this provider is active. Keep in mind to select not more than one provider.
google.url
-
- Datatype
-
string
- Default
There should be no need to modify this value. It's the api-host for Google.
google.version
-
- Datatype
-
string
- Default
-
v2
API-Version number for azure
google.key
-
- Datatype
-
string
- Default
-
<empty>
Your API-Key for Google.
google.area
-
- Datatype
-
string
Not in use by Google.
google.active
-
- Datatype
-
int
- Default
Flag, if this provider is active. Keep in mind to select not more than one provider.
excludedExtensions
-
- Datatype
-
string
- Default
-
datamints_locallang_builder
Comma-separated list of extension keys to be excluded from being displayed.