Index: background.js |
=================================================================== |
--- a/background.js |
+++ b/background.js |
@@ -91,7 +91,12 @@ |
}, |
get appLocale() |
{ |
- return parent.ext.i18n.getMessage("@@ui_locale").replace(/_/g, "-"); |
+ return parent.ext.i18n.locale.replace(/_/g, "-"); |
+ } |
+ get readingDirection() |
+ { |
+ reuturn bidiDir = /^(ar|fa|he|ug|ur)(-|$)/.test(this.appLocale) ? |
Thomas Greiner
2017/08/29 08:51:17
Typo: Replace "reuturn" with "return"
Thomas Greiner
2017/08/29 08:51:17
Suggestion: We're not using the values in the capt
Oleksandr
2017/08/29 11:26:29
Rebase artifact. There was more than just this too
|
+ "rtl" : "ltr"; |
} |
} |
}; |