@univerjs-pro/collaboration-client 0.5.0-alpha.0 → 0.5.0-beta.1

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.
Files changed (84) hide show
  1. package/lib/cjs/index.js +1 -1
  2. package/lib/cjs/locale/en-US.js +1 -1
  3. package/lib/cjs/locale/fa-IR.js +1 -1
  4. package/lib/cjs/locale/ru-RU.js +1 -1
  5. package/lib/cjs/locale/vi-VN.js +1 -1
  6. package/lib/cjs/locale/zh-CN.js +1 -1
  7. package/lib/cjs/locale/zh-TW.js +1 -1
  8. package/lib/es/index.js +1 -1
  9. package/lib/es/locale/en-US.js +1 -1
  10. package/lib/es/locale/fa-IR.js +1 -1
  11. package/lib/es/locale/ru-RU.js +1 -1
  12. package/lib/es/locale/vi-VN.js +1 -1
  13. package/lib/es/locale/zh-CN.js +1 -1
  14. package/lib/es/locale/zh-TW.js +1 -1
  15. package/lib/types/config/config.d.ts +49 -0
  16. package/lib/types/controllers/collab-cursor/__tests__/doc-collab-cursor.controller.spec.d.ts +23 -0
  17. package/lib/types/controllers/collab-cursor/__tests__/serialize-text-ranges.spec.d.ts +1 -0
  18. package/lib/types/controllers/collab-cursor/__tests__/sheet-collab-cursor.controller.spec.d.ts +1 -0
  19. package/lib/types/controllers/collab-cursor/collab-cursor.controller.d.ts +22 -0
  20. package/lib/types/controllers/collab-cursor/doc-collab-cursor-entity.d.ts +38 -0
  21. package/lib/types/controllers/collab-cursor/doc-collab-cursor-render.controller.d.ts +24 -0
  22. package/lib/types/controllers/collab-cursor/serialize-text-ranges.d.ts +3 -0
  23. package/lib/types/controllers/collab-cursor/sheet-collab-cursor-entity.d.ts +39 -0
  24. package/lib/types/controllers/collab-cursor/sheet-collab-cursor-render.controller.d.ts +21 -0
  25. package/lib/types/controllers/collab-status/collab-status.controller.d.ts +18 -0
  26. package/lib/types/controllers/collaboration/__tests__/collaboration.controller.spec.d.ts +4 -0
  27. package/lib/types/controllers/collaboration/__tests__/mock-text-selection-render-manager.service.d.ts +0 -0
  28. package/lib/types/controllers/collaboration/__tests__/mocks.d.ts +58 -0
  29. package/lib/types/controllers/collaboration/collaboration-entity.d.ts +91 -0
  30. package/lib/types/controllers/collaboration/collaboration-state.d.ts +303 -0
  31. package/lib/types/controllers/collaboration/collaboration.controller.d.ts +24 -0
  32. package/lib/types/controllers/collaboration/utils/changeset-utils.d.ts +18 -0
  33. package/lib/types/controllers/collaboration/utils/empty.d.ts +2 -0
  34. package/lib/types/controllers/config.schema.d.ts +33 -0
  35. package/lib/types/controllers/data-loader/__tests__/data-loader.controller.spec.d.ts +1 -0
  36. package/lib/types/controllers/data-loader/data-loader.controller.d.ts +22 -0
  37. package/lib/types/controllers/file-name/file-name.controller.d.ts +12 -0
  38. package/lib/types/controllers/telemetry.d.ts +11 -0
  39. package/lib/types/index.d.ts +35 -890
  40. package/lib/types/locale/en-US.d.ts +3 -0
  41. package/lib/types/locale/fa-IR.d.ts +3 -0
  42. package/lib/types/locale/ru-RU.d.ts +3 -0
  43. package/lib/types/locale/vi-VN.d.ts +3 -0
  44. package/lib/types/locale/zh-CN.d.ts +39 -0
  45. package/lib/types/locale/zh-TW.d.ts +3 -0
  46. package/lib/types/models/cursor.d.ts +30 -0
  47. package/lib/types/plugin.d.ts +18 -0
  48. package/lib/types/services/auth-server/auth-server.service.d.ts +10 -0
  49. package/lib/types/services/auth-server/authz-io-http.service.d.ts +30 -0
  50. package/lib/types/services/auth-server/domain-request.service.d.ts +6 -0
  51. package/lib/types/services/auth-server/util.d.ts +1 -0
  52. package/lib/types/services/collaboration-session/collaboration-session.d.ts +59 -0
  53. package/lib/types/services/collaboration-session/collaboration-session.service.d.ts +75 -0
  54. package/lib/types/services/color-assign/color-assign.service.d.ts +10 -0
  55. package/lib/types/services/comment/comment.service.d.ts +6 -0
  56. package/lib/types/services/image-remote/image-io.service.d.ts +34 -0
  57. package/lib/types/services/ime-cache-transform/doc-transform-ime-cache.service.d.ts +13 -0
  58. package/lib/types/services/local-cache/local-cache.service.d.ts +37 -0
  59. package/lib/types/services/member/member.service.d.ts +77 -0
  60. package/lib/types/services/permission/permission.service.d.ts +12 -0
  61. package/lib/types/services/range-selection/sheet-transform-selections.service.d.ts +13 -0
  62. package/lib/types/services/single-active-unit/single-active-unit.service.d.ts +39 -0
  63. package/lib/types/services/snapshot-server/snapshot-server.service.d.ts +21 -0
  64. package/lib/types/services/socket/collaboration-socket.service.d.ts +34 -0
  65. package/lib/types/services/socket/serialize.d.ts +3 -0
  66. package/lib/types/services/state-cache-transform/doc-transform-state-cache.service.d.ts +12 -0
  67. package/lib/types/services/sync-editing-collab-cursor/doc-sync-editing-collab-cursor.service.d.ts +13 -0
  68. package/lib/types/services/text-selection/doc-transform-selections.service.d.ts +8 -0
  69. package/lib/types/services/undoredo/collaborative-undoredo.service.d.ts +19 -0
  70. package/lib/types/services/url/url.service.d.ts +12 -0
  71. package/lib/types/services/url/web-url.service.d.ts +10 -0
  72. package/lib/types/views/components/CollabStatus.d.ts +10 -0
  73. package/lib/types/views/components/CollabStatus.stories.d.ts +8 -0
  74. package/lib/types/views/shapes/doc-collab-cursor.d.ts +27 -0
  75. package/lib/types/views/shapes/sheet-collab-cursor.shape.d.ts +27 -0
  76. package/lib/types/views/shapes/text-bubble.shape.d.ts +19 -0
  77. package/lib/umd/index.js +1 -1
  78. package/lib/umd/locale/en-US.js +1 -1
  79. package/lib/umd/locale/fa-IR.js +1 -1
  80. package/lib/umd/locale/ru-RU.js +1 -1
  81. package/lib/umd/locale/vi-VN.js +1 -1
  82. package/lib/umd/locale/zh-CN.js +1 -1
  83. package/lib/umd/locale/zh-TW.js +1 -1
  84. package/package.json +23 -24
@@ -1 +1 @@
1
- 'use strict';const _0x27e038=_0x1508;(function(_0x48eb27,_0x38c58f){const _0x1b4839=_0x1508,_0x5b5e21=_0x48eb27();while(!![]){try{const _0x4278d9=-parseInt(_0x1b4839(0x114))/0x1*(parseInt(_0x1b4839(0x109))/0x2)+-parseInt(_0x1b4839(0x10c))/0x3*(parseInt(_0x1b4839(0x10e))/0x4)+-parseInt(_0x1b4839(0x10d))/0x5*(parseInt(_0x1b4839(0x111))/0x6)+parseInt(_0x1b4839(0xfe))/0x7*(-parseInt(_0x1b4839(0x10b))/0x8)+-parseInt(_0x1b4839(0xfd))/0x9+parseInt(_0x1b4839(0x117))/0xa*(-parseInt(_0x1b4839(0x113))/0xb)+parseInt(_0x1b4839(0x10f))/0xc;if(_0x4278d9===_0x38c58f)break;else _0x5b5e21['push'](_0x5b5e21['shift']());}catch(_0x9f6eef){_0x5b5e21['push'](_0x5b5e21['shift']());}}}(_0x5668,0xa0b5c));function _0x1508(_0x406789,_0x3b7c9f){const _0x5668c0=_0x5668();return _0x1508=function(_0x15080e,_0x16cd9c){_0x15080e=_0x15080e-0xfd;let _0x1fafab=_0x5668c0[_0x15080e];return _0x1fafab;},_0x1508(_0x406789,_0x3b7c9f);}function _0x5668(){const _0x505fa0=['6SGOeQN','Synced','7553128PxDgwN','141ulIuTQ','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','exports','10vlkVTJ','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','5937048OOqzQW','2162902jEIKOQ','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','Connection\x20failed,\x20please\x20check\x20your\x20network.','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Collaboration\x20Conflict','Authentication\x20Error','Syncing...','Click\x20to\x20Reconnect','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','3658XidWkA','Syncing\x20server\x20data...','32fKMUnm','3CsbDBk','5612045iCtiAw','2235500IiqDdd','62156460Fxwbbz','Local\x20file'];_0x5668=function(){return _0x505fa0;};return _0x5668();}const e={'collab-client':{'tooltip':{'reconnect':_0x27e038(0x106)}},'collabStatus':{'fetchMiss':_0x27e038(0x10a),'conflict':'Edit\x20conflicts','notCollab':_0x27e038(0x110),'synced':_0x27e038(0x112),'syncing':_0x27e038(0x105),'offline':_0x27e038(0x101)},'session':{'connection-failed':_0x27e038(0x100),'will-retry':_0x27e038(0x108),'room-full':_0x27e038(0x107),'collaboration-timeout':_0x27e038(0x102)},'conflict':{'title':_0x27e038(0x103),'content':'There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.'},'permission':{'title':_0x27e038(0x104),'content':_0x27e038(0x118)},'collaboration':{'single-unit':{'warning':_0x27e038(0xff)},'closeRoom':_0x27e038(0x115)},'auth':{'needGotoLoginAlert':'Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.'}};module[_0x27e038(0x116)]=e;
1
+ 'use strict';const _0x4f3f0c=_0x2a00;(function(_0x5df12a,_0x136b25){const _0x1fb6c4=_0x2a00,_0x13ee94=_0x5df12a();while(!![]){try{const _0x2a12be=-parseInt(_0x1fb6c4(0x1df))/0x1+-parseInt(_0x1fb6c4(0x1d2))/0x2+-parseInt(_0x1fb6c4(0x1d7))/0x3*(-parseInt(_0x1fb6c4(0x1e2))/0x4)+-parseInt(_0x1fb6c4(0x1d9))/0x5*(-parseInt(_0x1fb6c4(0x1da))/0x6)+-parseInt(_0x1fb6c4(0x1e6))/0x7*(parseInt(_0x1fb6c4(0x1d3))/0x8)+-parseInt(_0x1fb6c4(0x1e1))/0x9+parseInt(_0x1fb6c4(0x1d0))/0xa*(parseInt(_0x1fb6c4(0x1d5))/0xb);if(_0x2a12be===_0x136b25)break;else _0x13ee94['push'](_0x13ee94['shift']());}catch(_0xd9b4c1){_0x13ee94['push'](_0x13ee94['shift']());}}}(_0x582a,0xb839b));const e={'collab-client':{'tooltip':{'reconnect':'Click\x20to\x20Reconnect'}},'collabStatus':{'fetchMiss':'Syncing\x20server\x20data...','conflict':_0x4f3f0c(0x1d1),'notCollab':'Local\x20file','synced':_0x4f3f0c(0x1e5),'syncing':_0x4f3f0c(0x1de),'offline':_0x4f3f0c(0x1d6)},'session':{'connection-failed':_0x4f3f0c(0x1e7),'will-retry':'Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','room-full':_0x4f3f0c(0x1e3),'collaboration-timeout':_0x4f3f0c(0x1e0)},'conflict':{'title':_0x4f3f0c(0x1e4),'content':_0x4f3f0c(0x1d8)},'permission':{'title':'Authentication\x20Error','content':_0x4f3f0c(0x1d4)},'collaboration':{'single-unit':{'warning':_0x4f3f0c(0x1db)},'closeRoom':_0x4f3f0c(0x1dc)},'auth':{'needGotoLoginAlert':'Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.'}};function _0x582a(){const _0x3cd773=['The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','12969324mSLBFb','3921072zqOBJs','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Collaboration\x20Conflict','Synced','70IXzclT','Connection\x20failed,\x20please\x20check\x20your\x20network.','10kNggxk','Edit\x20conflicts','1451758aUnJbJ','930152NLaUnq','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','40839568GAPczg','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','3rCzNvB','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','5ItEaGf','994548wBuxKg','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','exports','Syncing...','774522beNhxR'];_0x582a=function(){return _0x3cd773;};return _0x582a();}function _0x2a00(_0x37b95b,_0x4ac8fa){const _0x582ac0=_0x582a();return _0x2a00=function(_0x2a00ff,_0x45ac04){_0x2a00ff=_0x2a00ff-0x1d0;let _0x4a470e=_0x582ac0[_0x2a00ff];return _0x4a470e;},_0x2a00(_0x37b95b,_0x4ac8fa);}module[_0x4f3f0c(0x1dd)]=e;
@@ -1 +1 @@
1
- 'use strict';const _0x3081d4=_0xd827;(function(_0x2567cc,_0x43c6a5){const _0x52cdec=_0xd827,_0x48e534=_0x2567cc();while(!![]){try{const _0x2976e3=parseInt(_0x52cdec(0x176))/0x1*(-parseInt(_0x52cdec(0x182))/0x2)+parseInt(_0x52cdec(0x186))/0x3+parseInt(_0x52cdec(0x187))/0x4+-parseInt(_0x52cdec(0x181))/0x5+parseInt(_0x52cdec(0x17b))/0x6*(parseInt(_0x52cdec(0x175))/0x7)+-parseInt(_0x52cdec(0x17a))/0x8*(-parseInt(_0x52cdec(0x174))/0x9)+parseInt(_0x52cdec(0x185))/0xa;if(_0x2976e3===_0x43c6a5)break;else _0x48e534['push'](_0x48e534['shift']());}catch(_0x1ca36f){_0x48e534['push'](_0x48e534['shift']());}}}(_0x2be1,0xa2bae));function _0x2be1(){const _0x28a191=['7Yrdofz','26PrDlUr','تداخل\x20ویرایش','در\x20حال\x20همگام\x20سازی\x20داده\x20های\x20سرور...','اتاق\x20همکاری\x20پر\x20است.\x20شما\x20ویرایش\x20های\x20خود\x20را\x20در\x20محلی\x20ذخیره\x20خواهید\x20کرد.','558568HGMzfh','1842906LBfRAh','امتیازات\x20ویرایش\x20به\x20دلیل\x20بسته\x20شدن\x20اتاق\x20همکاری\x20لغو\x20شد.','پرونده\x20محلی','exports','آفلاین،\x20ویرایش\x20ها\x20در\x20محلی\x20ذخیره\x20می\x20شوند','سرور\x20به\x20درخواست\x20همکاری\x20شما\x20پاسخ\x20نمی\x20دهد.\x20ویرایش\x20های\x20شما\x20در\x20محلی\x20ذخیره\x20می\x20شوند.','2456505atNjWF','99682LHQsYd','اتصال\x20ناموفق\x20بود،\x20ما\x20بعداً\x20دوباره\x20تلاش\x20می\x20کنیم.','اعمال\x20شما\x20با\x20مجوزهای\x20سرور\x20تداخل\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20در\x20جای\x20دیگر\x20ذخیره\x20کنید\x20زیرا\x20پس\x20از\x20تازه\x20سازی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.','4268850MvaKbB','3436581yanVVM','1179448bhiztP','همگام\x20سازی','36Jdsxda'];_0x2be1=function(){return _0x28a191;};return _0x2be1();}const o={'collab-client':{'tooltip':{'reconnect':'برای\x20اتصال\x20مجدد\x20کلیک\x20کنید'}},'collabStatus':{'fetchMiss':_0x3081d4(0x178),'conflict':_0x3081d4(0x177),'notCollab':_0x3081d4(0x17d),'synced':_0x3081d4(0x188),'syncing':'در\x20حال\x20همگام\x20سازی...','offline':_0x3081d4(0x17f)},'session':{'connection-failed':'اتصال\x20ناموفق\x20بود،\x20لطفا\x20شبکه\x20خود\x20را\x20بررسی\x20کنید.','will-retry':_0x3081d4(0x183),'room-full':_0x3081d4(0x179),'collaboration-timeout':_0x3081d4(0x180)},'conflict':{'title':'تداخل\x20همکاری','content':'یک\x20تداخل\x20بین\x20نسخه\x20محلی\x20شما\x20و\x20نسخه\x20در\x20سرور\x20وجود\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20ذخیره\x20کنید،\x20زیرا\x20آنها\x20پس\x20از\x20بازیابی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.'},'permission':{'title':'خطای\x20اعتبارسنجی','content':_0x3081d4(0x184)},'collaboration':{'single-unit':{'warning':'شما\x20همان\x20پرونده\x20را\x20در\x20یک\x20تب\x20دیگر\x20باز\x20کرده\x20اید.\x20در\x20صورت\x20عدم\x20وجود\x20داده،\x20نمی\x20توانید\x20در\x20این\x20تب\x20ویرایش\x20کنید.'},'closeRoom':_0x3081d4(0x17c)},'auth':{'needGotoLoginAlert':'ورود\x20شما\x20منقضی\x20شده\x20است،\x20برای\x20ورود\x20مجدد\x20کلیک\x20کنید،\x20برای\x20ذخیره\x20ویرایش\x20های\x20محلی\x20خود\x20کلیک\x20کنید.'}};function _0xd827(_0x28a4b0,_0x3e3129){const _0x2be14d=_0x2be1();return _0xd827=function(_0xd82770,_0x17ceb3){_0xd82770=_0xd82770-0x174;let _0xdc1f1e=_0x2be14d[_0xd82770];return _0xdc1f1e;},_0xd827(_0x28a4b0,_0x3e3129);}module[_0x3081d4(0x17e)]=o;
1
+ 'use strict';function _0x1a2d(){const _0x358759=['برای\x20اتصال\x20مجدد\x20کلیک\x20کنید','امتیازات\x20ویرایش\x20به\x20دلیل\x20بسته\x20شدن\x20اتاق\x20همکاری\x20لغو\x20شد.','همگام\x20سازی','تداخل\x20ویرایش','3514035XaWOLr','542752aEQEhc','اتاق\x20همکاری\x20پر\x20است.\x20شما\x20ویرایش\x20های\x20خود\x20را\x20در\x20محلی\x20ذخیره\x20خواهید\x20کرد.','5595NnYNax','162lprbwG','اعمال\x20شما\x20با\x20مجوزهای\x20سرور\x20تداخل\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20در\x20جای\x20دیگر\x20ذخیره\x20کنید\x20زیرا\x20پس\x20از\x20تازه\x20سازی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.','3469026abMRYY','529835urtnfe','779566BlymDe','در\x20حال\x20همگام\x20سازی\x20داده\x20های\x20سرور...','اتصال\x20ناموفق\x20بود،\x20لطفا\x20شبکه\x20خود\x20را\x20بررسی\x20کنید.','سرور\x20به\x20درخواست\x20همکاری\x20شما\x20پاسخ\x20نمی\x20دهد.\x20ویرایش\x20های\x20شما\x20در\x20محلی\x20ذخیره\x20می\x20شوند.','اتصال\x20ناموفق\x20بود،\x20ما\x20بعداً\x20دوباره\x20تلاش\x20می\x20کنیم.','exports','372VnNcKQ','2928030NRMDVU','پرونده\x20محلی','در\x20حال\x20همگام\x20سازی...'];_0x1a2d=function(){return _0x358759;};return _0x1a2d();}const _0xee7fc2=_0x3d4f;(function(_0x5f7462,_0x421af5){const _0x26432a=_0x3d4f,_0x91d9d2=_0x5f7462();while(!![]){try{const _0xdb120e=parseInt(_0x26432a(0xf6))/0x1+parseInt(_0x26432a(0xf7))/0x2+parseInt(_0x26432a(0xf2))/0x3*(-parseInt(_0x26432a(0xfd))/0x4)+-parseInt(_0x26432a(0xfe))/0x5+-parseInt(_0x26432a(0xf5))/0x6+-parseInt(_0x26432a(0xef))/0x7+-parseInt(_0x26432a(0xf0))/0x8*(-parseInt(_0x26432a(0xf3))/0x9);if(_0xdb120e===_0x421af5)break;else _0x91d9d2['push'](_0x91d9d2['shift']());}catch(_0x146e2e){_0x91d9d2['push'](_0x91d9d2['shift']());}}}(_0x1a2d,0x49a0f));function _0x3d4f(_0x434ca8,_0x577246){const _0x1a2dbf=_0x1a2d();return _0x3d4f=function(_0x3d4fdd,_0x33adff){_0x3d4fdd=_0x3d4fdd-0xed;let _0x46badf=_0x1a2dbf[_0x3d4fdd];return _0x46badf;},_0x3d4f(_0x434ca8,_0x577246);}const o={'collab-client':{'tooltip':{'reconnect':_0xee7fc2(0x101)}},'collabStatus':{'fetchMiss':_0xee7fc2(0xf8),'conflict':_0xee7fc2(0xee),'notCollab':_0xee7fc2(0xff),'synced':_0xee7fc2(0xed),'syncing':_0xee7fc2(0x100),'offline':'آفلاین،\x20ویرایش\x20ها\x20در\x20محلی\x20ذخیره\x20می\x20شوند'},'session':{'connection-failed':_0xee7fc2(0xf9),'will-retry':_0xee7fc2(0xfb),'room-full':_0xee7fc2(0xf1),'collaboration-timeout':_0xee7fc2(0xfa)},'conflict':{'title':'تداخل\x20همکاری','content':'یک\x20تداخل\x20بین\x20نسخه\x20محلی\x20شما\x20و\x20نسخه\x20در\x20سرور\x20وجود\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20ذخیره\x20کنید،\x20زیرا\x20آنها\x20پس\x20از\x20بازیابی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.'},'permission':{'title':'خطای\x20اعتبارسنجی','content':_0xee7fc2(0xf4)},'collaboration':{'single-unit':{'warning':'شما\x20همان\x20پرونده\x20را\x20در\x20یک\x20تب\x20دیگر\x20باز\x20کرده\x20اید.\x20در\x20صورت\x20عدم\x20وجود\x20داده،\x20نمی\x20توانید\x20در\x20این\x20تب\x20ویرایش\x20کنید.'},'closeRoom':_0xee7fc2(0x102)},'auth':{'needGotoLoginAlert':'ورود\x20شما\x20منقضی\x20شده\x20است،\x20برای\x20ورود\x20مجدد\x20کلیک\x20کنید،\x20برای\x20ذخیره\x20ویرایش\x20های\x20محلی\x20خود\x20کلیک\x20کنید.'}};module[_0xee7fc2(0xfc)]=o;
@@ -1 +1 @@
1
- 'use strict';const _0x62feca=_0x3cb1;function _0x3cb1(_0x39421e,_0x25108f){const _0x34d93f=_0x34d9();return _0x3cb1=function(_0x3cb110,_0x2a1ad8){_0x3cb110=_0x3cb110-0xe7;let _0x26a089=_0x34d93f[_0x3cb110];return _0x26a089;},_0x3cb1(_0x39421e,_0x25108f);}(function(_0x46455b,_0x5a169b){const _0x4bf644=_0x3cb1,_0x248e34=_0x46455b();while(!![]){try{const _0x516bde=-parseInt(_0x4bf644(0xe7))/0x1*(-parseInt(_0x4bf644(0xef))/0x2)+-parseInt(_0x4bf644(0xed))/0x3*(parseInt(_0x4bf644(0xf8))/0x4)+parseInt(_0x4bf644(0xe9))/0x5+-parseInt(_0x4bf644(0xf4))/0x6+-parseInt(_0x4bf644(0xf0))/0x7+-parseInt(_0x4bf644(0xfa))/0x8*(-parseInt(_0x4bf644(0xf3))/0x9)+parseInt(_0x4bf644(0xe8))/0xa*(parseInt(_0x4bf644(0xf7))/0xb);if(_0x516bde===_0x5a169b)break;else _0x248e34['push'](_0x248e34['shift']());}catch(_0x3f292f){_0x248e34['push'](_0x248e34['shift']());}}}(_0x34d9,0x6ebf4));const e={'collab-client':{'tooltip':{'reconnect':_0x62feca(0xf1)}},'collabStatus':{'fetchMiss':_0x62feca(0xf9),'conflict':'Edit\x20conflicts','notCollab':_0x62feca(0xea),'synced':_0x62feca(0xeb),'syncing':'Syncing...','offline':_0x62feca(0xee)},'session':{'connection-failed':_0x62feca(0xf5),'will-retry':'Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','room-full':_0x62feca(0xf2),'collaboration-timeout':'The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.'},'conflict':{'title':'Collaboration\x20Conflict','content':'There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.'},'permission':{'title':'Authentication\x20Error','content':_0x62feca(0xec)},'collaboration':{'single-unit':{'warning':_0x62feca(0xfb)},'closeRoom':_0x62feca(0xf6)},'auth':{'needGotoLoginAlert':'Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.'}},o=e;module['exports']=o;function _0x34d9(){const _0x3146e9=['Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','3459573YvXcZd','5300676GehbAV','Connection\x20failed,\x20please\x20check\x20your\x20network.','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','11fATSxf','20adIdNX','Syncing\x20server\x20data...','8cxvOVk','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','66ZwWcCb','6395990iyyjtB','1495115iUMKfn','Local\x20file','Synced','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','39954ZitcFw','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','23148PlnYAI','4782729oICyjb','Click\x20to\x20Reconnect'];_0x34d9=function(){return _0x3146e9;};return _0x34d9();}
1
+ 'use strict';const _0x2012de=_0x55ee;(function(_0x92be09,_0x146454){const _0x593f5e=_0x55ee,_0x382985=_0x92be09();while(!![]){try{const _0x2a4f3a=-parseInt(_0x593f5e(0x127))/0x1+parseInt(_0x593f5e(0x126))/0x2+-parseInt(_0x593f5e(0x125))/0x3*(parseInt(_0x593f5e(0x122))/0x4)+parseInt(_0x593f5e(0x138))/0x5*(-parseInt(_0x593f5e(0x129))/0x6)+parseInt(_0x593f5e(0x12d))/0x7+-parseInt(_0x593f5e(0x123))/0x8*(-parseInt(_0x593f5e(0x135))/0x9)+parseInt(_0x593f5e(0x132))/0xa;if(_0x2a4f3a===_0x146454)break;else _0x382985['push'](_0x382985['shift']());}catch(_0x468e9e){_0x382985['push'](_0x382985['shift']());}}}(_0x40c0,0x4264c));function _0x40c0(){const _0x44e63e=['Authentication\x20Error','2816200HSOjyS','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','51003DovwCf','Syncing...','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','1170115LLkwsz','11612SaitWk','456fMumpU','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','177CfMDaH','206128MhToRf','152447wmpYHb','exports','12bUbzjK','Collaboration\x20Conflict','Local\x20file','Click\x20to\x20Reconnect','2492105FwVaUQ','Edit\x20conflicts','Synced','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'];_0x40c0=function(){return _0x44e63e;};return _0x40c0();}function _0x55ee(_0xaf3180,_0x3af368){const _0x40c028=_0x40c0();return _0x55ee=function(_0x55ee92,_0x4a3e31){_0x55ee92=_0x55ee92-0x122;let _0x3778d2=_0x40c028[_0x55ee92];return _0x3778d2;},_0x55ee(_0xaf3180,_0x3af368);}const e={'collab-client':{'tooltip':{'reconnect':_0x2012de(0x12c)}},'collabStatus':{'fetchMiss':'Syncing\x20server\x20data...','conflict':_0x2012de(0x12e),'notCollab':_0x2012de(0x12b),'synced':_0x2012de(0x12f),'syncing':_0x2012de(0x136),'offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':'Connection\x20failed,\x20please\x20check\x20your\x20network.','will-retry':'Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','room-full':_0x2012de(0x137),'collaboration-timeout':'The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.'},'conflict':{'title':_0x2012de(0x12a),'content':_0x2012de(0x124)},'permission':{'title':_0x2012de(0x131),'content':_0x2012de(0x133)},'collaboration':{'single-unit':{'warning':_0x2012de(0x130)},'closeRoom':'Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'},'auth':{'needGotoLoginAlert':_0x2012de(0x134)}},o=e;module[_0x2012de(0x128)]=o;
@@ -1 +1 @@
1
- 'use strict';const _0x261f2b=_0x1e34;(function(_0x4a16ac,_0xaf850f){const _0x452972=_0x1e34,_0x50788c=_0x4a16ac();while(!![]){try{const _0x416d23=parseInt(_0x452972(0x1c0))/0x1+parseInt(_0x452972(0x1cd))/0x2*(parseInt(_0x452972(0x1b8))/0x3)+-parseInt(_0x452972(0x1bf))/0x4*(parseInt(_0x452972(0x1cb))/0x5)+parseInt(_0x452972(0x1bd))/0x6+parseInt(_0x452972(0x1c7))/0x7+-parseInt(_0x452972(0x1ce))/0x8*(-parseInt(_0x452972(0x1c1))/0x9)+parseInt(_0x452972(0x1bb))/0xa*(-parseInt(_0x452972(0x1bc))/0xb);if(_0x416d23===_0xaf850f)break;else _0x50788c['push'](_0x50788c['shift']());}catch(_0x4d22e5){_0x50788c['push'](_0x50788c['shift']());}}}(_0x2f96,0xe23f5));function _0x1e34(_0x197344,_0x4e3855){const _0x2f960e=_0x2f96();return _0x1e34=function(_0x1e34a9,_0x335ac7){_0x1e34a9=_0x1e34a9-0x1b8;let _0x5ca1e4=_0x2f960e[_0x1e34a9];return _0x5ca1e4;},_0x1e34(_0x197344,_0x4e3855);}const e={'collab-client':{'tooltip':{'reconnect':'Click\x20to\x20Reconnect'}},'collabStatus':{'fetchMiss':'Syncing\x20server\x20data...','conflict':'Edit\x20conflicts','notCollab':'Local\x20file','synced':_0x261f2b(0x1c4),'syncing':_0x261f2b(0x1cc),'offline':_0x261f2b(0x1c2)},'session':{'connection-failed':_0x261f2b(0x1c6),'will-retry':_0x261f2b(0x1b9),'room-full':_0x261f2b(0x1ba),'collaboration-timeout':_0x261f2b(0x1be)},'conflict':{'title':'Collaboration\x20Conflict','content':_0x261f2b(0x1c3)},'permission':{'title':_0x261f2b(0x1c5),'content':_0x261f2b(0x1c8)},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':_0x261f2b(0x1c9)},'auth':{'needGotoLoginAlert':_0x261f2b(0x1ca)}},o=e;module['exports']=o;function _0x2f96(){const _0xbe169a=['Connection\x20failed,\x20please\x20check\x20your\x20network.','10568551lkRLdr','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','5qmAhTN','Syncing...','2FthtwS','488WdxoRn','4084890jTuXTM','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','1670470QtkrjS','253TjeLch','8678538GEJEGk','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','7178716MEIuxK','1000552xmsFpL','183699TrYmyL','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','Synced','Authentication\x20Error'];_0x2f96=function(){return _0xbe169a;};return _0x2f96();}
1
+ 'use strict';const _0x4d7527=_0x3502;(function(_0x41c7ed,_0x14358e){const _0x33eb1d=_0x3502,_0x3c83a3=_0x41c7ed();while(!![]){try{const _0x3b7d61=parseInt(_0x33eb1d(0xbd))/0x1+parseInt(_0x33eb1d(0xb8))/0x2*(-parseInt(_0x33eb1d(0xa4))/0x3)+-parseInt(_0x33eb1d(0xba))/0x4*(parseInt(_0x33eb1d(0xab))/0x5)+parseInt(_0x33eb1d(0xaa))/0x6+parseInt(_0x33eb1d(0xa6))/0x7*(-parseInt(_0x33eb1d(0xaf))/0x8)+-parseInt(_0x33eb1d(0xb1))/0x9*(parseInt(_0x33eb1d(0xbc))/0xa)+parseInt(_0x33eb1d(0xbb))/0xb*(parseInt(_0x33eb1d(0xa5))/0xc);if(_0x3b7d61===_0x14358e)break;else _0x3c83a3['push'](_0x3c83a3['shift']());}catch(_0x1ffa7e){_0x3c83a3['push'](_0x3c83a3['shift']());}}}(_0x46b2,0x7cd39));function _0x3502(_0xcc1f7d,_0x493a7a){const _0x46b277=_0x46b2();return _0x3502=function(_0x350298,_0x38cfa4){_0x350298=_0x350298-0xa4;let _0x3ced2e=_0x46b277[_0x350298];return _0x3ced2e;},_0x3502(_0xcc1f7d,_0x493a7a);}const e={'collab-client':{'tooltip':{'reconnect':_0x4d7527(0xa8)}},'collabStatus':{'fetchMiss':_0x4d7527(0xa7),'conflict':_0x4d7527(0xb3),'notCollab':_0x4d7527(0xb6),'synced':_0x4d7527(0xb0),'syncing':'Syncing...','offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':_0x4d7527(0xb5),'will-retry':'Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','room-full':_0x4d7527(0xb4),'collaboration-timeout':_0x4d7527(0xac)},'conflict':{'title':'Collaboration\x20Conflict','content':_0x4d7527(0xae)},'permission':{'title':'Authentication\x20Error','content':_0x4d7527(0xa9)},'collaboration':{'single-unit':{'warning':_0x4d7527(0xb9)},'closeRoom':_0x4d7527(0xb2)},'auth':{'needGotoLoginAlert':_0x4d7527(0xb7)}},o=e;module[_0x4d7527(0xad)]=o;function _0x46b2(){const _0x17d490=['Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Edit\x20conflicts','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Connection\x20failed,\x20please\x20check\x20your\x20network.','Local\x20file','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','2jkIrfQ','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','19224gASHkI','4202rtVvJi','3676100YPneAO','243307edyObA','2385879JwzdEu','59028ukyXok','21zMvJiV','Syncing\x20server\x20data...','Click\x20to\x20Reconnect','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','2966256jKDpPx','135TwxXjv','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','exports','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','2167432EKnoQa','Synced','9vrPDrB'];_0x46b2=function(){return _0x17d490;};return _0x46b2();}
@@ -1 +1 @@
1
- 'use strict';const _0x59b58a=_0x342c;(function(_0x5651f0,_0x4b8cf6){const _0x29854c=_0x342c,_0x5ad978=_0x5651f0();while(!![]){try{const _0x431b79=-parseInt(_0x29854c(0x1c2))/0x1+-parseInt(_0x29854c(0x1ca))/0x2*(parseInt(_0x29854c(0x1cb))/0x3)+-parseInt(_0x29854c(0x1ba))/0x4*(parseInt(_0x29854c(0x1c6))/0x5)+parseInt(_0x29854c(0x1b6))/0x6+parseInt(_0x29854c(0x1bd))/0x7*(parseInt(_0x29854c(0x1b3))/0x8)+parseInt(_0x29854c(0x1bc))/0x9+parseInt(_0x29854c(0x1c1))/0xa;if(_0x431b79===_0x4b8cf6)break;else _0x5ad978['push'](_0x5ad978['shift']());}catch(_0x65df68){_0x5ad978['push'](_0x5ad978['shift']());}}}(_0x5b73,0xc22c4));function _0x5b73(){const _0x142a9a=['已离线,编辑将在本地缓存','权限错误','保存中...','6113230LnAmpE','点击重新连接','服务器未响应,你的编辑将在本地缓存','exports','100CJyDax','74721Rzfydc','协同房间已满,你的编辑将在本地缓存','76456BenJvg','本地文件','你的本地文档和服务器的文档存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','1120512VpwqUT','编辑冲突','协同冲突','你在另一个标签页打开了同一个文件。为了避免数据丢失,这个标签页的编辑行为将会被限制。','4ApUkUb','由于协同房间被关闭,编辑权限被收回。','10372392WlxAVm','581gLvbca','你的操作和服务器的权限存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','正在拉取服务端数据...','你的登录已过期,点击确认重新登陆,点击取消去保存你的本地编辑。','18592690eHMkTH','728412wezEbO'];_0x5b73=function(){return _0x142a9a;};return _0x5b73();}const o={'collab-client':{'tooltip':{'reconnect':_0x59b58a(0x1c7)}},'collabStatus':{'fetchMiss':_0x59b58a(0x1bf),'conflict':_0x59b58a(0x1b7),'notCollab':_0x59b58a(0x1b4),'synced':'已同步','syncing':_0x59b58a(0x1c5),'offline':_0x59b58a(0x1c3)},'session':{'connection-failed':'连接失败,请检查你的网络','will-retry':'连接失败,将在一会儿之后重试连接','room-full':_0x59b58a(0x1cc),'collaboration-timeout':_0x59b58a(0x1c8)},'conflict':{'title':_0x59b58a(0x1b8),'content':_0x59b58a(0x1b5)},'permission':{'title':_0x59b58a(0x1c4),'content':_0x59b58a(0x1be)},'collaboration':{'single-unit':{'warning':_0x59b58a(0x1b9)},'closeRoom':_0x59b58a(0x1bb)},'auth':{'needGotoLoginAlert':_0x59b58a(0x1c0)}};function _0x342c(_0x565df5,_0x46a5a2){const _0x5b7326=_0x5b73();return _0x342c=function(_0x342cf1,_0x4c4f6d){_0x342cf1=_0x342cf1-0x1b3;let _0x432a5d=_0x5b7326[_0x342cf1];return _0x432a5d;},_0x342c(_0x565df5,_0x46a5a2);}module[_0x59b58a(0x1c9)]=o;
1
+ 'use strict';const _0x1c2ca5=_0x398c;(function(_0x549a79,_0x18be2f){const _0x2168ff=_0x398c,_0x5e3133=_0x549a79();while(!![]){try{const _0x8be7d4=parseInt(_0x2168ff(0x14f))/0x1+-parseInt(_0x2168ff(0x143))/0x2+-parseInt(_0x2168ff(0x151))/0x3*(parseInt(_0x2168ff(0x158))/0x4)+-parseInt(_0x2168ff(0x14c))/0x5+-parseInt(_0x2168ff(0x14b))/0x6+-parseInt(_0x2168ff(0x150))/0x7+parseInt(_0x2168ff(0x14d))/0x8;if(_0x8be7d4===_0x18be2f)break;else _0x5e3133['push'](_0x5e3133['shift']());}catch(_0x3d9b36){_0x5e3133['push'](_0x5e3133['shift']());}}}(_0x2581,0x8181c));function _0x2581(){const _0x25b031=['你的操作和服务器的权限存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','编辑冲突','保存中...','2236BJZgXa','541432CduGFr','exports','你在另一个标签页打开了同一个文件。为了避免数据丢失,这个标签页的编辑行为将会被限制。','由于协同房间被关闭,编辑权限被收回。','正在拉取服务端数据...','服务器未响应,你的编辑将在本地缓存','协同冲突','权限错误','2122836ZvarME','1003685DxduAo','17804280XXIbvU','已同步','171352ktRcbb','773031YDvvol','4995XFyebA','你的登录已过期,点击确认重新登陆,点击取消去保存你的本地编辑。','连接失败,将在一会儿之后重试连接','点击重新连接'];_0x2581=function(){return _0x25b031;};return _0x2581();}function _0x398c(_0x414dae,_0x2d1ce4){const _0x258117=_0x2581();return _0x398c=function(_0x398c76,_0x2a4085){_0x398c76=_0x398c76-0x143;let _0x435587=_0x258117[_0x398c76];return _0x435587;},_0x398c(_0x414dae,_0x2d1ce4);}const o={'collab-client':{'tooltip':{'reconnect':_0x1c2ca5(0x154)}},'collabStatus':{'fetchMiss':_0x1c2ca5(0x147),'conflict':_0x1c2ca5(0x156),'notCollab':'本地文件','synced':_0x1c2ca5(0x14e),'syncing':_0x1c2ca5(0x157),'offline':'已离线,编辑将在本地缓存'},'session':{'connection-failed':'连接失败,请检查你的网络','will-retry':_0x1c2ca5(0x153),'room-full':'协同房间已满,你的编辑将在本地缓存','collaboration-timeout':_0x1c2ca5(0x148)},'conflict':{'title':_0x1c2ca5(0x149),'content':'你的本地文档和服务器的文档存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。'},'permission':{'title':_0x1c2ca5(0x14a),'content':_0x1c2ca5(0x155)},'collaboration':{'single-unit':{'warning':_0x1c2ca5(0x145)},'closeRoom':_0x1c2ca5(0x146)},'auth':{'needGotoLoginAlert':_0x1c2ca5(0x152)}};module[_0x1c2ca5(0x144)]=o;
@@ -1 +1 @@
1
- 'use strict';const _0x4941f4=_0x1818;(function(_0x5739a5,_0x146103){const _0x2b5795=_0x1818,_0x232907=_0x5739a5();while(!![]){try{const _0x12b6e1=-parseInt(_0x2b5795(0x87))/0x1+-parseInt(_0x2b5795(0x84))/0x2+-parseInt(_0x2b5795(0x94))/0x3*(parseInt(_0x2b5795(0x90))/0x4)+parseInt(_0x2b5795(0x88))/0x5+-parseInt(_0x2b5795(0x86))/0x6*(-parseInt(_0x2b5795(0x7f))/0x7)+parseInt(_0x2b5795(0x8a))/0x8+parseInt(_0x2b5795(0x8e))/0x9*(parseInt(_0x2b5795(0x8f))/0xa);if(_0x12b6e1===_0x146103)break;else _0x232907['push'](_0x232907['shift']());}catch(_0x414535){_0x232907['push'](_0x232907['shift']());}}}(_0x3e51,0xeff44));function _0x3e51(){const _0x55fcc1=['Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','126kBNEqj','1791650BoWpdM','604JyPnPH','Collaboration\x20Conflict','Synced','exports','31149wfjqNv','Syncing...','Authentication\x20Error','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','259qLBuEX','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Local\x20file','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','3899566isnSNU','Connection\x20failed,\x20please\x20check\x20your\x20network.','302856ifEmSy','857303vejfkJ','2100710aLnoVm','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','4493656pDFHqN','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','Edit\x20conflicts'];_0x3e51=function(){return _0x55fcc1;};return _0x3e51();}const e={'collab-client':{'tooltip':{'reconnect':'Click\x20to\x20Reconnect'}},'collabStatus':{'fetchMiss':'Syncing\x20server\x20data...','conflict':_0x4941f4(0x8c),'notCollab':_0x4941f4(0x82),'synced':_0x4941f4(0x92),'syncing':_0x4941f4(0x7c),'offline':_0x4941f4(0x7e)},'session':{'connection-failed':_0x4941f4(0x85),'will-retry':'Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','room-full':_0x4941f4(0x8d),'collaboration-timeout':_0x4941f4(0x81)},'conflict':{'title':_0x4941f4(0x91),'content':_0x4941f4(0x83)},'permission':{'title':_0x4941f4(0x7d),'content':_0x4941f4(0x8b)},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':_0x4941f4(0x80)},'auth':{'needGotoLoginAlert':_0x4941f4(0x89)}},o=e;function _0x1818(_0xec3468,_0x358a05){const _0x3e51cf=_0x3e51();return _0x1818=function(_0x181848,_0x3ee99f){_0x181848=_0x181848-0x7c;let _0x1532aa=_0x3e51cf[_0x181848];return _0x1532aa;},_0x1818(_0xec3468,_0x358a05);}module[_0x4941f4(0x93)]=o;
1
+ 'use strict';function _0x42eb(){const _0x4968a4=['Authentication\x20Error','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','exports','Collaboration\x20Conflict','1728293zzXbwV','Edit\x20conflicts','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','7970qSTxGX','13648qYXqqx','804qKfjmB','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','2216166wIGsCo','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','455097XYhjPH','639bBIPfR','Local\x20file','52845Sezjrw','Connection\x20failed,\x20please\x20check\x20your\x20network.','Synced','514660SOoRGX','Syncing\x20server\x20data...'];_0x42eb=function(){return _0x4968a4;};return _0x42eb();}const _0x3fdfee=_0x1020;(function(_0x5ca1ce,_0x17a27a){const _0xa36b4c=_0x1020,_0x462207=_0x5ca1ce();while(!![]){try{const _0x3c668f=-parseInt(_0xa36b4c(0x167))/0x1+parseInt(_0xa36b4c(0x16a))/0x2+-parseInt(_0xa36b4c(0x164))/0x3+parseInt(_0xa36b4c(0x160))/0x4*(-parseInt(_0xa36b4c(0x15e))/0x5)+parseInt(_0xa36b4c(0x162))/0x6+parseInt(_0xa36b4c(0x159))/0x7+-parseInt(_0xa36b4c(0x15f))/0x8*(parseInt(_0xa36b4c(0x165))/0x9);if(_0x3c668f===_0x17a27a)break;else _0x462207['push'](_0x462207['shift']());}catch(_0x37ec58){_0x462207['push'](_0x462207['shift']());}}}(_0x42eb,0x378c6));const e={'collab-client':{'tooltip':{'reconnect':'Click\x20to\x20Reconnect'}},'collabStatus':{'fetchMiss':_0x3fdfee(0x16b),'conflict':_0x3fdfee(0x15a),'notCollab':_0x3fdfee(0x166),'synced':_0x3fdfee(0x169),'syncing':'Syncing...','offline':_0x3fdfee(0x16e)},'session':{'connection-failed':_0x3fdfee(0x168),'will-retry':_0x3fdfee(0x163),'room-full':_0x3fdfee(0x161),'collaboration-timeout':_0x3fdfee(0x15c)},'conflict':{'title':_0x3fdfee(0x170),'content':_0x3fdfee(0x15d)},'permission':{'title':_0x3fdfee(0x16c),'content':'Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.'},'collaboration':{'single-unit':{'warning':_0x3fdfee(0x16d)},'closeRoom':_0x3fdfee(0x15b)},'auth':{'needGotoLoginAlert':'Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.'}},o=e;function _0x1020(_0x1871d1,_0x228a91){const _0x42ebd1=_0x42eb();return _0x1020=function(_0x102079,_0x255017){_0x102079=_0x102079-0x159;let _0x361305=_0x42ebd1[_0x102079];return _0x361305;},_0x1020(_0x1871d1,_0x228a91);}module[_0x3fdfee(0x16f)]=o;