Discussion board where members can learn more about Integration, Extensions and API’s for Qlik Sense.
Is it possible to access the translation keys inside the template without using the q-title-translation attribute?
Something like this:
<span>
{{example.of.translation.key}}
</span>
Found a way to achieve this:
define( [
'qlik',
'jquery',
'text!./template.html',
'translator'
],
function ( qlik, $, template, translator ) {
'use strict';
return {
support: {
snapshot: false,
export: false,
exportData: false
},
template: template,
paint: function ($element, layout) {
return qlik.Promise.resolve();
},
controller: ['$scope', function($scope){
var translatedSheet = translator.get("Common.Sheet");
console.log("translatedSheet", translatedSheet);
}]
};
});
Found a way to achieve this:
define( [
'qlik',
'jquery',
'text!./template.html',
'translator'
],
function ( qlik, $, template, translator ) {
'use strict';
return {
support: {
snapshot: false,
export: false,
exportData: false
},
template: template,
paint: function ($element, layout) {
return qlik.Promise.resolve();
},
controller: ['$scope', function($scope){
var translatedSheet = translator.get("Common.Sheet");
console.log("translatedSheet", translatedSheet);
}]
};
});
is it possible to translate the propertie labels as well?