@opendesign-plus-test/components 0.0.1-rc.21 → 0.0.1-rc.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.
Files changed (149) hide show
  1. package/dist/chunk-OElCookieNotice.cjs.js +1 -1
  2. package/dist/chunk-OElCookieNotice.es.js +428 -137
  3. package/dist/components/OBanner.vue.d.ts +10 -1
  4. package/dist/components/OFooter.vue.d.ts +1 -1
  5. package/dist/components/OHeaderSearch.vue.d.ts +4 -4
  6. package/dist/components/activity/OActivityApproval.vue.d.ts +277 -0
  7. package/dist/components/activity/OActivityForm.vue.d.ts +140 -0
  8. package/dist/components/activity/OMyActivityCalendar.vue.d.ts +578 -0
  9. package/dist/components/activity/config.d.ts +15 -0
  10. package/dist/components/activity/data.d.ts +51 -0
  11. package/dist/components/activity/index.d.ts +623 -0
  12. package/dist/components/activity/types.d.ts +76 -0
  13. package/dist/components/meeting/OMeetingCalendar.vue.d.ts +309 -0
  14. package/dist/components/meeting/OMeetingForm.vue.d.ts +156 -0
  15. package/dist/components/meeting/OMyMeetingCalendar.vue.d.ts +582 -0
  16. package/dist/components/meeting/OSigMeetingCalendar.vue.d.ts +24 -0
  17. package/dist/components/meeting/components/OMeetingCalendarList.vue.d.ts +27 -0
  18. package/dist/components/meeting/components/OMeetingCalendarSelector.vue.d.ts +664 -0
  19. package/dist/components/meeting/components/OMeetingDetail.vue.d.ts +12 -0
  20. package/dist/components/meeting/components/OMeetingPlaybackSubtitles.vue.d.ts +5 -0
  21. package/dist/components/meeting/components/OMeetingPlaybackVideo.vue.d.ts +17 -0
  22. package/dist/components/meeting/components/OSigMeetingAside.vue.d.ts +16 -0
  23. package/dist/components/meeting/config.d.ts +27 -0
  24. package/dist/components/meeting/types.d.ts +140 -0
  25. package/dist/components/meeting/utils.d.ts +21 -0
  26. package/dist/components.cjs.js +224 -3
  27. package/dist/components.css +1 -1
  28. package/dist/components.es.js +43544 -2307
  29. package/dist/index.d.ts +2 -0
  30. package/package.json +6 -3
  31. package/scripts/generate-components-index.js +4 -0
  32. package/src/assets/meeting/svg-icons/icon-all.svg +3 -0
  33. package/src/assets/meeting/svg-icons/icon-backward.svg +4 -0
  34. package/src/assets/meeting/svg-icons/icon-calendar.svg +3 -0
  35. package/src/assets/meeting/svg-icons/icon-cancel.svg +4 -0
  36. package/src/assets/meeting/svg-icons/icon-captions.svg +4 -0
  37. package/src/assets/meeting/svg-icons/icon-close-captions.svg +6 -0
  38. package/src/assets/meeting/svg-icons/icon-close-fullscreen.svg +6 -0
  39. package/src/assets/meeting/svg-icons/icon-copy.svg +3 -0
  40. package/src/assets/meeting/svg-icons/icon-create.svg +5 -0
  41. package/src/assets/meeting/svg-icons/icon-delete.svg +7 -0
  42. package/src/assets/meeting/svg-icons/icon-empty.svg +31 -0
  43. package/src/assets/meeting/svg-icons/icon-empty_dark.svg +49 -0
  44. package/src/assets/meeting/svg-icons/icon-event.svg +3 -0
  45. package/src/assets/meeting/svg-icons/icon-export.svg +3 -0
  46. package/src/assets/meeting/svg-icons/icon-forward.svg +4 -0
  47. package/src/assets/meeting/svg-icons/icon-fullscreen.svg +6 -0
  48. package/src/assets/meeting/svg-icons/icon-help.svg +3 -0
  49. package/src/assets/meeting/svg-icons/icon-important.svg +4 -0
  50. package/src/assets/meeting/svg-icons/icon-info.svg +3 -0
  51. package/src/assets/meeting/svg-icons/icon-meet.svg +3 -0
  52. package/src/assets/meeting/svg-icons/icon-meeting-message.svg +5 -0
  53. package/src/assets/meeting/svg-icons/icon-meeting.svg +4 -0
  54. package/src/assets/meeting/svg-icons/icon-play.svg +5 -0
  55. package/src/assets/meeting/svg-icons/icon-playing-tip.svg +7 -0
  56. package/src/assets/meeting/svg-icons/icon-playing.svg +5 -0
  57. package/src/assets/meeting/svg-icons/icon-question.svg +4 -0
  58. package/src/assets/meeting/svg-icons/icon-sound.svg +5 -0
  59. package/src/assets/meeting/svg-icons/icon-speaker.svg +3 -0
  60. package/src/assets/meeting/svg-icons/icon-summit.svg +3 -0
  61. package/src/assets/meeting/svg-icons/icon-telligent.svg +3 -0
  62. package/src/assets/meeting/svg-icons/icon-tip.svg +3 -0
  63. package/src/assets/meeting/svg-icons/icon-todo.svg +4 -0
  64. package/src/assets/meeting/transparent.png +0 -0
  65. package/src/assets/svg-icons/icon-chevron-up.svg +3 -0
  66. package/src/assets/svg-icons/icon-filter.svg +3 -0
  67. package/src/assets/svg-icons/icon-loading.svg +4 -0
  68. package/src/assets/svg-icons/icon-search.svg +3 -0
  69. package/src/assets/svg-icons/icon-tips.svg +3 -0
  70. package/src/components/OBanner.vue +11 -3
  71. package/src/components/OFooter.vue +1 -1
  72. package/src/components/activity/OActivityApproval.vue +775 -0
  73. package/src/components/activity/OActivityForm.vue +465 -0
  74. package/src/components/activity/OMyActivityCalendar.vue +1342 -0
  75. package/src/components/activity/config.ts +130 -0
  76. package/src/components/activity/data.ts +365 -0
  77. package/src/components/activity/index.ts +24 -0
  78. package/src/components/activity/types.ts +83 -0
  79. package/src/components/common/MoreText.vue +119 -0
  80. package/src/components/common/ThFilter.vue +326 -0
  81. package/src/components/events/OEventsApply.vue +2 -86
  82. package/src/components/events/OEventsCalendar.vue +0 -25
  83. package/src/components/events/OEventsList.vue +0 -51
  84. package/src/components/events/index.ts +1 -0
  85. package/src/components/meeting/OMeetingCalendar.vue +865 -0
  86. package/src/components/meeting/OMeetingForm.vue +1035 -0
  87. package/src/components/meeting/OMeetingPlayback.vue +439 -0
  88. package/src/components/meeting/OMyMeetingCalendar.vue +1501 -0
  89. package/src/components/meeting/OSigMeetingCalendar.vue +411 -0
  90. package/src/components/meeting/components/OMeetingCalendarList.vue +462 -0
  91. package/src/components/meeting/components/OMeetingCalendarSelector.vue +206 -0
  92. package/src/components/meeting/components/OMeetingDetail.vue +189 -0
  93. package/src/components/meeting/components/OMeetingPlaybackSubtitles.vue +611 -0
  94. package/src/components/meeting/components/OMeetingPlaybackVideo.vue +741 -0
  95. package/src/components/meeting/components/OMyCalendarWrapper.vue +160 -0
  96. package/src/components/meeting/components/OSigMeetingAside.vue +197 -0
  97. package/src/components/meeting/config.ts +110 -0
  98. package/src/components/meeting/index.ts +45 -0
  99. package/src/components/meeting/types.ts +167 -0
  100. package/src/components/meeting/utils.ts +106 -0
  101. package/src/draft/Footer.vue +4 -4
  102. package/src/env.d.ts +15 -0
  103. package/src/i18n/en.ts +140 -0
  104. package/src/i18n/index.ts +18 -4
  105. package/src/i18n/zh.ts +140 -0
  106. package/src/index.ts +2 -0
  107. package/tsconfig.json +6 -2
  108. package/vite.config.ts +25 -9
  109. package/npmcachae/_cacache/content-v2/sha512/05/f7/dd881de8b21208ea65cfce17c65f29964c3897505819f81151b9798a3a6ab1a1114324192354ead15cd2c8d93f76cc9929af168066ec9cc7878d0fd87578 +0 -1
  110. package/npmcachae/_cacache/content-v2/sha512/08/b7/879230f8c2f3765920a6fd6113f4687141f1f645f96af7d95a0dee9113d1095d000fb78a5dd55c1860bbfb9b698ef6281b3874b03b2384222f61fe055fc4 +0 -1
  111. package/npmcachae/_cacache/content-v2/sha512/10/a0/a6626613c03ee052925a762e8675878efdf83dac64fafea43beb2a875f7d7c3907bb0ee30761253cd16021fd58911449594e1d3358675cbb7c48e62f220a +0 -1
  112. package/npmcachae/_cacache/content-v2/sha512/2e/a6/7cbcf55a98bbe2ca881d10e982ebf59211a0ec051eaf46eb1914df66cc35ae502ed6888850e51d8f45cd92695bac16961a642bc41508f8d5160a9ab617ab +0 -1
  113. package/npmcachae/_cacache/content-v2/sha512/92/8d/e5259c5d5cc2a625247f3c4d809192ca9482467e23683d74924a11e91a7997ad890b3d26adaf34df66d5329cc7a5fbde6713110cad05107a0b504e4fd4e8 +0 -1
  114. package/npmcachae/_cacache/content-v2/sha512/e9/45/9597d870127c35681155cec5fe52fde4e1aa0f778b996ee371e856aca850ee4c13aba74b0c3d3a89ff0ea4c9e1d33e64e53c31dc9cede0b31012695ee659 +0 -1
  115. package/npmcachae/_cacache/index-v5/16/4a/7195fcc6857299c4ab7e26014a8ae6e3c396507a2c8db3da1b74b005d574 +0 -3
  116. package/npmcachae/_cacache/index-v5/58/f0/4fe556f104b09be642895a82afa463fe560d9a0dc8f507efeef825a6905e +0 -3
  117. package/npmcachae/_cacache/index-v5/67/7d/0b50dc4c09555fc922ccf43c46994f1a0a5ff47dc0a5d5cf41437ac2d3e6 +0 -3
  118. package/npmcachae/_cacache/index-v5/8f/28/353f8839e030ab11aab3e7d9f1b8c053403e9f593cf6d4aa6ec8fdd7610d +0 -3
  119. package/npmcachae/_cacache/index-v5/97/10/0fcf20eb29d0726bd820822f6729718464b591b0e6901217c956740e943c +0 -3
  120. package/npmcachae/_cacache/index-v5/db/89/a0a4f35f593105624ab39339962d9e9b5cc65ed0c346b0732fb8dd73721d +0 -3
  121. package/npmcachae/_logs/2026-03-26T14_10_35_885Z-debug-0.log +0 -171
  122. package/npmcachae/_logs/2026-03-26T14_10_38_617Z-debug-0.log +0 -4227
  123. package/npmcachae/_logs/2026-03-26T14_10_45_316Z-debug-0.log +0 -4228
  124. package/npmcachae/_logs/2026-03-26T14_10_48_169Z-debug-0.log +0 -4228
  125. package/npmcachae/_logs/2026-03-26T14_10_51_306Z-debug-0.log +0 -464
  126. package/npmcachae/_logs/2026-03-26T14_10_53_911Z-debug-0.log +0 -464
  127. package/npmcachae/_logs/2026-03-26T14_10_56_398Z-debug-0.log +0 -464
  128. package/npmcachae/_logs/2026-03-26T14_10_58_861Z-debug-0.log +0 -464
  129. package/npmcachae/_logs/2026-03-26T14_11_01_337Z-debug-0.log +0 -464
  130. package/npmcachae/_logs/2026-03-26T14_11_03_851Z-debug-0.log +0 -464
  131. package/npmcachae/_logs/2026-03-26T14_11_08_024Z-debug-0.log +0 -464
  132. package/npmcachae/_update-notifier-last-checked +0 -0
  133. package/src/components/meeting/npmcachae/_cacache/content-v2/sha512/3e/17/1865217b9acb9f4921c53a09b5c76587cd2ab748beb2699ff6cfb1341d73b1aa56ed91ffc5ab2c9c9b3fbe626103b35d9a79ff29ff6b8cbb8d89755fe1a2 +0 -1
  134. package/src/components/meeting/npmcachae/_cacache/content-v2/sha512/a6/15/47bb7552ec9248079e839a5feecc1742d4de19524fdf041cf581701cf4760a5025106036145e279ba193b07c8fa5b07ae3d75f1b6032f0cb2219115b6167 +0 -1
  135. package/src/components/meeting/npmcachae/_cacache/content-v2/sha512/d1/4c/133b32e09c97101a27a07cc4432f94e470cff02d120d21babcea77c3f5cd436793516dc1a8e282ee1a568f923c148b1a48f4a43233462a530d35e8b41c67 +0 -1
  136. package/src/components/meeting/npmcachae/_cacache/index-v5/54/0d/a4909047714a0a7198bb9bd37020992464e47c79a791889919b84d90aab0 +0 -3
  137. package/src/components/meeting/npmcachae/_cacache/index-v5/8e/2b/21a79778e2ac08cf5663baf83cb35f951995a496007eb2e2f7fba54021a4 +0 -3
  138. package/src/components/meeting/npmcachae/_cacache/index-v5/eb/a0/b70c8132e5b57a0f1e129b8cc941796420a9c147c0baa680710083740898 +0 -2
  139. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_03_54_955Z-debug-0.log +0 -277
  140. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_03_57_842Z-debug-0.log +0 -277
  141. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_04_00_016Z-debug-0.log +0 -277
  142. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_04_02_191Z-debug-0.log +0 -277
  143. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_04_04_425Z-debug-0.log +0 -277
  144. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_04_06_642Z-debug-0.log +0 -277
  145. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_04_08_826Z-debug-0.log +0 -277
  146. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_25_36_140Z-debug-0.log +0 -433
  147. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_25_39_573Z-debug-0.log +0 -433
  148. package/src/components/meeting/npmcachae/_logs/2026-03-20T07_25_42_134Z-debug-0.log +0 -212
  149. package/src/components/meeting/npmcachae/_update-notifier-last-checked +0 -0
@@ -1,29 +1,169 @@
1
- import { defineComponent as G, resolveComponent as F, h as H, ref as O, onMounted as P, getCurrentInstance as W, inject as Z, computed as N, watch as q, createBlock as U, openBlock as _, unref as e, withCtx as d, Teleport as J, createElementBlock as S, createCommentVNode as $, createElementVNode as t, createVNode as p, normalizeClass as Q, createTextVNode as m, toDisplayString as i, Fragment as X, renderSlot as ee, nextTick as oe } from "vue";
2
- import { useScreen as te } from "@opendesign-plus/composables";
3
- import { isString as se, isUndefined as ne } from "@opensig/opendesign";
4
- import { ElButton as A, ElIcon as ie, ElDialog as le, ElSwitch as ae } from "element-plus";
5
- import { useVModel as ce } from "@vueuse/core";
6
- const re = (n, l) => {
7
- const c = n.__vccOpts || n;
8
- for (const [h, y] of l)
9
- c[h] = y;
1
+ import { defineComponent as P, resolveComponent as W, h as K, ref as A, onMounted as V, getCurrentInstance as F, inject as Z, computed as B, watch as q, createBlock as L, openBlock as S, unref as e, withCtx as u, Teleport as J, createElementBlock as E, createCommentVNode as U, createElementVNode as n, createVNode as p, normalizeClass as Q, createTextVNode as h, toDisplayString as m, Fragment as X, renderSlot as ee, nextTick as te } from "vue";
2
+ import { useScreen as ne } from "@opendesign-plus/composables";
3
+ import { isUndefined as ie, isString as oe } from "@opensig/opendesign";
4
+ import { ElButton as D, ElIcon as me, ElDialog as ae, ElSwitch as se } from "element-plus";
5
+ import { useVModel as ge } from "@vueuse/core";
6
+ const ce = (i, a) => {
7
+ const c = i.__vccOpts || i;
8
+ for (const [k, f] of a)
9
+ c[k] = f;
10
10
  return c;
11
- }, ue = (n) => {
12
- const l = O(!1);
13
- return P(() => {
14
- l.value = !0;
15
- }), () => l.value && n.default ? n.default() : null;
16
- }, de = G({
17
- setup(n, { slots: l }) {
18
- const c = F("ClientOnly");
19
- return c && typeof c != "string" ? () => H(c, null, { default: () => l.default ? l.default() : null }) : ue(l);
11
+ }, le = (i) => {
12
+ const a = A(!1);
13
+ return V(() => {
14
+ a.value = !0;
15
+ }), () => a.value && i.default ? i.default() : null;
16
+ }, re = P({
17
+ setup(i, { slots: a }) {
18
+ const c = W("ClientOnly");
19
+ return c && typeof c != "string" ? () => K(c, null, { default: () => a.default ? a.default() : null }) : le(a);
20
20
  }
21
- }), ke = {
21
+ }), de = {
22
22
  search: "搜索",
23
23
  "search.hot": "热门搜索",
24
24
  "search.placeholder": "搜索",
25
25
  "search.expandedPlaceholder": "请输入搜索内容",
26
26
  "search.history": "历史搜索",
27
+ "meeting.audioToText": "语音转文字",
28
+ "meeting.item1": "发起人:",
29
+ "meeting.item2": "SIG组:",
30
+ "meeting.item3": "会议时间:",
31
+ "meeting.item4": "会议详情:",
32
+ "meeting.baseInfo": "基本信息",
33
+ "meeting.subject": "会议议题",
34
+ "meeting.speaker": "发言人",
35
+ "meeting.replay": "智能回放",
36
+ "meeting.monday": "星期一",
37
+ "meeting.tuesday": "星期二",
38
+ "meeting.wednesday": "星期三",
39
+ "meeting.thursday": "星期四",
40
+ "meeting.friday": "星期五",
41
+ "meeting.saturday": "星期六",
42
+ "meeting.sunday": "星期日",
43
+ "meeting.sigGroup": "{0} SIG小组",
44
+ "meeting.invite": "邀请您参加",
45
+ "meeting.edit": "【修改】",
46
+ "meeting.cancel": "【取消】",
47
+ "meeting.dateTime": "{0} {1}",
48
+ "meeting.meeting": "会议",
49
+ "meeting.cycleMeeting": "周期会议",
50
+ "meeting.meetingText": "{0} 的{1}",
51
+ "meeting.singleMeetingText": "{0} 的{1}",
52
+ "meeting.cycleMeetingText": "{startDate} 至 {endDate} {cycleType} {startTime} 到 {endTime}的周期会议",
53
+ "meeting.cycleMeetingText2": "{cycleType} {startTime} 到 {endTime} (UTC+08:00)Beijing 有效期从{startDate} 至 {endDate}",
54
+ "meeting.cycleDay": "每天",
55
+ "meeting.cycleWeek.one": "每{1}周{0}",
56
+ "meeting.cycleWeek.other": "每{1}周{0}",
57
+ "meeting.cycleSplit": "、",
58
+ "meeting.cycleMonth": "每月{0}号",
59
+ "meeting.myMeeting": "我的会议",
60
+ "meeting.meetingCancel": "“{0}”会议取消成功",
61
+ "meeting.todayNonMeeting": "当日暂无会议,敬请期待",
62
+ "meeting.online": "线上",
63
+ "meeting.offline": "线下",
64
+ "meeting.meetingSingle": "仅此会议",
65
+ "meeting.meetingCycle": "整个周期会议",
66
+ "meeting.bookMeeting": "预定会议",
67
+ "meeting.book": "预定",
68
+ "meeting.meetingCancelled": "【已取消】",
69
+ "meeting.cycle": "周期",
70
+ "meeting.joinMeeting": "加入会议",
71
+ "meeting.sign": "我要报名",
72
+ "meeting.meetingSummary": "会议纪要",
73
+ "meeting.viewRecord": "查看回放",
74
+ "meeting.editMeeting": "修改会议",
75
+ "meeting.cancelMeeting": "取消会议",
76
+ "meeting.nextMonth": "下个月",
77
+ "meeting.preMonth": "上个月",
78
+ "meeting.emptyMeeting": "暂无会议,去 ",
79
+ "meeting.meetingHandleText": "请选择您要{0}的会议",
80
+ "meeting.edit2": "修改",
81
+ "meeting.confirmCancel": "确定取消",
82
+ "meeting.confirmCancelDesc": "是否确认要取消“{0}”会议?",
83
+ "meeting.enterMeetingName": "请输入会议名称",
84
+ "meeting.meetingNameTooLong": "会议名称不能超过128个字符",
85
+ "meeting.meetingAgendaTooLong": "会议内容不能超过4096个字符",
86
+ "meeting.meetingSig": "所属SIG",
87
+ "meeting.selectSig": "请选择所属SIG",
88
+ "meeting.enterEtherpad": "请输入Etherpad",
89
+ "meeting.etherpadDesc": "会议辅助工具,可以在线记录会议纪要和讨论。",
90
+ "meeting.selectDate": "请选择日期",
91
+ "meeting.finishMeetingConfig": "请完善会议配置",
92
+ "meeting.selectMeetingDate": "请选择会议日期",
93
+ "meeting.selectMeetingTime": "请选择会议时间",
94
+ "meeting.invalidMeetingDuration": "所选时间段内无时间可创建会议",
95
+ "meeting.endTimeAfterStartTime": "结束时间必须大于开始时间",
96
+ "meeting.startTimeBeforeEndTime": "开始时间必须大于当前时间",
97
+ "meeting.selectPlatform": "请选择会议平台",
98
+ "meeting.meetingPlatform": "会议平台",
99
+ "meeting.meetingAgenda": "会议内容",
100
+ "meeting.enterMeetingAgenda": "请输入会议内容",
101
+ "meeting.emailTooLong": "邮箱地址不能超过1020个字符",
102
+ "meeting.enterEmail": "请输入邮件地址,多个邮件地址以“;”间隔",
103
+ "meeting.meetingEmail": "邮件地址",
104
+ "meeting.meetingEmailDesc": "默认会向已订阅SIG组成员发送会议通知也可添加其他SIG组邮件地址或个人邮件地址。",
105
+ "meeting.sigGroupEmail": "SIG组邮件列表",
106
+ "meeting.emailInvalid": "请输入正确的邮箱地址",
107
+ "meeting.singleEmailTooLong": "每个邮箱地址不能超过50个字符",
108
+ "meeting.emailCountTooLong": "最多添加20个邮箱地址",
109
+ "meeting.meetingHandleSuccess": "“{0}”会议{1}",
110
+ "meeting.editSuccess": "编辑成功",
111
+ "meeting.booSuccess": "预定成功",
112
+ "meeting.meetingName": "会议名称",
113
+ "meeting.meetingTime": "会议时间",
114
+ "meeting.nonRepeat": "不重复",
115
+ "meeting.isRepeat": "重复",
116
+ "meeting.every": "每",
117
+ "meeting.in": "在",
118
+ "meeting.selectRepeatDate": "请选择重复日期",
119
+ "meeting.meetingDuration": "时间段",
120
+ "meeting.startDate": "开始日期",
121
+ "meeting.endDate": "结束日期",
122
+ "meeting.meetingDate": "会议日期",
123
+ "meeting.startTime": "开始时间",
124
+ "meeting.endTime": "结束时间",
125
+ "meeting.meetingRecord": "会议录制",
126
+ "meeting.meetingRecordDesc": "开启后将自动录屏,本服务由{0}会议提供。并将在1个工作日内自动上传会议AI版本的链接回放。",
127
+ "meeting.day0": "天",
128
+ "meeting.week0": "周",
129
+ "meeting.month0": "月",
130
+ "meeting.day": "天",
131
+ "meeting.week": "周",
132
+ "meeting.month": "月",
133
+ "meeting.meetingDesc": "使用openUBMC会议预定功能需要SIG组Maintainer或Committer身份权限",
134
+ "meeting.meetingBook": "预定会议",
135
+ "meeting.latestMeeting": "最新日程:",
136
+ "meeting.meetingTypeAll": "全部",
137
+ "meeting.meetingTypeMeet": "会议",
138
+ "meeting.meetingTypeEvents": "活动",
139
+ "meeting.meetingTypeSummit": "峰会",
140
+ "meeting.allSigs": "全部SIG组",
141
+ "meeting.meetingCreator": "发起人",
142
+ "meeting.meetingDate2": "会议时间",
143
+ "meeting.meetingId": "会议ID",
144
+ "meeting.meetingLink": "会议链接",
145
+ "meeting.meetingEmptyText": "当日没有活动,敬请期待",
146
+ "meeting.versionBanner": "openUBMC 25.06社区发行版正式上线",
147
+ "meeting.version2509Banner": "openUBMC 25.09社区发行版正式上线",
148
+ "meeting.version2512Banner": "openUBMC 25.12 LTS 社区发行版正式上线",
149
+ "meeting.sigs": "SIG 组",
150
+ "meeting.activityAddress": "活动地点",
151
+ "meeting.meetingTopic": "会议主题:",
152
+ "meeting.meetingDetail": "会议详情",
153
+ "meeting.meetingEtherpad": "会议纪要",
154
+ "meeting.meetingReplay": "智能回放",
155
+ "meeting.searchSubtitlePlaceholder": "请输入搜索内容",
156
+ "meeting.detailHalfYearMeetings": "默认显示近半年的会议。",
157
+ "common.confirm": "确认",
158
+ "common.cancel": "取消",
159
+ "common.copySuccess": "复制成功",
160
+ "common.close": "关闭",
161
+ "common.all": "全部",
162
+ "common.seeMore": "查看详情",
163
+ "common.save": "保存",
164
+ "common.detail": "详情",
165
+ "common.reset": "重置",
166
+ "common.more": "更多",
27
167
  "cookie.desc": "我们使用cookie来确保您的高速浏览体验。继续浏览本站,即表示您同意我们使用cookie。",
28
168
  "cookie.about": "查看详情",
29
169
  "events.status": "活动状态",
@@ -31,12 +171,152 @@ const re = (n, l) => {
31
171
  "events.statusIng": "进行中",
32
172
  "events.statusFinish": "已结束",
33
173
  "events.searchPlaceholder": "搜索活动名称、地点"
34
- }, pe = {
174
+ }, ue = {
35
175
  search: "Search",
36
176
  "search.hot": "Top search",
37
177
  "search.placeholder": "Please enter the content",
38
178
  "search.expandedPlaceholder": "Please enter the content",
39
179
  "search.history": "History",
180
+ "meeting.audioToText": "Speech to Text",
181
+ "meeting.item1": "Convener: ",
182
+ "meeting.item2": "SIG: ",
183
+ "meeting.item3": "Time: ",
184
+ "meeting.item4": "Details: ",
185
+ "meeting.baseInfo": "Basic Info",
186
+ "meeting.subject": "Topics",
187
+ "meeting.speaker": "Speaker",
188
+ "meeting.replay": "Intelligent Playback",
189
+ "meeting.monday": "Monday",
190
+ "meeting.tuesday": "Tuesday",
191
+ "meeting.wednesday": "Wednesday",
192
+ "meeting.thursday": "Thursday",
193
+ "meeting.friday": "Friday",
194
+ "meeting.saturday": "Saturday",
195
+ "meeting.sunday": "Sunday",
196
+ "meeting.sigGroup": "The {0} group",
197
+ "meeting.invite": " invites you to",
198
+ "meeting.edit": " [modified]",
199
+ "meeting.cancel": " [canceled]",
200
+ "meeting.dateTime": " {1} on {0}",
201
+ "meeting.meeting": " the meeting",
202
+ "meeting.cycleMeeting": " the recurring meeting",
203
+ "meeting.meetingText": " {1} at {0}.",
204
+ "meeting.singleMeetingText": " {1} at {0}.",
205
+ "meeting.cycleMeetingText": " scheduled at {startTime} to {endTime} {cycleType} from {startDate} to {endDate}.",
206
+ "meeting.cycleMeetingText2": "{startTime} to {endTime} (UTC+08:00)Beijing {cycleType} from {startDate} to {endDate}.",
207
+ "meeting.cycleDay": " every day",
208
+ "meeting.cycleWeek.one": "on {0} every week",
209
+ "meeting.cycleWeek.other": "on {0} every {1} weeks",
210
+ "meeting.cycleSplit": ", ",
211
+ "meeting.cycleMonth": " on {0} of every month",
212
+ "meeting.myMeeting": "My Meetings",
213
+ "meeting.meetingCancel": "[{0}] meeting canceled.",
214
+ "meeting.todayNonMeeting": "No meetings scheduled for today.",
215
+ "meeting.online": "线上",
216
+ "meeting.offline": "线下",
217
+ "meeting.meetingSingle": "This meeting",
218
+ "meeting.meetingCycle": "All recurring meetings",
219
+ "meeting.bookMeeting": "Book Meeting",
220
+ "meeting.book": "Book",
221
+ "meeting.meetingCancelled": "[Canceled]",
222
+ "meeting.cycle": "Recurrence",
223
+ "meeting.joinMeeting": "Join",
224
+ "meeting.sign": "Sign Up",
225
+ "meeting.meetingSummary": "Minutes",
226
+ "meeting.viewRecord": "Playback",
227
+ "meeting.editMeeting": "Modify",
228
+ "meeting.cancelMeeting": "Cancel",
229
+ "meeting.nextMonth": "Next month",
230
+ "meeting.preMonth": "Last month",
231
+ "meeting.emptyMeeting": "No meetings. ",
232
+ "meeting.meetingHandleText": "Which do you want to {0}?",
233
+ "meeting.edit2": "modify",
234
+ "meeting.confirmCancel": "Cancel",
235
+ "meeting.confirmCancelDesc": 'Are you sure you want to cancel the "{0}" meeting?',
236
+ "meeting.enterMeetingName": "Enter a meeting title.",
237
+ "meeting.meetingNameTooLong": "Enter a maximum of 128 characters.",
238
+ "meeting.meetingAgendaTooLong": "Enter a maximum of 4096 characters.",
239
+ "meeting.meetingSig": "SIG",
240
+ "meeting.selectSig": "Select a SIG.",
241
+ "meeting.enterEtherpad": "Enter Etherpad.",
242
+ "meeting.etherpadDesc": "A meeting assistant for recording meeting minutes and conversations.",
243
+ "meeting.selectDate": "Select a date.",
244
+ "meeting.finishMeetingConfig": "Complete the meeting settings.",
245
+ "meeting.selectMeetingDate": "Select a date.",
246
+ "meeting.selectMeetingTime": "Select time.",
247
+ "meeting.invalidMeetingDuration": "No time slots available for meetings within the selected timeframe.",
248
+ "meeting.endTimeAfterStartTime": "The end time must be later than the start time.",
249
+ "meeting.startTimeBeforeEndTime": "The start time must be later than the current time.",
250
+ "meeting.selectPlatform": "Select platform.",
251
+ "meeting.meetingPlatform": "Platform",
252
+ "meeting.meetingAgenda": "Content",
253
+ "meeting.enterMeetingAgenda": "Enter the meeting content.",
254
+ "meeting.emailTooLong": "Enter a maximum of 1020 characters for the email addresses.",
255
+ "meeting.enterEmail": "Enter email addresses, separated by commas (;).",
256
+ "meeting.meetingEmail": "Email",
257
+ "meeting.meetingEmailDesc": "The system automatically sends notifications to subscribed SIG members. You can include additional SIG or individual email addresses.",
258
+ "meeting.sigGroupEmail": "SIG Mailing List",
259
+ "meeting.emailInvalid": "Enter a valid email address.",
260
+ "meeting.singleEmailTooLong": "Enter a maximum of 100 characters for each email address.",
261
+ "meeting.emailCountTooLong": "Enter a maximum of 20 email addresses.",
262
+ "meeting.meetingHandleSuccess": '"{0}" meeting {1}.',
263
+ "meeting.editSuccess": "edited",
264
+ "meeting.booSuccess": "booked",
265
+ "meeting.meetingName": "Title",
266
+ "meeting.meetingTime": "Time",
267
+ "meeting.nonRepeat": "Once",
268
+ "meeting.isRepeat": "Recurrence",
269
+ "meeting.every": "Every",
270
+ "meeting.in": "On",
271
+ "meeting.selectRepeatDate": "Select a date.",
272
+ "meeting.meetingDuration": "Period",
273
+ "meeting.startDate": "Start date",
274
+ "meeting.endDate": "End date",
275
+ "meeting.meetingDate": "Date",
276
+ "meeting.startTime": "Start time",
277
+ "meeting.endTime": "End time",
278
+ "meeting.meetingRecord": "Recording",
279
+ "meeting.meetingRecordDesc": "Enables auto screen recording. This service is provided by {0} Meeting. AI-powered playback will be automatically uploaded within one working day.",
280
+ "meeting.day0": "day(s)",
281
+ "meeting.week0": "week(s)",
282
+ "meeting.month0": "month(s)",
283
+ "meeting.day": " day",
284
+ "meeting.week": " week",
285
+ "meeting.month": " month",
286
+ "meeting.meetingDesc": "To book a meeting, the SIG Maintainer or Committer access is required.",
287
+ "meeting.meetingBook": "Book Meeting",
288
+ "meeting.latestMeeting": "Latest Schedule:",
289
+ "meeting.meetingTypeAll": "All",
290
+ "meeting.meetingTypeMeet": "Meetings",
291
+ "meeting.meetingTypeEvents": "Activities",
292
+ "meeting.meetingTypeSummit": "Summit",
293
+ "meeting.allSigs": "All SIGs",
294
+ "meeting.meetingCreator": "Organizer",
295
+ "meeting.meetingDate2": "Time",
296
+ "meeting.meetingId": "Meeting ID",
297
+ "meeting.meetingLink": "Meeting Link",
298
+ "meeting.meetingEmptyText": "No activities scheduled for today.",
299
+ "meeting.versionBanner": "openUBMC 25.06 Available Now",
300
+ "meeting.version2509Banner": "openUBMC 25.09 Available Now",
301
+ "meeting.version2512Banner": "openUBMC 25.12 LTS 社区发行版正式上线",
302
+ "meeting.sigs": "SIG Groups",
303
+ "meeting.activityAddress": "Address",
304
+ "meeting.meetingTopic": "Topics: ",
305
+ "meeting.meetingDetail": "Details",
306
+ "meeting.meetingEtherpad": "Etherpad",
307
+ "meeting.meetingReplay": "Playback",
308
+ "meeting.searchSubtitlePlaceholder": "Enter",
309
+ "meeting.detailHalfYearMeetings": "默认显示近半年的会议。",
310
+ "common.confirm": "Confirm",
311
+ "common.cancel": "Cancel",
312
+ "common.copySuccess": "Copied Successfully",
313
+ "common.close": "Close",
314
+ "common.all": "All",
315
+ "common.seeMore": "View More",
316
+ "common.save": "Save",
317
+ "common.detail": "Detail",
318
+ "common.reset": "Reset",
319
+ "common.more": "More",
40
320
  "cookie.title": "{0} Community Respects Your Privacy",
41
321
  "cookie.desc": 'This site uses cookies from us and our partners to improve your browsing experience and make the site work properly. By clicking "Accept All", you consent to the use of cookies. By clicking "Reject All", you disable the use of unnecessary cookies. You can manage your cookie settings by clicking "Manage Cookies". For more information or to change your cookie settings, please refer to our ',
42
322
  "cookie.about": "About Cookies",
@@ -50,31 +330,41 @@ const re = (n, l) => {
50
330
  "cookie.analyticalCookieDetail": "We will use these cookies only with your consent. These cookies help us make improvements by collecting statistics such as the number of visits and traffic sources.",
51
331
  "cookie.saveSetting": "Save Settings",
52
332
  "cookie.setting": "Cookie settings"
53
- }, me = Symbol("provide-config-provider"), he = O({
54
- zh: ke,
55
- en: pe
333
+ }, ye = Symbol("provide-config-provider"), pe = A({
334
+ zh: de,
335
+ en: ue
56
336
  });
57
- function fe() {
58
- const l = W() ? Z(me) : null, c = N(() => (l == null ? void 0 : l.locale) || "zh");
337
+ var he = /* @__PURE__ */ ((i) => (i.ZH = "zh", i.EN = "en", i))(he || {});
338
+ function ke() {
339
+ const a = F() ? Z(ye) : null, c = B(() => (a == null ? void 0 : a.locale) || "zh");
59
340
  return {
60
341
  locale: c,
61
- t: (y, ...E) => {
62
- const o = he.value[c.value][y];
63
- return E.length > 0 && se(o) ? o.replace(/{(\d+)}/g, (k, r) => E[r] ?? k) : (ne(o) && console.warn(`Cannot translate the value of keypath '${y}'`), o);
342
+ t: (f, ...y) => {
343
+ const t = pe.value[c.value][f];
344
+ if (ie(t))
345
+ return console.warn(`Cannot translate the value of keypath '${f}'`), f;
346
+ if (y.length > 0 && oe(t)) {
347
+ if (y.length === 1 && typeof y[0] == "object" && y[0] !== null) {
348
+ const l = y[0];
349
+ return t.replace(/{(\w+)}/g, (s, r) => l[r] ?? s);
350
+ }
351
+ return t.replace(/{(\d+)}/g, (l, s) => y[s] ?? l);
352
+ }
353
+ return t;
64
354
  }
65
355
  };
66
356
  }
67
- const ye = {
357
+ const fe = {
68
358
  key: 0,
69
359
  class: "cookie-notice"
70
- }, ve = { class: "cookie-notice-content" }, ge = ["type"], _e = { class: "cookie-notice-left" }, Ce = {
360
+ }, ve = { class: "cookie-notice-content" }, Te = ["type"], Se = { class: "cookie-notice-left" }, Ce = {
71
361
  key: 0,
72
362
  class: "cookie-desc",
73
363
  style: { "margin-top": "0" }
74
- }, be = ["href"], we = { class: "cookie-title" }, Ae = { class: "cookie-desc" }, Ee = ["href"], Se = {
364
+ }, Me = ["href"], be = { class: "cookie-title" }, De = { class: "cookie-desc" }, Ee = ["href"], we = {
75
365
  key: 0,
76
366
  class: "cookie-notice-right"
77
- }, De = { class: "cookie-dlg-content" }, Oe = { class: "content-item" }, Ve = { class: "item-header" }, xe = { class: "item-title" }, Ie = { class: "item-extra" }, Ne = { class: "item-detail" }, Te = { class: "content-item" }, Be = { class: "item-header" }, Re = { class: "item-title" }, Ue = { class: "item-extra" }, $e = { class: "item-detail" }, je = "0", j = "1", Ge = "2", D = "3", Pe = "agreed-cookiepolicy-zh", ze = "agreed-cookiepolicy-en", Ke = /* @__PURE__ */ G({
367
+ }, Ae = { class: "cookie-dlg-content" }, _e = { class: "content-item" }, Ie = { class: "item-header" }, xe = { class: "item-title" }, Be = { class: "item-extra" }, Ge = { class: "item-detail" }, Ne = { class: "content-item" }, Re = { class: "item-header" }, Le = { class: "item-title" }, Ue = { class: "item-extra" }, Oe = { class: "item-detail" }, Pe = "0", O = "1", Ve = "2", w = "3", je = "agreed-cookiepolicy-zh", He = "agreed-cookiepolicy-en", Ye = /* @__PURE__ */ P({
78
368
  __name: "OElCookieNotice",
79
369
  props: {
80
370
  visible: { type: Boolean },
@@ -85,116 +375,116 @@ const ye = {
85
375
  cookieDomain: {}
86
376
  },
87
377
  emits: ["update:visible"],
88
- setup(n, { expose: l, emit: c }) {
89
- const h = n, y = c, { lePadV: E } = te(), { locale: C, t: o } = fe(), k = N(() => C.value === "zh"), r = N(() => k.value ? Pe : ze), f = O(!1), v = ce(h, "visible", y, { defaultValue: !1 }), b = (a) => {
90
- const s = document.cookie.split(";").find((u) => u.split("=")[0].trim() === encodeURIComponent(a));
91
- return s ? decodeURIComponent(s.split("=")[1]) : null;
92
- }, V = (a, s, u, Y) => {
93
- const M = `; max-age=${u * 24 * 60 * 60}`;
94
- document.cookie = `${encodeURIComponent(a)}=${encodeURIComponent(s)}${M}; path=/; domain=${Y}`;
95
- }, g = (a) => {
96
- typeof a == "boolean" ? v.value = a : v.value = !v.value, oe(() => {
97
- !v.value && k.value && b(r.value) !== D && V(r.value, D, 180, h.cookieDomain ?? location.hostname);
378
+ setup(i, { expose: a, emit: c }) {
379
+ const k = i, f = c, { lePadV: y } = ne(), { locale: C, t } = ke(), l = B(() => C.value === "zh"), s = B(() => l.value ? je : He), r = A(!1), v = ge(k, "visible", f, { defaultValue: !1 }), M = (g) => {
380
+ const o = document.cookie.split(";").find((d) => d.split("=")[0].trim() === encodeURIComponent(g));
381
+ return o ? decodeURIComponent(o.split("=")[1]) : null;
382
+ }, _ = (g, o, d, $) => {
383
+ const z = `; max-age=${d * 24 * 60 * 60}`;
384
+ document.cookie = `${encodeURIComponent(g)}=${encodeURIComponent(o)}${z}; path=/; domain=${$}`;
385
+ }, T = (g) => {
386
+ typeof g == "boolean" ? v.value = g : v.value = !v.value, te(() => {
387
+ !v.value && l.value && M(s.value) !== w && _(s.value, w, 180, k.cookieDomain ?? location.hostname);
98
388
  });
99
- }, w = O(!1), x = (a) => {
100
- typeof a == "boolean" ? w.value = a : w.value = !w.value;
101
- }, T = () => k.value ? b(r.value) !== D : (b(r.value) ?? "0") === je, B = () => k.value ? b(r.value) === D : b(r.value) === j;
102
- P(() => {
103
- T() && g(!0);
389
+ }, b = A(!1), I = (g) => {
390
+ typeof g == "boolean" ? b.value = g : b.value = !b.value;
391
+ }, G = () => l.value ? M(s.value) !== w : (M(s.value) ?? "0") === Pe, N = () => l.value ? M(s.value) === w : M(s.value) === O;
392
+ V(() => {
393
+ G() && T(!0);
104
394
  }), q(C, () => {
105
- g(T());
395
+ T(G());
106
396
  });
107
- const I = () => {
108
- f.value = !0, V(r.value, j, 180, h.cookieDomain ?? location.hostname), g(!1);
397
+ const x = () => {
398
+ r.value = !0, _(s.value, O, 180, k.cookieDomain ?? location.hostname), T(!1);
109
399
  }, R = () => {
110
- f.value = !1, V(r.value, Ge, 180, h.cookieDomain ?? location.hostname), g(!1);
111
- }, z = () => {
112
- f.value ? I() : R(), x(!1);
113
- }, K = () => {
114
- f.value = !0, I(), x(!1);
115
- }, L = () => {
116
- f.value = B();
400
+ r.value = !1, _(s.value, Ve, 180, k.cookieDomain ?? location.hostname), T(!1);
401
+ }, j = () => {
402
+ r.value ? x() : R(), I(!1);
403
+ }, H = () => {
404
+ r.value = !0, x(), I(!1);
405
+ }, Y = () => {
406
+ r.value = N();
117
407
  };
118
- return l({
408
+ return a({
119
409
  check() {
120
- B() === v.value && g();
410
+ N() === v.value && T();
121
411
  }
122
- }), (a, s) => (_(), U(e(de), null, {
123
- default: d(() => [
124
- (_(), U(J, {
125
- to: n.wrapper || "#app"
412
+ }), (g, o) => (S(), L(e(re), null, {
413
+ default: u(() => [
414
+ (S(), L(J, {
415
+ to: i.wrapper || "#app"
126
416
  }, [
127
- e(v) ? (_(), S("div", ye, [
128
- t("div", ve, [
129
- t("div", {
417
+ e(v) ? (S(), E("div", fe, [
418
+ n("div", ve, [
419
+ n("div", {
130
420
  type: e(C),
131
- class: Q({ "cookie-notice-wrap-grid": n.enableGrid, "cookie-notice-wrap": !n.enableGrid })
421
+ class: Q({ "cookie-notice-wrap-grid": i.enableGrid, "cookie-notice-wrap": !i.enableGrid })
132
422
  }, [
133
- t("div", _e, [
134
- k.value ? (_(), S("p", Ce, [
135
- m(i(e(o)("cookie.desc")) + " ", 1),
136
- t("a", {
137
- href: n.detailUrl,
423
+ n("div", Se, [
424
+ l.value ? (S(), E("p", Ce, [
425
+ h(m(e(t)("cookie.desc")) + " ", 1),
426
+ n("a", {
427
+ href: i.detailUrl,
138
428
  target: "_blank",
139
429
  rel: "noopener noreferrer"
140
- }, i(e(o)("cookie.about")), 9, be)
141
- ])) : (_(), S(X, { key: 1 }, [
142
- t("p", we, i(e(o)("cookie.title", [n.community])), 1),
143
- t("p", Ae, [
144
- m(i(e(o)("cookie.desc")) + " ", 1),
145
- t("a", {
146
- href: n.detailUrl,
430
+ }, m(e(t)("cookie.about")), 9, Me)
431
+ ])) : (S(), E(X, { key: 1 }, [
432
+ n("p", be, m(e(t)("cookie.title", [i.community])), 1),
433
+ n("p", De, [
434
+ h(m(e(t)("cookie.desc")) + " ", 1),
435
+ n("a", {
436
+ href: i.detailUrl,
147
437
  target: "_blank",
148
438
  rel: "noopener noreferrer"
149
- }, i(e(o)("cookie.about")), 9, Ee),
150
- s[4] || (s[4] = m(". ", -1))
439
+ }, m(e(t)("cookie.about")), 9, Ee),
440
+ o[4] || (o[4] = h(". ", -1))
151
441
  ])
152
442
  ], 64))
153
443
  ]),
154
- k.value ? $("", !0) : (_(), S("div", Se, [
155
- p(e(A), {
444
+ l.value ? U("", !0) : (S(), E("div", we, [
445
+ p(e(D), {
156
446
  round: "",
157
447
  type: "primary",
158
- onClick: I
448
+ onClick: x
159
449
  }, {
160
- default: d(() => [
161
- m(i(e(o)("cookie.acceptAll")), 1)
450
+ default: u(() => [
451
+ h(m(e(t)("cookie.acceptAll")), 1)
162
452
  ]),
163
453
  _: 1
164
454
  }),
165
- p(e(A), {
455
+ p(e(D), {
166
456
  round: "",
167
457
  type: "primary",
168
458
  onClick: R
169
459
  }, {
170
- default: d(() => [
171
- m(i(e(o)("cookie.rejectAll")), 1)
460
+ default: u(() => [
461
+ h(m(e(t)("cookie.rejectAll")), 1)
172
462
  ]),
173
463
  _: 1
174
464
  }),
175
- p(e(A), {
465
+ p(e(D), {
176
466
  round: "",
177
467
  type: "primary",
178
- onClick: s[0] || (s[0] = (u) => x(!0))
468
+ onClick: o[0] || (o[0] = (d) => I(!0))
179
469
  }, {
180
- default: d(() => [
181
- m(i(e(o)("cookie.manage")), 1)
470
+ default: u(() => [
471
+ h(m(e(t)("cookie.manage")), 1)
182
472
  ]),
183
473
  _: 1
184
474
  })
185
475
  ])),
186
- p(e(ie), {
476
+ p(e(me), {
187
477
  class: "cookie-notice-close",
188
478
  type: e(C),
189
- onClick: s[1] || (s[1] = (u) => g(!1))
479
+ onClick: o[1] || (o[1] = (d) => T(!1))
190
480
  }, {
191
- default: d(() => [
192
- ee(a.$slots, "close-icon", {}, () => [
193
- s[5] || (s[5] = t("svg", {
481
+ default: u(() => [
482
+ ee(g.$slots, "close-icon", {}, () => [
483
+ o[5] || (o[5] = n("svg", {
194
484
  xmlns: "http://www.w3.org/2000/svg",
195
485
  viewBox: "0 0 1024 1024"
196
486
  }, [
197
- t("path", {
487
+ n("path", {
198
488
  fill: "currentColor",
199
489
  d: "M764.288 214.592 512 466.88 259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512 214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"
200
490
  })
@@ -203,75 +493,76 @@ const ye = {
203
493
  ]),
204
494
  _: 3
205
495
  }, 8, ["type"])
206
- ], 10, ge)
496
+ ], 10, Te)
207
497
  ]),
208
- p(e(le), {
209
- modelValue: w.value,
210
- "onUpdate:modelValue": s[3] || (s[3] = (u) => w.value = u),
211
- width: e(E) ? "90%" : "50%",
212
- title: e(o)("cookie.manage"),
498
+ p(e(ae), {
499
+ modelValue: b.value,
500
+ "onUpdate:modelValue": o[3] || (o[3] = (d) => b.value = d),
501
+ width: e(y) ? "90%" : "50%",
502
+ title: e(t)("cookie.manage"),
213
503
  "destroy-on-close": "",
214
- onOpen: L
504
+ onOpen: Y
215
505
  }, {
216
- footer: d(() => [
217
- p(e(A), {
506
+ footer: u(() => [
507
+ p(e(D), {
218
508
  round: "",
219
509
  type: "primary",
220
- onClick: z,
510
+ onClick: j,
221
511
  style: { "margin-right": "16px" }
222
512
  }, {
223
- default: d(() => [
224
- m(i(e(o)("cookie.saveSetting")), 1)
513
+ default: u(() => [
514
+ h(m(e(t)("cookie.saveSetting")), 1)
225
515
  ]),
226
516
  _: 1
227
517
  }),
228
- p(e(A), {
518
+ p(e(D), {
229
519
  round: "",
230
520
  type: "primary",
231
- onClick: K
521
+ onClick: H
232
522
  }, {
233
- default: d(() => [
234
- m(i(e(o)("cookie.acceptAll")), 1)
523
+ default: u(() => [
524
+ h(m(e(t)("cookie.acceptAll")), 1)
235
525
  ]),
236
526
  _: 1
237
527
  })
238
528
  ]),
239
- default: d(() => [
240
- t("div", De, [
241
- t("div", Oe, [
242
- t("div", Ve, [
243
- t("span", xe, i(e(o)("cookie.necessaryCookie")), 1),
244
- t("span", Ie, i(e(o)("cookie.alwaysOn")), 1)
529
+ default: u(() => [
530
+ n("div", Ae, [
531
+ n("div", _e, [
532
+ n("div", Ie, [
533
+ n("span", xe, m(e(t)("cookie.necessaryCookie")), 1),
534
+ n("span", Be, m(e(t)("cookie.alwaysOn")), 1)
245
535
  ]),
246
- t("div", Ne, i(e(o)("cookie.necessaryCookieDetail")), 1)
536
+ n("div", Ge, m(e(t)("cookie.necessaryCookieDetail")), 1)
247
537
  ]),
248
- t("div", Te, [
249
- t("div", Be, [
250
- t("span", Re, i(e(o)("cookie.analyticalCookie")), 1),
251
- t("span", Ue, [
252
- p(e(ae), {
253
- modelValue: f.value,
254
- "onUpdate:modelValue": s[2] || (s[2] = (u) => f.value = u)
538
+ n("div", Ne, [
539
+ n("div", Re, [
540
+ n("span", Le, m(e(t)("cookie.analyticalCookie")), 1),
541
+ n("span", Ue, [
542
+ p(e(se), {
543
+ modelValue: r.value,
544
+ "onUpdate:modelValue": o[2] || (o[2] = (d) => r.value = d)
255
545
  }, null, 8, ["modelValue"])
256
546
  ])
257
547
  ]),
258
- t("div", $e, i(e(o)("cookie.analyticalCookieDetail")), 1)
548
+ n("div", Oe, m(e(t)("cookie.analyticalCookieDetail")), 1)
259
549
  ])
260
550
  ])
261
551
  ]),
262
552
  _: 1
263
553
  }, 8, ["modelValue", "width", "title"])
264
- ])) : $("", !0)
554
+ ])) : U("", !0)
265
555
  ], 8, ["to"]))
266
556
  ]),
267
557
  _: 3
268
558
  }));
269
559
  }
270
- }), We = /* @__PURE__ */ re(Ke, [["__scopeId", "data-v-f3d20b01"]]);
560
+ }), Ze = /* @__PURE__ */ ce(Ye, [["__scopeId", "data-v-f3d20b01"]]);
271
561
  export {
272
- de as C,
273
- We as O,
274
- re as _,
275
- me as c,
276
- fe as u
562
+ re as C,
563
+ he as L,
564
+ Ze as O,
565
+ ce as _,
566
+ ye as c,
567
+ ke as u
277
568
  };