microboard-ui-temp 0.1.22 → 0.1.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +10 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -446481,10 +446481,19 @@ function generateComparisonPlaywrightCode(oldSnapshot) {
|
|
|
446481
446481
|
// src/App/App.ts
|
|
446482
446482
|
var LAST_BOARD_KEY = "lastSeenBoard";
|
|
446483
446483
|
var LAST_BOARD_KEY_QS = LAST_BOARD_KEY.concat("Wqs");
|
|
446484
|
+
function getI18n3() {
|
|
446485
|
+
const i18nInstance2 = getConfiguredI18n();
|
|
446486
|
+
return i18nInstance2 || {
|
|
446487
|
+
t: (key2) => {
|
|
446488
|
+
console.log("Using fallback i18n for key:", key2);
|
|
446489
|
+
return key2;
|
|
446490
|
+
}
|
|
446491
|
+
};
|
|
446492
|
+
}
|
|
446484
446493
|
function createApp(isHistory = true) {
|
|
446485
446494
|
const connection = createConnection(getBoard2, getAccount3, getStorage);
|
|
446486
446495
|
conf.connection = connection;
|
|
446487
|
-
conf.i18n =
|
|
446496
|
+
conf.i18n = getI18n3();
|
|
446488
446497
|
const clipboard = new Clipboard;
|
|
446489
446498
|
const location3 = new Location;
|
|
446490
446499
|
const storage2 = new Storage;
|