added jitsi api + improvements
This commit is contained in:
@@ -71,8 +71,11 @@ export class I18nService {
|
||||
if(!from) {
|
||||
return key;
|
||||
} else if(from[key]) {
|
||||
if(from[key]["."]) {
|
||||
return this.insertArguments(from[key]["."], args);
|
||||
if(typeof from[key] === 'object') {
|
||||
if(from[key]["."]) {
|
||||
return this.insertArguments(from[key]["."], args);
|
||||
}
|
||||
return key;
|
||||
}
|
||||
return this.insertArguments(from[key], args);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user