@gooddata/sdk-ui-dashboard 11.51.0-alpha.4 → 11.51.0

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 (200) hide show
  1. package/NOTICE +3 -3
  2. package/esm/__version.d.ts +1 -1
  3. package/esm/__version.d.ts.map +1 -1
  4. package/esm/__version.js +1 -1
  5. package/esm/index.d.ts +3 -1
  6. package/esm/index.d.ts.map +1 -1
  7. package/esm/index.js +3 -1
  8. package/esm/model/commandHandlers/filterContext/filterViewHandler.d.ts.map +1 -1
  9. package/esm/model/commandHandlers/filterContext/filterViewHandler.js +17 -4
  10. package/esm/model/commandHandlers/index.d.ts.map +1 -1
  11. package/esm/model/commandHandlers/index.js +2 -0
  12. package/esm/model/commandHandlers/timezone/changeDashboardTimezoneOverrideHandler.d.ts +6 -0
  13. package/esm/model/commandHandlers/timezone/changeDashboardTimezoneOverrideHandler.d.ts.map +1 -0
  14. package/esm/model/commandHandlers/timezone/changeDashboardTimezoneOverrideHandler.js +39 -0
  15. package/esm/model/commands/base.d.ts +1 -1
  16. package/esm/model/commands/base.d.ts.map +1 -1
  17. package/esm/model/commands/index.d.ts +2 -1
  18. package/esm/model/commands/index.d.ts.map +1 -1
  19. package/esm/model/commands/timezone.d.ts +42 -0
  20. package/esm/model/commands/timezone.d.ts.map +1 -0
  21. package/esm/model/commands/timezone.js +29 -0
  22. package/esm/model/events/base.d.ts +1 -1
  23. package/esm/model/events/base.d.ts.map +1 -1
  24. package/esm/model/events/index.d.ts +2 -1
  25. package/esm/model/events/index.d.ts.map +1 -1
  26. package/esm/model/events/timezone.d.ts +50 -0
  27. package/esm/model/events/timezone.d.ts.map +1 -0
  28. package/esm/model/events/timezone.js +31 -0
  29. package/esm/model/react/useDashboardCommand.d.ts +1 -0
  30. package/esm/model/react/useDashboardCommand.d.ts.map +1 -1
  31. package/esm/model/react/useDashboardCommandProcessing.d.ts +4 -0
  32. package/esm/model/react/useDashboardCommandProcessing.d.ts.map +1 -1
  33. package/esm/model/store/filterViews/filterViewsReducers.d.ts +13 -1
  34. package/esm/model/store/filterViews/filterViewsReducers.d.ts.map +1 -1
  35. package/esm/model/store/filterViews/filterViewsReducers.js +46 -0
  36. package/esm/model/store/filterViews/filterViewsState.d.ts +22 -0
  37. package/esm/model/store/filterViews/filterViewsState.d.ts.map +1 -1
  38. package/esm/model/store/filterViews/index.d.ts +3 -0
  39. package/esm/model/store/filterViews/index.d.ts.map +1 -1
  40. package/esm/model/store/meta/metaSelectors.d.ts +6 -4
  41. package/esm/model/store/meta/metaSelectors.d.ts.map +1 -1
  42. package/esm/model/store/meta/metaSelectors.js +17 -6
  43. package/esm/model/store/ui/index.d.ts +3 -0
  44. package/esm/model/store/ui/index.d.ts.map +1 -1
  45. package/esm/model/store/ui/uiReducers.d.ts +6 -0
  46. package/esm/model/store/ui/uiReducers.d.ts.map +1 -1
  47. package/esm/model/store/ui/uiReducers.js +15 -0
  48. package/esm/model/store/ui/uiSelectors.d.ts +15 -0
  49. package/esm/model/store/ui/uiSelectors.d.ts.map +1 -1
  50. package/esm/model/store/ui/uiSelectors.js +15 -0
  51. package/esm/model/store/ui/uiState.d.ts +12 -0
  52. package/esm/model/store/ui/uiState.d.ts.map +1 -1
  53. package/esm/model/store/ui/uiState.js +4 -0
  54. package/esm/presentation/automations/alerting/DefaultAlertingDialog/DefaultAlertingDialog.d.ts.map +1 -1
  55. package/esm/presentation/automations/alerting/DefaultAlertingDialog/DefaultAlertingDialog.js +4 -23
  56. package/esm/presentation/automations/alerting/DefaultAlertingDialog/hooks/useAlertFilters.d.ts +17 -8
  57. package/esm/presentation/automations/alerting/DefaultAlertingDialog/hooks/useAlertFilters.d.ts.map +1 -1
  58. package/esm/presentation/automations/alerting/DefaultAlertingDialog/hooks/useAlertFilters.js +19 -7
  59. package/esm/presentation/automations/alerting/DefaultAlertingDialog/hooks/useEditAlert.d.ts +7 -8
  60. package/esm/presentation/automations/alerting/DefaultAlertingDialog/hooks/useEditAlert.d.ts.map +1 -1
  61. package/esm/presentation/automations/alerting/DefaultAlertingDialog/hooks/useEditAlert.js +14 -4
  62. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/DefaultScheduledEmailDialog.d.ts.map +1 -1
  63. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/DefaultScheduledEmailDialog.js +6 -45
  64. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/AttachmentSettings.d.ts +1 -3
  65. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/AttachmentSettings.d.ts.map +1 -1
  66. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/AttachmentSettings.js +2 -2
  67. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/AttachmentsList.d.ts +1 -2
  68. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/AttachmentsList.d.ts.map +1 -1
  69. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/AttachmentsList.js +2 -2
  70. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/DashboardAttachments.d.ts +1 -2
  71. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/DashboardAttachments.d.ts.map +1 -1
  72. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/DashboardAttachments.js +2 -2
  73. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/WidgetAttachments.d.ts +1 -2
  74. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/WidgetAttachments.d.ts.map +1 -1
  75. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/components/Attachments/WidgetAttachments.js +2 -2
  76. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.d.ts +34 -30
  77. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.d.ts.map +1 -1
  78. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useEditScheduledEmail.js +20 -9
  79. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailEffectiveFilters.d.ts.map +1 -1
  80. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailEffectiveFilters.js +12 -3
  81. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailFilters.d.ts +37 -15
  82. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailFilters.d.ts.map +1 -1
  83. package/esm/presentation/automations/scheduledEmail/DefaultScheduledEmailDialog/hooks/useScheduledEmailFilters.js +41 -19
  84. package/esm/presentation/automations/scheduledEmail/utils/pdfPageSize.d.ts +1 -2
  85. package/esm/presentation/automations/scheduledEmail/utils/pdfPageSize.d.ts.map +1 -1
  86. package/esm/presentation/automations/scheduledEmail/utils/pdfPageSize.js +12 -3
  87. package/esm/presentation/automations/shared/filters/conversions.d.ts +1 -1
  88. package/esm/presentation/automations/shared/filters/conversions.js +1 -1
  89. package/esm/presentation/dashboard/DashboardHeader/DashboardHeader.d.ts.map +1 -1
  90. package/esm/presentation/dashboard/DashboardHeader/DashboardHeader.js +2 -1
  91. package/esm/presentation/dashboard/DashboardHeader/TimezoneDialogProvider.d.ts +6 -0
  92. package/esm/presentation/dashboard/DashboardHeader/TimezoneDialogProvider.d.ts.map +1 -0
  93. package/esm/presentation/dashboard/DashboardHeader/TimezoneDialogProvider.js +14 -0
  94. package/esm/presentation/dashboard/components/DashboardLoading.js +1 -1
  95. package/esm/presentation/dashboardSettingsDialog/TimezoneOption.d.ts.map +1 -1
  96. package/esm/presentation/dashboardSettingsDialog/TimezoneOption.js +9 -7
  97. package/esm/presentation/filterBar/filterBar/DefaultFilterBarContainer.js +1 -6
  98. package/esm/presentation/filterBar/filterBar/filterViews/FilterViews.d.ts.map +1 -1
  99. package/esm/presentation/filterBar/filterBar/filterViews/FilterViews.js +19 -16
  100. package/esm/presentation/localization/bundles/de-DE.localization-bundle.d.ts +11 -0
  101. package/esm/presentation/localization/bundles/de-DE.localization-bundle.d.ts.map +1 -1
  102. package/esm/presentation/localization/bundles/de-DE.localization-bundle.js +13 -2
  103. package/esm/presentation/localization/bundles/en-AU.localization-bundle.d.ts +11 -0
  104. package/esm/presentation/localization/bundles/en-AU.localization-bundle.d.ts.map +1 -1
  105. package/esm/presentation/localization/bundles/en-AU.localization-bundle.js +13 -2
  106. package/esm/presentation/localization/bundles/en-GB.localization-bundle.d.ts +11 -0
  107. package/esm/presentation/localization/bundles/en-GB.localization-bundle.d.ts.map +1 -1
  108. package/esm/presentation/localization/bundles/en-GB.localization-bundle.js +13 -2
  109. package/esm/presentation/localization/bundles/en-US.localization-bundle.d.ts +40 -0
  110. package/esm/presentation/localization/bundles/en-US.localization-bundle.d.ts.map +1 -1
  111. package/esm/presentation/localization/bundles/en-US.localization-bundle.js +45 -5
  112. package/esm/presentation/localization/bundles/es-419.localization-bundle.d.ts +11 -0
  113. package/esm/presentation/localization/bundles/es-419.localization-bundle.d.ts.map +1 -1
  114. package/esm/presentation/localization/bundles/es-419.localization-bundle.js +13 -2
  115. package/esm/presentation/localization/bundles/es-ES.localization-bundle.d.ts +11 -0
  116. package/esm/presentation/localization/bundles/es-ES.localization-bundle.d.ts.map +1 -1
  117. package/esm/presentation/localization/bundles/es-ES.localization-bundle.js +13 -2
  118. package/esm/presentation/localization/bundles/fi-FI.localization-bundle.d.ts +11 -0
  119. package/esm/presentation/localization/bundles/fi-FI.localization-bundle.d.ts.map +1 -1
  120. package/esm/presentation/localization/bundles/fi-FI.localization-bundle.js +13 -2
  121. package/esm/presentation/localization/bundles/fr-CA.localization-bundle.d.ts +11 -0
  122. package/esm/presentation/localization/bundles/fr-CA.localization-bundle.d.ts.map +1 -1
  123. package/esm/presentation/localization/bundles/fr-CA.localization-bundle.js +13 -2
  124. package/esm/presentation/localization/bundles/fr-FR.localization-bundle.d.ts +11 -0
  125. package/esm/presentation/localization/bundles/fr-FR.localization-bundle.d.ts.map +1 -1
  126. package/esm/presentation/localization/bundles/fr-FR.localization-bundle.js +13 -2
  127. package/esm/presentation/localization/bundles/id-ID.localization-bundle.d.ts +11 -0
  128. package/esm/presentation/localization/bundles/id-ID.localization-bundle.d.ts.map +1 -1
  129. package/esm/presentation/localization/bundles/id-ID.localization-bundle.js +13 -2
  130. package/esm/presentation/localization/bundles/it-IT.localization-bundle.d.ts +11 -0
  131. package/esm/presentation/localization/bundles/it-IT.localization-bundle.d.ts.map +1 -1
  132. package/esm/presentation/localization/bundles/it-IT.localization-bundle.js +13 -2
  133. package/esm/presentation/localization/bundles/ja-JP.localization-bundle.d.ts +11 -0
  134. package/esm/presentation/localization/bundles/ja-JP.localization-bundle.d.ts.map +1 -1
  135. package/esm/presentation/localization/bundles/ja-JP.localization-bundle.js +13 -2
  136. package/esm/presentation/localization/bundles/ko-KR.localization-bundle.d.ts +11 -0
  137. package/esm/presentation/localization/bundles/ko-KR.localization-bundle.d.ts.map +1 -1
  138. package/esm/presentation/localization/bundles/ko-KR.localization-bundle.js +13 -2
  139. package/esm/presentation/localization/bundles/nl-NL.localization-bundle.d.ts +11 -0
  140. package/esm/presentation/localization/bundles/nl-NL.localization-bundle.d.ts.map +1 -1
  141. package/esm/presentation/localization/bundles/nl-NL.localization-bundle.js +13 -2
  142. package/esm/presentation/localization/bundles/pl-PL.localization-bundle.d.ts +11 -0
  143. package/esm/presentation/localization/bundles/pl-PL.localization-bundle.d.ts.map +1 -1
  144. package/esm/presentation/localization/bundles/pl-PL.localization-bundle.js +13 -2
  145. package/esm/presentation/localization/bundles/pt-BR.localization-bundle.d.ts +11 -0
  146. package/esm/presentation/localization/bundles/pt-BR.localization-bundle.d.ts.map +1 -1
  147. package/esm/presentation/localization/bundles/pt-BR.localization-bundle.js +13 -2
  148. package/esm/presentation/localization/bundles/pt-PT.localization-bundle.d.ts +11 -0
  149. package/esm/presentation/localization/bundles/pt-PT.localization-bundle.d.ts.map +1 -1
  150. package/esm/presentation/localization/bundles/pt-PT.localization-bundle.js +13 -2
  151. package/esm/presentation/localization/bundles/ru-RU.localization-bundle.d.ts +11 -0
  152. package/esm/presentation/localization/bundles/ru-RU.localization-bundle.d.ts.map +1 -1
  153. package/esm/presentation/localization/bundles/ru-RU.localization-bundle.js +13 -2
  154. package/esm/presentation/localization/bundles/sl-SI.localization-bundle.d.ts +11 -0
  155. package/esm/presentation/localization/bundles/sl-SI.localization-bundle.d.ts.map +1 -1
  156. package/esm/presentation/localization/bundles/sl-SI.localization-bundle.js +13 -2
  157. package/esm/presentation/localization/bundles/th-TH.localization-bundle.d.ts +11 -0
  158. package/esm/presentation/localization/bundles/th-TH.localization-bundle.d.ts.map +1 -1
  159. package/esm/presentation/localization/bundles/th-TH.localization-bundle.js +13 -2
  160. package/esm/presentation/localization/bundles/tr-TR.localization-bundle.d.ts +11 -0
  161. package/esm/presentation/localization/bundles/tr-TR.localization-bundle.d.ts.map +1 -1
  162. package/esm/presentation/localization/bundles/tr-TR.localization-bundle.js +13 -2
  163. package/esm/presentation/localization/bundles/uk-UA.localization-bundle.d.ts +11 -0
  164. package/esm/presentation/localization/bundles/uk-UA.localization-bundle.d.ts.map +1 -1
  165. package/esm/presentation/localization/bundles/uk-UA.localization-bundle.js +13 -2
  166. package/esm/presentation/localization/bundles/vi-VN.localization-bundle.d.ts +11 -0
  167. package/esm/presentation/localization/bundles/vi-VN.localization-bundle.d.ts.map +1 -1
  168. package/esm/presentation/localization/bundles/vi-VN.localization-bundle.js +13 -2
  169. package/esm/presentation/localization/bundles/zh-HK.localization-bundle.d.ts +11 -0
  170. package/esm/presentation/localization/bundles/zh-HK.localization-bundle.d.ts.map +1 -1
  171. package/esm/presentation/localization/bundles/zh-HK.localization-bundle.js +13 -2
  172. package/esm/presentation/localization/bundles/zh-Hans.localization-bundle.d.ts +11 -0
  173. package/esm/presentation/localization/bundles/zh-Hans.localization-bundle.d.ts.map +1 -1
  174. package/esm/presentation/localization/bundles/zh-Hans.localization-bundle.js +13 -2
  175. package/esm/presentation/localization/bundles/zh-Hant.localization-bundle.d.ts +11 -0
  176. package/esm/presentation/localization/bundles/zh-Hant.localization-bundle.d.ts.map +1 -1
  177. package/esm/presentation/localization/bundles/zh-Hant.localization-bundle.js +13 -2
  178. package/esm/presentation/timezoneDialog/TimezoneDialog.d.ts +15 -0
  179. package/esm/presentation/timezoneDialog/TimezoneDialog.d.ts.map +1 -0
  180. package/esm/presentation/timezoneDialog/TimezoneDialog.js +80 -0
  181. package/esm/presentation/topBar/menuButton/useDefaultMenuItems.d.ts.map +1 -1
  182. package/esm/presentation/topBar/menuButton/useDefaultMenuItems.js +22 -3
  183. package/esm/presentation/topBar/timezoneIndicator/TimezoneIndicator.d.ts.map +1 -1
  184. package/esm/presentation/topBar/timezoneIndicator/TimezoneIndicator.js +2 -2
  185. package/esm/presentation/topBar/timezoneIndicator/resolveDashboardTimezoneInfo.d.ts +5 -3
  186. package/esm/presentation/topBar/timezoneIndicator/resolveDashboardTimezoneInfo.d.ts.map +1 -1
  187. package/esm/presentation/topBar/timezoneIndicator/resolveDashboardTimezoneInfo.js +6 -4
  188. package/esm/presentation/topBar/topBar/DefaultTopBar.d.ts.map +1 -1
  189. package/esm/presentation/topBar/topBar/DefaultTopBar.js +5 -3
  190. package/esm/sdk-ui-dashboard.d.ts +140 -11
  191. package/package.json +21 -21
  192. package/styles/css/filterBar.css +15 -44
  193. package/styles/css/filterBar.css.map +1 -1
  194. package/styles/css/main.css +38 -44
  195. package/styles/css/main.css.map +1 -1
  196. package/styles/css/timezoneDialog.css +24 -0
  197. package/styles/css/timezoneDialog.css.map +1 -0
  198. package/styles/scss/filterBar.scss +17 -62
  199. package/styles/scss/main.scss +1 -0
  200. package/styles/scss/timezoneDialog.scss +31 -0
@@ -58,6 +58,7 @@ export declare const ru_RU: {
58
58
  "options.menu.data.too.large": string;
59
59
  "options.menu.unsupported.raw.error": string;
60
60
  "options.menu.density": string;
61
+ "options.menu.changeTimezone": string;
61
62
  "density.dialog.title": string;
62
63
  "density.dialog.description": string;
63
64
  "density.dialog.option.standard": string;
@@ -117,6 +118,15 @@ export declare const ru_RU: {
117
118
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": string;
118
119
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": string;
119
120
  "settingsDashboardDialog.section.timezone.select.noMatch": string;
121
+ "timezoneDialog.title": string;
122
+ "timezoneDialog.description": string;
123
+ "timezoneDialog.description.ariaLabel": string;
124
+ "timezoneDialog.default": string;
125
+ "timezoneDialog.fromBrowser": string;
126
+ "timezoneDialog.select.searchPlaceholder": string;
127
+ "timezoneDialog.select.noMatch": string;
128
+ "timezoneDialog.currentTime": string;
129
+ "timezoneDialog.success": string;
120
130
  "deleteDashboardDialog.headline": string;
121
131
  "deleteDashboardDialog.submitButtonText": string;
122
132
  "deleteDashboardDialog.defaultMessage": string;
@@ -368,6 +378,7 @@ export declare const ru_RU: {
368
378
  "header.shareStatus.private.text": string;
369
379
  "header.shareStatus.private.strict.tooltip": string;
370
380
  "header.shareStatus.private.not.strict.tooltip": string;
381
+ "topBar.timezoneIndicator.tooltip": string;
371
382
  "dashboard.shareDialog.removeAccessGranteeTooltip": string;
372
383
  "dashboardMeasureValueFilter.section.from_dashboard": string;
373
384
  "dashboardMeasureValueFilter.section.all_other": string;
@@ -1 +1 @@
1
- {"version":3,"file":"ru-RU.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/ru-RU.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm3BjB,CAAC"}
1
+ {"version":3,"file":"ru-RU.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/ru-RU.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA83BjB,CAAC"}
@@ -60,6 +60,7 @@ export const ru_RU = {
60
60
  "options.menu.data.too.large": "Экспорт недоступен из-за слишком большого количества точек данных в результате.",
61
61
  "options.menu.unsupported.raw.error": "Экспорт недоступен из-за слишком большого количества точек данных или ошибки в результате.",
62
62
  "options.menu.density": "Плотность содержимого",
63
+ "options.menu.changeTimezone": "Изменить часовой пояс",
63
64
  "density.dialog.title": "Плотность содержимого",
64
65
  "density.dialog.description": "Выберите предпочтительный уровень плотности содержимого для этой и других панелей мониторинга.",
65
66
  "density.dialog.option.standard": "Комфортно",
@@ -111,14 +112,23 @@ export const ru_RU = {
111
112
  "settingsDashboardDialog.section.timezone": "Часовой пояс",
112
113
  "settingsDashboardDialog.section.timezone.defaultTimezone": "Часовой пояс по умолчанию",
113
114
  "settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "Часовой пояс, используемый для применения фильтров дат и отображения дат на этом дашборде.",
114
- "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Часовой пояс рабочей области",
115
- "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Из браузера ({timezone})",
115
+ "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "По умолчанию для рабочей области ({timezone})",
116
+ "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Местное время пользователя (определено браузером)",
116
117
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle": "Разрешить пользователям изменять часовой пояс дашборда",
117
118
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": "Если включено, пользователи, просматривающие дашборд, могут временно изменять часовой пояс дашборда. Изменение не сохраняется.",
118
119
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": "Показывать часовой пояс",
119
120
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": "Если включено, на дашборде отображается используемый часовой пояс.",
120
121
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": "Поиск ...",
121
122
  "settingsDashboardDialog.section.timezone.select.noMatch": "Нет подходящего часового пояса.",
123
+ "timezoneDialog.title": "Изменить часовой пояс",
124
+ "timezoneDialog.description": "<b>Примечание:</b> При перезагрузке страницы часовой пояс сбрасывается до значения по умолчанию ({timezone}).",
125
+ "timezoneDialog.description.ariaLabel": "Информационное сообщение диалогового окна изменения часового пояса",
126
+ "timezoneDialog.default": "По умолчанию ({timezone})",
127
+ "timezoneDialog.fromBrowser": "Мое местное время ({timezone})",
128
+ "timezoneDialog.select.searchPlaceholder": "Поиск ...",
129
+ "timezoneDialog.select.noMatch": "Нет подходящего часового пояса.",
130
+ "timezoneDialog.currentTime": "Сейчас {time}",
131
+ "timezoneDialog.success": "Отлично! Мы изменили часовой пояс!",
122
132
  "deleteDashboardDialog.headline": "Удалить дашборд?",
123
133
  "deleteDashboardDialog.submitButtonText": "Удалить",
124
134
  "deleteDashboardDialog.defaultMessage": "Вы уверены, что хотите удалить дашборд {title}?",
@@ -370,6 +380,7 @@ export const ru_RU = {
370
380
  "header.shareStatus.private.text": "Приватные",
371
381
  "header.shareStatus.private.strict.tooltip": "Только вы можете просматривать и редактировать этот дашборд.",
372
382
  "header.shareStatus.private.not.strict.tooltip": "Создатель может редактировать этот дашборд. Другие пользователи с соответствующими ролями могут редактировать этот дашборд при переходе к нему.",
383
+ "topBar.timezoneIndicator.tooltip": "Часовой пояс",
373
384
  "dashboard.shareDialog.removeAccessGranteeTooltip": "Удалить доступ к этому дашборду.",
374
385
  "dashboardMeasureValueFilter.section.from_dashboard": "Из дашборда",
375
386
  "dashboardMeasureValueFilter.section.all_other": "Все остальные",
@@ -58,6 +58,7 @@ export declare const sl_SI: {
58
58
  "options.menu.data.too.large": string;
59
59
  "options.menu.unsupported.raw.error": string;
60
60
  "options.menu.density": string;
61
+ "options.menu.changeTimezone": string;
61
62
  "density.dialog.title": string;
62
63
  "density.dialog.description": string;
63
64
  "density.dialog.option.standard": string;
@@ -117,6 +118,15 @@ export declare const sl_SI: {
117
118
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": string;
118
119
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": string;
119
120
  "settingsDashboardDialog.section.timezone.select.noMatch": string;
121
+ "timezoneDialog.title": string;
122
+ "timezoneDialog.description": string;
123
+ "timezoneDialog.description.ariaLabel": string;
124
+ "timezoneDialog.default": string;
125
+ "timezoneDialog.fromBrowser": string;
126
+ "timezoneDialog.select.searchPlaceholder": string;
127
+ "timezoneDialog.select.noMatch": string;
128
+ "timezoneDialog.currentTime": string;
129
+ "timezoneDialog.success": string;
120
130
  "deleteDashboardDialog.headline": string;
121
131
  "deleteDashboardDialog.submitButtonText": string;
122
132
  "deleteDashboardDialog.defaultMessage": string;
@@ -368,6 +378,7 @@ export declare const sl_SI: {
368
378
  "header.shareStatus.private.text": string;
369
379
  "header.shareStatus.private.strict.tooltip": string;
370
380
  "header.shareStatus.private.not.strict.tooltip": string;
381
+ "topBar.timezoneIndicator.tooltip": string;
371
382
  "dashboard.shareDialog.removeAccessGranteeTooltip": string;
372
383
  "dashboardMeasureValueFilter.section.from_dashboard": string;
373
384
  "dashboardMeasureValueFilter.section.all_other": string;
@@ -1 +1 @@
1
- {"version":3,"file":"sl-SI.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/sl-SI.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm3BjB,CAAC"}
1
+ {"version":3,"file":"sl-SI.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/sl-SI.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA83BjB,CAAC"}
@@ -60,6 +60,7 @@ export const sl_SI = {
60
60
  "options.menu.data.too.large": "Izvoz ni mogoč zaradi prevelikega števila podatkovnih točk v rezultatu.",
61
61
  "options.menu.unsupported.raw.error": "Izvoz ni mogoč zaradi prevelikega števila podatkovnih točk ali napake v rezultatu",
62
62
  "options.menu.density": "Gostota vsebine",
63
+ "options.menu.changeTimezone": "Spremeni časovni pas",
63
64
  "density.dialog.title": "Gostota vsebine",
64
65
  "density.dialog.description": "Izberite želeno raven gostote vsebine za to in druge nadzorne plošče.",
65
66
  "density.dialog.option.standard": "Udobno",
@@ -111,14 +112,23 @@ export const sl_SI = {
111
112
  "settingsDashboardDialog.section.timezone": "Časovni pas",
112
113
  "settingsDashboardDialog.section.timezone.defaultTimezone": "Privzeti časovni pas",
113
114
  "settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "Časovni pas, uporabljen za vrednotenje filtrov datuma in prikaz datumov na tej nadzorni plošči.",
114
- "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Časovni pas delovnega prostora",
115
- "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Iz brskalnika ({timezone})",
115
+ "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Privzeto za delovni prostor ({timezone})",
116
+ "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Lokalni čas uporabnika (zaznano v brskalniku)",
116
117
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle": "Dovoli uporabnikom, da spremenijo časovni pas nadzorne plošče",
117
118
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": "Ko je omogočeno, lahko ogledovalci začasno spremenijo časovni pas nadzorne plošče. Sprememba ni shranjena.",
118
119
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": "Prikaži časovni pas",
119
120
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": "Ko je omogočeno, nadzorna plošča prikaže, kateri časovni pas se uporablja.",
120
121
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": "Išči...",
121
122
  "settingsDashboardDialog.section.timezone.select.noMatch": "Ni ujemajočega se časovnega pasu.",
123
+ "timezoneDialog.title": "Spremeni časovni pas",
124
+ "timezoneDialog.description": "<b>Opomba:</b> Časovni pas se ponastavi na privzeti ({timezone}), ko znova naložite stran.",
125
+ "timezoneDialog.description.ariaLabel": "Informativno sporočilo pogovornega okna za spremembo časovnega pasu",
126
+ "timezoneDialog.default": "Privzeto ({timezone})",
127
+ "timezoneDialog.fromBrowser": "Moj lokalni čas ({timezone})",
128
+ "timezoneDialog.select.searchPlaceholder": "Išči...",
129
+ "timezoneDialog.select.noMatch": "Ni ujemajočega se časovnega pasu.",
130
+ "timezoneDialog.currentTime": "Zdaj {time}",
131
+ "timezoneDialog.success": "Odlično! Spremenili smo časovni pas!",
122
132
  "deleteDashboardDialog.headline": "Izbrisati nadzorno ploščo?",
123
133
  "deleteDashboardDialog.submitButtonText": "Izbriši",
124
134
  "deleteDashboardDialog.defaultMessage": "Ali ste prepričani, da želite izbrisati nadzorno ploščo {title}?",
@@ -370,6 +380,7 @@ export const sl_SI = {
370
380
  "header.shareStatus.private.text": "Zasebno",
371
381
  "header.shareStatus.private.strict.tooltip": "Samo vi lahko ogledate in urejate to nadzorno ploščo.",
372
382
  "header.shareStatus.private.not.strict.tooltip": "Ustvarjalec lahko ureja to nadzorno ploščo. Drugi uporabniki s primernimi vlogami jo lahko urejajo, ko dostopajo prek poglobitve.",
383
+ "topBar.timezoneIndicator.tooltip": "Časovni pas",
373
384
  "dashboard.shareDialog.removeAccessGranteeTooltip": "Odstrani dostop do te nadzorne plošče.",
374
385
  "dashboardMeasureValueFilter.section.from_dashboard": "Z nadzorne plošče",
375
386
  "dashboardMeasureValueFilter.section.all_other": "Vsi drugi",
@@ -58,6 +58,7 @@ export declare const th_TH: {
58
58
  "options.menu.data.too.large": string;
59
59
  "options.menu.unsupported.raw.error": string;
60
60
  "options.menu.density": string;
61
+ "options.menu.changeTimezone": string;
61
62
  "density.dialog.title": string;
62
63
  "density.dialog.description": string;
63
64
  "density.dialog.option.standard": string;
@@ -117,6 +118,15 @@ export declare const th_TH: {
117
118
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": string;
118
119
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": string;
119
120
  "settingsDashboardDialog.section.timezone.select.noMatch": string;
121
+ "timezoneDialog.title": string;
122
+ "timezoneDialog.description": string;
123
+ "timezoneDialog.description.ariaLabel": string;
124
+ "timezoneDialog.default": string;
125
+ "timezoneDialog.fromBrowser": string;
126
+ "timezoneDialog.select.searchPlaceholder": string;
127
+ "timezoneDialog.select.noMatch": string;
128
+ "timezoneDialog.currentTime": string;
129
+ "timezoneDialog.success": string;
120
130
  "deleteDashboardDialog.headline": string;
121
131
  "deleteDashboardDialog.submitButtonText": string;
122
132
  "deleteDashboardDialog.defaultMessage": string;
@@ -368,6 +378,7 @@ export declare const th_TH: {
368
378
  "header.shareStatus.private.text": string;
369
379
  "header.shareStatus.private.strict.tooltip": string;
370
380
  "header.shareStatus.private.not.strict.tooltip": string;
381
+ "topBar.timezoneIndicator.tooltip": string;
371
382
  "dashboard.shareDialog.removeAccessGranteeTooltip": string;
372
383
  "dashboardMeasureValueFilter.section.from_dashboard": string;
373
384
  "dashboardMeasureValueFilter.section.all_other": string;
@@ -1 +1 @@
1
- {"version":3,"file":"th-TH.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/th-TH.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm3BjB,CAAC"}
1
+ {"version":3,"file":"th-TH.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/th-TH.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA83BjB,CAAC"}
@@ -60,6 +60,7 @@ export const th_TH = {
60
60
  "options.menu.data.too.large": "ไม่สามารถส่งออกได้เนื่องจากมีจุดข้อมูลมากเกินไปในผลลัพธ์",
61
61
  "options.menu.unsupported.raw.error": "ไม่สามารถส่งออกได้เนื่องจากมีจุดข้อมูลมากเกินไปหรือเกิดข้อผิดพลาดในผลลัพธ์",
62
62
  "options.menu.density": "ความหนาแน่นของเนื้อหา",
63
+ "options.menu.changeTimezone": "เปลี่ยนเขตเวลา",
63
64
  "density.dialog.title": "ความหนาแน่นของเนื้อหา",
64
65
  "density.dialog.description": "เลือกระดับความหนาแน่นของเนื้อหาที่คุณต้องการสำหรับแดชบอร์ดนี้และแดชบอร์ดอื่นๆ",
65
66
  "density.dialog.option.standard": "สบายตา",
@@ -111,14 +112,23 @@ export const th_TH = {
111
112
  "settingsDashboardDialog.section.timezone": "เขตเวลา",
112
113
  "settingsDashboardDialog.section.timezone.defaultTimezone": "เขตเวลาเริ่มต้น",
113
114
  "settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "เขตเวลาที่ใช้ในการประเมินตัวกรองวันที่และแสดงวันที่บนแดชบอร์ดนี้",
114
- "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "เขตเวลาของพื้นที่ทำงาน",
115
- "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "จากเบราว์เซอร์ ({timezone})",
115
+ "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "ค่าเริ่มต้นของพื้นที่ทำงาน ({timezone})",
116
+ "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "เวลาท้องถิ่นของผู้ใช้ (ตรวจพบโดยเบราว์เซอร์)",
116
117
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle": "อนุญาตให้ผู้ใช้เปลี่ยนเขตเวลาของแดชบอร์ด",
117
118
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": "เมื่อเปิดใช้งาน ผู้ชมสามารถเปลี่ยนเขตเวลาของแดชบอร์ดได้ชั่วคราว ระบบจะไม่บันทึกการเปลี่ยนแปลงนี้",
118
119
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": "แสดงเขตเวลา",
119
120
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": "เมื่อเปิดใช้งาน แดชบอร์ดจะแสดงเขตเวลาที่ใช้อยู่",
120
121
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": "ค้นหา ...",
121
122
  "settingsDashboardDialog.section.timezone.select.noMatch": "ไม่มีเขตเวลาที่ตรงกัน",
123
+ "timezoneDialog.title": "เปลี่ยนเขตเวลา",
124
+ "timezoneDialog.description": "<b>หมายเหตุ:</b> เขตเวลาจะรีเซ็ตเป็นค่าเริ่มต้น ({timezone}) เมื่อคุณโหลดหน้าใหม่",
125
+ "timezoneDialog.description.ariaLabel": "ข้อความข้อมูลของกล่องโต้ตอบเปลี่ยนเขตเวลา",
126
+ "timezoneDialog.default": "ค่าเริ่มต้น ({timezone})",
127
+ "timezoneDialog.fromBrowser": "เวลาท้องถิ่นของฉัน ({timezone})",
128
+ "timezoneDialog.select.searchPlaceholder": "ค้นหา ...",
129
+ "timezoneDialog.select.noMatch": "ไม่มีเขตเวลาที่ตรงกัน",
130
+ "timezoneDialog.currentTime": "ขณะนี้ {time}",
131
+ "timezoneDialog.success": "ยอดเยี่ยม! เราได้เปลี่ยนเขตเวลาแล้ว!",
122
132
  "deleteDashboardDialog.headline": "ลบแดชบอร์ดหรือไม่?",
123
133
  "deleteDashboardDialog.submitButtonText": "ลบ",
124
134
  "deleteDashboardDialog.defaultMessage": "คุณแน่ใจหรือไม่ว่าต้องการลบแดชบอร์ด {title}?",
@@ -370,6 +380,7 @@ export const th_TH = {
370
380
  "header.shareStatus.private.text": "ส่วนตัว",
371
381
  "header.shareStatus.private.strict.tooltip": "มีเพียงคุณเท่านั้นที่สามารถดูและแก้ไขแดชบอร์ดนี้ได้",
372
382
  "header.shareStatus.private.not.strict.tooltip": "ผู้สร้างสามารถแก้ไขแดชบอร์ดนี้ได้ ผู้ใช้อื่นที่มีบทบาทผู้ใช้ที่เหมาะสมสามารถแก้ไขแดชบอร์ดนี้ได้เมื่อพวกเขาเจาะลึกมายังแดชบอร์ดนี้",
383
+ "topBar.timezoneIndicator.tooltip": "เขตเวลา",
373
384
  "dashboard.shareDialog.removeAccessGranteeTooltip": "นำสิทธิ์การเข้าถึงแดชบอร์ดนี้ออก",
374
385
  "dashboardMeasureValueFilter.section.from_dashboard": "จากแดชบอร์ด",
375
386
  "dashboardMeasureValueFilter.section.all_other": "ทั้งหมดอื่นๆ",
@@ -58,6 +58,7 @@ export declare const tr_TR: {
58
58
  "options.menu.data.too.large": string;
59
59
  "options.menu.unsupported.raw.error": string;
60
60
  "options.menu.density": string;
61
+ "options.menu.changeTimezone": string;
61
62
  "density.dialog.title": string;
62
63
  "density.dialog.description": string;
63
64
  "density.dialog.option.standard": string;
@@ -117,6 +118,15 @@ export declare const tr_TR: {
117
118
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": string;
118
119
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": string;
119
120
  "settingsDashboardDialog.section.timezone.select.noMatch": string;
121
+ "timezoneDialog.title": string;
122
+ "timezoneDialog.description": string;
123
+ "timezoneDialog.description.ariaLabel": string;
124
+ "timezoneDialog.default": string;
125
+ "timezoneDialog.fromBrowser": string;
126
+ "timezoneDialog.select.searchPlaceholder": string;
127
+ "timezoneDialog.select.noMatch": string;
128
+ "timezoneDialog.currentTime": string;
129
+ "timezoneDialog.success": string;
120
130
  "deleteDashboardDialog.headline": string;
121
131
  "deleteDashboardDialog.submitButtonText": string;
122
132
  "deleteDashboardDialog.defaultMessage": string;
@@ -368,6 +378,7 @@ export declare const tr_TR: {
368
378
  "header.shareStatus.private.text": string;
369
379
  "header.shareStatus.private.strict.tooltip": string;
370
380
  "header.shareStatus.private.not.strict.tooltip": string;
381
+ "topBar.timezoneIndicator.tooltip": string;
371
382
  "dashboard.shareDialog.removeAccessGranteeTooltip": string;
372
383
  "dashboardMeasureValueFilter.section.from_dashboard": string;
373
384
  "dashboardMeasureValueFilter.section.all_other": string;
@@ -1 +1 @@
1
- {"version":3,"file":"tr-TR.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/tr-TR.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm3BjB,CAAC"}
1
+ {"version":3,"file":"tr-TR.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/tr-TR.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA83BjB,CAAC"}
@@ -60,6 +60,7 @@ export const tr_TR = {
60
60
  "options.menu.data.too.large": "Sonuçta çok fazla veri noktası olduğu için dışa aktarma yapılamıyor.",
61
61
  "options.menu.unsupported.raw.error": "Çok fazla veri noktası veya sonuçta hata nedeniyle dışa aktarma kullanılamıyor",
62
62
  "options.menu.density": "İçerik yoğunluğu",
63
+ "options.menu.changeTimezone": "Saat dilimini değiştir",
63
64
  "density.dialog.title": "İçerik yoğunluğu",
64
65
  "density.dialog.description": "Bu ve diğer gösterge tabloları için tercih ettiğiniz içerik yoğunluğu düzeyini seçin.",
65
66
  "density.dialog.option.standard": "Rahat",
@@ -111,14 +112,23 @@ export const tr_TR = {
111
112
  "settingsDashboardDialog.section.timezone": "Saat dilimi",
112
113
  "settingsDashboardDialog.section.timezone.defaultTimezone": "Varsayılan saat dilimi",
113
114
  "settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "Bu gösterge tablosunda tarih filtrelerini değerlendirmek ve tarihleri görüntülemek için kullanılan saat dilimi.",
114
- "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Çalışma alanı saat dilimi",
115
- "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Tarayıcıdan ({timezone})",
115
+ "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Çalışma alanı varsayılanı ({timezone})",
116
+ "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Kullanıcının yerel saati (Tarayıcı tarafından algılanan)",
116
117
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle": "Kullanıcıların gösterge tablosu saat dilimini değiştirmesine izin ver",
117
118
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": "Etkinleştirildiğinde, görüntüleyenler gösterge tablosu saat dilimini geçici olarak değiştirebilir. Değişiklik kaydedilmez.",
118
119
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": "Saat dilimini göster",
119
120
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": "Etkinleştirildiğinde, gösterge tablosu hangi saat diliminin kullanıldığını gösterir.",
120
121
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": "Ara ...",
121
122
  "settingsDashboardDialog.section.timezone.select.noMatch": "Eşleşen saat dilimi yok.",
123
+ "timezoneDialog.title": "Saat dilimini değiştir",
124
+ "timezoneDialog.description": "<b>Not:</b> Sayfayı yeniden yüklediğinizde saat dilimi varsayılana ({timezone}) sıfırlanır.",
125
+ "timezoneDialog.description.ariaLabel": "Saat dilimini değiştirme iletişim kutusu bilgi mesajı",
126
+ "timezoneDialog.default": "Varsayılan ({timezone})",
127
+ "timezoneDialog.fromBrowser": "Yerel saatim ({timezone})",
128
+ "timezoneDialog.select.searchPlaceholder": "Ara ...",
129
+ "timezoneDialog.select.noMatch": "Eşleşen saat dilimi yok.",
130
+ "timezoneDialog.currentTime": "Şimdi {time}",
131
+ "timezoneDialog.success": "Harika! Saat dilimini değiştirdik!",
122
132
  "deleteDashboardDialog.headline": "Gösterge tablosu silinsin mi?",
123
133
  "deleteDashboardDialog.submitButtonText": "Sil",
124
134
  "deleteDashboardDialog.defaultMessage": "Gösterge tablosu {title}'yi silmek istediğinizden emin misiniz?",
@@ -370,6 +380,7 @@ export const tr_TR = {
370
380
  "header.shareStatus.private.text": "Özel",
371
381
  "header.shareStatus.private.strict.tooltip": "Bu gösterge tablosunu yalnızca siz görüntüleyebilir ve düzenleyebilirsiniz.",
372
382
  "header.shareStatus.private.not.strict.tooltip": "Oluşturucu bu gösterge tablosunu düzenleyebilir. Uygun kullanıcı rollerine sahip diğer kullanıcılar, bu gösterge tablosuna ayrıntılı inceleme yaptıklarında düzenleyebilirler.",
383
+ "topBar.timezoneIndicator.tooltip": "Saat dilimi",
373
384
  "dashboard.shareDialog.removeAccessGranteeTooltip": "Bu panoya erişimi kaldır.",
374
385
  "dashboardMeasureValueFilter.section.from_dashboard": "Gösterge tablosundan",
375
386
  "dashboardMeasureValueFilter.section.all_other": "Diğerlerinin tümü",
@@ -58,6 +58,7 @@ export declare const uk_UA: {
58
58
  "options.menu.data.too.large": string;
59
59
  "options.menu.unsupported.raw.error": string;
60
60
  "options.menu.density": string;
61
+ "options.menu.changeTimezone": string;
61
62
  "density.dialog.title": string;
62
63
  "density.dialog.description": string;
63
64
  "density.dialog.option.standard": string;
@@ -117,6 +118,15 @@ export declare const uk_UA: {
117
118
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": string;
118
119
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": string;
119
120
  "settingsDashboardDialog.section.timezone.select.noMatch": string;
121
+ "timezoneDialog.title": string;
122
+ "timezoneDialog.description": string;
123
+ "timezoneDialog.description.ariaLabel": string;
124
+ "timezoneDialog.default": string;
125
+ "timezoneDialog.fromBrowser": string;
126
+ "timezoneDialog.select.searchPlaceholder": string;
127
+ "timezoneDialog.select.noMatch": string;
128
+ "timezoneDialog.currentTime": string;
129
+ "timezoneDialog.success": string;
120
130
  "deleteDashboardDialog.headline": string;
121
131
  "deleteDashboardDialog.submitButtonText": string;
122
132
  "deleteDashboardDialog.defaultMessage": string;
@@ -368,6 +378,7 @@ export declare const uk_UA: {
368
378
  "header.shareStatus.private.text": string;
369
379
  "header.shareStatus.private.strict.tooltip": string;
370
380
  "header.shareStatus.private.not.strict.tooltip": string;
381
+ "topBar.timezoneIndicator.tooltip": string;
371
382
  "dashboard.shareDialog.removeAccessGranteeTooltip": string;
372
383
  "dashboardMeasureValueFilter.section.from_dashboard": string;
373
384
  "dashboardMeasureValueFilter.section.all_other": string;
@@ -1 +1 @@
1
- {"version":3,"file":"uk-UA.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/uk-UA.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm3BjB,CAAC"}
1
+ {"version":3,"file":"uk-UA.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/uk-UA.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA83BjB,CAAC"}
@@ -60,6 +60,7 @@ export const uk_UA = {
60
60
  "options.menu.data.too.large": "Експорт недоступний через надто велику кількість точок даних у результаті.",
61
61
  "options.menu.unsupported.raw.error": "Експорт недоступний через надто велику кількість точок даних або помилку в результаті",
62
62
  "options.menu.density": "Щільність вмісту",
63
+ "options.menu.changeTimezone": "Змінити часовий пояс",
63
64
  "density.dialog.title": "Щільність вмісту",
64
65
  "density.dialog.description": "Виберіть бажаний рівень щільності вмісту для цієї та інших панелей керування.",
65
66
  "density.dialog.option.standard": "Комфортна",
@@ -111,14 +112,23 @@ export const uk_UA = {
111
112
  "settingsDashboardDialog.section.timezone": "Часовий пояс",
112
113
  "settingsDashboardDialog.section.timezone.defaultTimezone": "Часовий пояс за замовчуванням",
113
114
  "settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "Часовий пояс, який використовується для оцінювання фільтрів дати та відображення дат на цій інформаційній панелі.",
114
- "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Часовий пояс робочої області",
115
- "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "З браузера ({timezone})",
115
+ "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "За замовчуванням для робочої області ({timezone})",
116
+ "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Локальний час користувача (визначено браузером)",
116
117
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle": "Дозволити користувачам змінювати часовий пояс інформаційної панелі",
117
118
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": "Якщо ввімкнено, переглядачі можуть тимчасово змінювати часовий пояс інформаційної панелі. Зміна не зберігається.",
118
119
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": "Показувати часовий пояс",
119
120
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": "Якщо ввімкнено, інформаційна панель відображає, який часовий пояс використовується.",
120
121
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": "Пошук ...",
121
122
  "settingsDashboardDialog.section.timezone.select.noMatch": "Немає відповідного часового поясу.",
123
+ "timezoneDialog.title": "Змінити часовий пояс",
124
+ "timezoneDialog.description": "<b>Примітка:</b> Часовий пояс скидається до значення за замовчуванням ({timezone}) під час перезавантаження сторінки.",
125
+ "timezoneDialog.description.ariaLabel": "Інформаційне повідомлення діалогового вікна зміни часового поясу",
126
+ "timezoneDialog.default": "За замовчуванням ({timezone})",
127
+ "timezoneDialog.fromBrowser": "Мій локальний час ({timezone})",
128
+ "timezoneDialog.select.searchPlaceholder": "Пошук ...",
129
+ "timezoneDialog.select.noMatch": "Немає відповідного часового поясу.",
130
+ "timezoneDialog.currentTime": "Зараз {time}",
131
+ "timezoneDialog.success": "Чудово! Часовий пояс змінено!",
122
132
  "deleteDashboardDialog.headline": "Видалити інформаційну панель?",
123
133
  "deleteDashboardDialog.submitButtonText": "Видалити",
124
134
  "deleteDashboardDialog.defaultMessage": "Ви впевнені, що хочете видалити інформаційну панель {title}?",
@@ -370,6 +380,7 @@ export const uk_UA = {
370
380
  "header.shareStatus.private.text": "Приватний",
371
381
  "header.shareStatus.private.strict.tooltip": "Лише ви можете переглядати та редагувати цей dashboard.",
372
382
  "header.shareStatus.private.not.strict.tooltip": "Творець може редагувати цей dashboard. Інші користувачі з відповідними ролями можуть редагувати цей dashboard, якщо перейдуть до нього через деталізацію.",
383
+ "topBar.timezoneIndicator.tooltip": "Часовий пояс",
373
384
  "dashboard.shareDialog.removeAccessGranteeTooltip": "Скасувати доступ до цього dashboard.",
374
385
  "dashboardMeasureValueFilter.section.from_dashboard": "З інформаційної панелі",
375
386
  "dashboardMeasureValueFilter.section.all_other": "Усе інше",
@@ -58,6 +58,7 @@ export declare const vi_VN: {
58
58
  "options.menu.data.too.large": string;
59
59
  "options.menu.unsupported.raw.error": string;
60
60
  "options.menu.density": string;
61
+ "options.menu.changeTimezone": string;
61
62
  "density.dialog.title": string;
62
63
  "density.dialog.description": string;
63
64
  "density.dialog.option.standard": string;
@@ -117,6 +118,15 @@ export declare const vi_VN: {
117
118
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": string;
118
119
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": string;
119
120
  "settingsDashboardDialog.section.timezone.select.noMatch": string;
121
+ "timezoneDialog.title": string;
122
+ "timezoneDialog.description": string;
123
+ "timezoneDialog.description.ariaLabel": string;
124
+ "timezoneDialog.default": string;
125
+ "timezoneDialog.fromBrowser": string;
126
+ "timezoneDialog.select.searchPlaceholder": string;
127
+ "timezoneDialog.select.noMatch": string;
128
+ "timezoneDialog.currentTime": string;
129
+ "timezoneDialog.success": string;
120
130
  "deleteDashboardDialog.headline": string;
121
131
  "deleteDashboardDialog.submitButtonText": string;
122
132
  "deleteDashboardDialog.defaultMessage": string;
@@ -368,6 +378,7 @@ export declare const vi_VN: {
368
378
  "header.shareStatus.private.text": string;
369
379
  "header.shareStatus.private.strict.tooltip": string;
370
380
  "header.shareStatus.private.not.strict.tooltip": string;
381
+ "topBar.timezoneIndicator.tooltip": string;
371
382
  "dashboard.shareDialog.removeAccessGranteeTooltip": string;
372
383
  "dashboardMeasureValueFilter.section.from_dashboard": string;
373
384
  "dashboardMeasureValueFilter.section.all_other": string;
@@ -1 +1 @@
1
- {"version":3,"file":"vi-VN.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/vi-VN.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm3BjB,CAAC"}
1
+ {"version":3,"file":"vi-VN.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/vi-VN.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA83BjB,CAAC"}
@@ -60,6 +60,7 @@ export const vi_VN = {
60
60
  "options.menu.data.too.large": "Không thể xuất do có quá nhiều điểm dữ liệu trong kết quả.",
61
61
  "options.menu.unsupported.raw.error": "Không thể xuất do có quá nhiều điểm dữ liệu hoặc lỗi trong kết quả",
62
62
  "options.menu.density": "Mật độ nội dung",
63
+ "options.menu.changeTimezone": "Thay đổi múi giờ",
63
64
  "density.dialog.title": "Mật độ nội dung",
64
65
  "density.dialog.description": "Chọn mức mật độ nội dung bạn ưu tiên cho bảng điều khiển này và các bảng điều khiển khác.",
65
66
  "density.dialog.option.standard": "Thoải mái",
@@ -111,14 +112,23 @@ export const vi_VN = {
111
112
  "settingsDashboardDialog.section.timezone": "Múi giờ",
112
113
  "settingsDashboardDialog.section.timezone.defaultTimezone": "Múi giờ mặc định",
113
114
  "settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "Múi giờ được dùng để đánh giá các bộ lọc ngày và hiển thị ngày trên bảng điều khiển này.",
114
- "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Múi giờ của không gian làm việc",
115
- "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Từ trình duyệt ({timezone})",
115
+ "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Mặc định của không gian làm việc ({timezone})",
116
+ "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Giờ địa phương của người dùng (Do trình duyệt phát hiện)",
116
117
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle": "Cho phép người dùng thay đổi múi giờ của bảng điều khiển",
117
118
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": "Khi được bật, người xem có thể tạm thời thay đổi múi giờ của bảng điều khiển. Thay đổi này không được lưu.",
118
119
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": "Hiển thị múi giờ",
119
120
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": "Khi được bật, bảng điều khiển hiển thị múi giờ đang được sử dụng.",
120
121
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": "Tìm kiếm ...",
121
122
  "settingsDashboardDialog.section.timezone.select.noMatch": "Không có múi giờ khớp.",
123
+ "timezoneDialog.title": "Thay đổi múi giờ",
124
+ "timezoneDialog.description": "<b>Lưu ý:</b> Múi giờ sẽ đặt lại về mặc định ({timezone}) khi bạn tải lại trang.",
125
+ "timezoneDialog.description.ariaLabel": "Thông báo thông tin của hộp thoại thay đổi múi giờ",
126
+ "timezoneDialog.default": "Mặc định ({timezone})",
127
+ "timezoneDialog.fromBrowser": "Giờ địa phương của tôi ({timezone})",
128
+ "timezoneDialog.select.searchPlaceholder": "Tìm kiếm ...",
129
+ "timezoneDialog.select.noMatch": "Không có múi giờ khớp.",
130
+ "timezoneDialog.currentTime": "Hiện tại {time}",
131
+ "timezoneDialog.success": "Tuyệt vời! Chúng tôi đã thay đổi múi giờ!",
122
132
  "deleteDashboardDialog.headline": "Xóa bảng điều khiển?",
123
133
  "deleteDashboardDialog.submitButtonText": "Xóa",
124
134
  "deleteDashboardDialog.defaultMessage": "Bạn có chắc chắn muốn xóa bảng điều khiển {title}?",
@@ -370,6 +380,7 @@ export const vi_VN = {
370
380
  "header.shareStatus.private.text": "Riêng tư",
371
381
  "header.shareStatus.private.strict.tooltip": "Chỉ bạn mới có thể xem và chỉnh sửa bảng điều khiển này.",
372
382
  "header.shareStatus.private.not.strict.tooltip": "Người tạo có thể chỉnh sửa bảng điều khiển này. Những người dùng khác có vai trò người dùng phù hợp có thể chỉnh sửa bảng điều khiển này khi họ đi sâu vào nó.",
383
+ "topBar.timezoneIndicator.tooltip": "Múi giờ",
373
384
  "dashboard.shareDialog.removeAccessGranteeTooltip": "Loại bỏ quyền truy cập vào bảng điều khiển này.",
374
385
  "dashboardMeasureValueFilter.section.from_dashboard": "Từ bảng điều khiển",
375
386
  "dashboardMeasureValueFilter.section.all_other": "Tất cả khác",
@@ -58,6 +58,7 @@ export declare const zh_HK: {
58
58
  "options.menu.data.too.large": string;
59
59
  "options.menu.unsupported.raw.error": string;
60
60
  "options.menu.density": string;
61
+ "options.menu.changeTimezone": string;
61
62
  "density.dialog.title": string;
62
63
  "density.dialog.description": string;
63
64
  "density.dialog.option.standard": string;
@@ -117,6 +118,15 @@ export declare const zh_HK: {
117
118
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": string;
118
119
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": string;
119
120
  "settingsDashboardDialog.section.timezone.select.noMatch": string;
121
+ "timezoneDialog.title": string;
122
+ "timezoneDialog.description": string;
123
+ "timezoneDialog.description.ariaLabel": string;
124
+ "timezoneDialog.default": string;
125
+ "timezoneDialog.fromBrowser": string;
126
+ "timezoneDialog.select.searchPlaceholder": string;
127
+ "timezoneDialog.select.noMatch": string;
128
+ "timezoneDialog.currentTime": string;
129
+ "timezoneDialog.success": string;
120
130
  "deleteDashboardDialog.headline": string;
121
131
  "deleteDashboardDialog.submitButtonText": string;
122
132
  "deleteDashboardDialog.defaultMessage": string;
@@ -368,6 +378,7 @@ export declare const zh_HK: {
368
378
  "header.shareStatus.private.text": string;
369
379
  "header.shareStatus.private.strict.tooltip": string;
370
380
  "header.shareStatus.private.not.strict.tooltip": string;
381
+ "topBar.timezoneIndicator.tooltip": string;
371
382
  "dashboard.shareDialog.removeAccessGranteeTooltip": string;
372
383
  "dashboardMeasureValueFilter.section.from_dashboard": string;
373
384
  "dashboardMeasureValueFilter.section.all_other": string;
@@ -1 +1 @@
1
- {"version":3,"file":"zh-HK.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/zh-HK.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm3BjB,CAAC"}
1
+ {"version":3,"file":"zh-HK.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/zh-HK.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA83BjB,CAAC"}
@@ -60,6 +60,7 @@ export const zh_HK = {
60
60
  "options.menu.data.too.large": "由於結果中的數據點過多,無法導出。",
61
61
  "options.menu.unsupported.raw.error": "由於數據點過多或結果錯誤,無法匯出",
62
62
  "options.menu.density": "內容密度",
63
+ "options.menu.changeTimezone": "變更時區",
63
64
  "density.dialog.title": "內容密度",
64
65
  "density.dialog.description": "選擇您偏好的內容密度級別,以套用於此及其他儀表板。",
65
66
  "density.dialog.option.standard": "舒適",
@@ -111,14 +112,23 @@ export const zh_HK = {
111
112
  "settingsDashboardDialog.section.timezone": "時區",
112
113
  "settingsDashboardDialog.section.timezone.defaultTimezone": "默認時區",
113
114
  "settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "用於評估日期篩選器及在此儀表板上顯示日期的時區。",
114
- "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "工作區時區",
115
- "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "從瀏覽器取得 ({timezone})",
115
+ "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "工作區預設值 ({timezone})",
116
+ "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "使用者本地時間(瀏覽器偵測)",
116
117
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle": "允許使用者變更儀表板時區",
117
118
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": "啟用後,檢視者可以暫時變更儀表板時區。此變更不會儲存。",
118
119
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": "顯示時區",
119
120
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": "啟用後,儀表板會顯示使用的時區。",
120
121
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": "搜尋...",
121
122
  "settingsDashboardDialog.section.timezone.select.noMatch": "沒有相符的時區。",
123
+ "timezoneDialog.title": "變更時區",
124
+ "timezoneDialog.description": "<b>注意:</b>重新載入頁面後,時區會重設為預設值 ({timezone})。",
125
+ "timezoneDialog.description.ariaLabel": "變更時區對話方塊資訊訊息",
126
+ "timezoneDialog.default": "預設值 ({timezone})",
127
+ "timezoneDialog.fromBrowser": "我的本地時間 ({timezone})",
128
+ "timezoneDialog.select.searchPlaceholder": "搜尋...",
129
+ "timezoneDialog.select.noMatch": "沒有相符的時區。",
130
+ "timezoneDialog.currentTime": "現在 {time}",
131
+ "timezoneDialog.success": "很好!我們已變更時區!",
122
132
  "deleteDashboardDialog.headline": "刪除儀錶板?",
123
133
  "deleteDashboardDialog.submitButtonText": "刪除",
124
134
  "deleteDashboardDialog.defaultMessage": "你確定要刪除控制面板 {title}啊?",
@@ -370,6 +380,7 @@ export const zh_HK = {
370
380
  "header.shareStatus.private.text": "私人",
371
381
  "header.shareStatus.private.strict.tooltip": "只有您可以查看和編輯此儀錶板。",
372
382
  "header.shareStatus.private.not.strict.tooltip": "創建者可以編輯此儀錶板。 具有適當用戶角色嘅其他使用者可以喺切入到此儀錶板時編輯此儀錶板。",
383
+ "topBar.timezoneIndicator.tooltip": "時區",
373
384
  "dashboard.shareDialog.removeAccessGranteeTooltip": "刪除對此儀錶板嘅存取權限。",
374
385
  "dashboardMeasureValueFilter.section.from_dashboard": "來自儀表板",
375
386
  "dashboardMeasureValueFilter.section.all_other": "所有其他",