@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
@@ -237,6 +237,10 @@ export const en_US = {
237
237
  "text": "Content density",
238
238
  "crowdinContext": "Menu option to open the content density dialog"
239
239
  },
240
+ "options.menu.changeTimezone": {
241
+ "text": "Change time zone",
242
+ "crowdinContext": "Menu option to temporarily change the dashboard time zone in view mode"
243
+ },
240
244
  "density.dialog.title": {
241
245
  "text": "Content density",
242
246
  "crowdinContext": "Title of the content density dialog"
@@ -442,12 +446,12 @@ export const en_US = {
442
446
  "crowdinContext": "Tooltip of the default time zone picker in the dashboard settings dialog"
443
447
  },
444
448
  "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": {
445
- "text": "Workspace time zone",
446
- "crowdinContext": "Time zone picker item meaning the workspace default time zone is used"
449
+ "text": "Workspace default ({timezone})",
450
+ "crowdinContext": "Time zone picker item meaning the workspace default time zone is used. The {timezone} placeholder shows the effective workspace or organization time zone."
447
451
  },
448
452
  "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": {
449
- "text": "From browser ({timezone})",
450
- "crowdinContext": "Time zone picker item meaning the time zone is detected from the viewer's browser. The {timezone} placeholder shows the detected time zone."
453
+ "text": "User local time (Browser-detected)",
454
+ "crowdinContext": "Time zone picker item meaning the time zone is detected from the viewer's browser."
451
455
  },
452
456
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle": {
453
457
  "text": "Allow users to change the dashboard time zone",
@@ -473,6 +477,42 @@ export const en_US = {
473
477
  "text": "No matching time zone.",
474
478
  "crowdinContext": "Message shown when the time zone search yields no results"
475
479
  },
480
+ "timezoneDialog.title": {
481
+ "text": "Change time zone",
482
+ "crowdinContext": "Title of the dialog for temporarily changing the dashboard time zone in view mode"
483
+ },
484
+ "timezoneDialog.description": {
485
+ "text": "<b>Note:</b> Time zone resets to the default ({timezone}) when you reload the page.",
486
+ "crowdinContext": "Note in the dialog for temporarily changing the dashboard time zone in view mode. The {timezone} placeholder is the dashboard's default time zone (friendly name, e.g. 'Prague'). The <b> tags wrap the 'Note:' label."
487
+ },
488
+ "timezoneDialog.description.ariaLabel": {
489
+ "text": "Change timezone dialog information message",
490
+ "crowdinContext": "Aria label for the change timezone dialog information message"
491
+ },
492
+ "timezoneDialog.default": {
493
+ "text": "Default ({timezone})",
494
+ "crowdinContext": "Time zone picker item meaning the dashboard's configured time zone is used. The {timezone} placeholder shows the configured time zone."
495
+ },
496
+ "timezoneDialog.fromBrowser": {
497
+ "text": "My local time ({timezone})",
498
+ "crowdinContext": "Time zone picker item meaning the time zone is detected from the viewer's browser. The {timezone} placeholder shows the detected time zone."
499
+ },
500
+ "timezoneDialog.select.searchPlaceholder": {
501
+ "text": "Search ...",
502
+ "crowdinContext": "Placeholder of the search input in the time zone picker of the change time zone dialog"
503
+ },
504
+ "timezoneDialog.select.noMatch": {
505
+ "text": "No matching time zone.",
506
+ "crowdinContext": "Message shown when the time zone search yields no results in the change time zone dialog"
507
+ },
508
+ "timezoneDialog.currentTime": {
509
+ "text": "Now {time}",
510
+ "crowdinContext": "Live clock preview next to the time zone picker in the change time zone dialog. Example: 'Now 14:30'. The {time} placeholder is replaced with the current time in the selected time zone."
511
+ },
512
+ "timezoneDialog.success": {
513
+ "text": "Great! We changed the time zone!",
514
+ "crowdinContext": "Success toast shown after the viewer applies a temporary time zone change in the change time zone dialog"
515
+ },
476
516
  "deleteDashboardDialog.headline": {
477
517
  "text": "Delete dashboard?",
478
518
  "crowdinContext": "Confirmation dialog for deleting a dashboard"
@@ -1478,7 +1518,7 @@ export const en_US = {
1478
1518
  "crowdinContext": "Tooltip explaining that while the dashboard is private, users with proper roles can edit it when accessing through drill navigation"
1479
1519
  },
1480
1520
  "topBar.timezoneIndicator.tooltip": {
1481
- "text": "Time zone: {name} ({offset})",
1521
+ "text": "Time zone",
1482
1522
  "crowdinContext": "Tooltip of the time zone indicator in the dashboard top bar. The {name} placeholder is the friendly time zone name (e.g. Prague), the {offset} placeholder is its UTC offset (e.g. GMT+02:00)."
1483
1523
  },
1484
1524
  "dashboard.shareDialog.removeAccessGranteeTooltip": {
@@ -58,6 +58,7 @@ export declare const es_419: {
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 es_419: {
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 es_419: {
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":"es-419.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/es-419.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm3BlB,CAAC"}
1
+ {"version":3,"file":"es-419.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/es-419.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA83BlB,CAAC"}
@@ -60,6 +60,7 @@ export const es_419 = {
60
60
  "options.menu.data.too.large": "Exportación no disponible debido a demasiados puntos de datos en el resultado.",
61
61
  "options.menu.unsupported.raw.error": "Exportación no disponible debido a demasiados puntos de datos o error en el resultado",
62
62
  "options.menu.density": "Densidad del contenido",
63
+ "options.menu.changeTimezone": "Cambiar zona horaria",
63
64
  "density.dialog.title": "Densidad del contenido",
64
65
  "density.dialog.description": "Elija su nivel preferido de densidad del contenido para este y otros paneles.",
65
66
  "density.dialog.option.standard": "Cómodo",
@@ -111,14 +112,23 @@ export const es_419 = {
111
112
  "settingsDashboardDialog.section.timezone": "Zona horaria",
112
113
  "settingsDashboardDialog.section.timezone.defaultTimezone": "Zona horaria predeterminada",
113
114
  "settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "Zona horaria utilizada para evaluar filtros de fecha y mostrar fechas en este panel.",
114
- "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Zona horaria del espacio de trabajo",
115
- "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Desde el navegador ({timezone})",
115
+ "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Predeterminada del espacio de trabajo ({timezone})",
116
+ "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Hora local del usuario (Detectada por el navegador)",
116
117
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle": "Permitir que los usuarios cambien la zona horaria del panel",
117
118
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": "Cuando está habilitado, los usuarios pueden cambiar temporalmente la zona horaria del panel. El cambio no se guarda.",
118
119
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": "Mostrar zona horaria",
119
120
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": "Cuando está habilitado, el panel muestra qué zona horaria se utiliza.",
120
121
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": "Buscar...",
121
122
  "settingsDashboardDialog.section.timezone.select.noMatch": "No hay zonas horarias coincidentes.",
123
+ "timezoneDialog.title": "Cambiar zona horaria",
124
+ "timezoneDialog.description": "<b>Nota:</b> La zona horaria se restablece al valor predeterminado ({timezone}) cuando vuelve a cargar la página.",
125
+ "timezoneDialog.description.ariaLabel": "Mensaje informativo del cuadro de diálogo para cambiar la zona horaria",
126
+ "timezoneDialog.default": "Predeterminada ({timezone})",
127
+ "timezoneDialog.fromBrowser": "Mi hora local ({timezone})",
128
+ "timezoneDialog.select.searchPlaceholder": "Buscar...",
129
+ "timezoneDialog.select.noMatch": "No hay zonas horarias coincidentes.",
130
+ "timezoneDialog.currentTime": "Ahora {time}",
131
+ "timezoneDialog.success": "¡Listo! ¡Cambiamos la zona horaria!",
122
132
  "deleteDashboardDialog.headline": "¿Desea eliminar el panel?",
123
133
  "deleteDashboardDialog.submitButtonText": "Eliminar",
124
134
  "deleteDashboardDialog.defaultMessage": "¿Está seguro de que desea eliminar el panel {title}?",
@@ -370,6 +380,7 @@ export const es_419 = {
370
380
  "header.shareStatus.private.text": "Privado",
371
381
  "header.shareStatus.private.strict.tooltip": "Sólo usted puede visualizar y editar este panel.",
372
382
  "header.shareStatus.private.not.strict.tooltip": "El creador puede editar este panel. Otros usuarios con funciones de usuario apropiadas pueden editar este panel cuando exploren hacia él.",
383
+ "topBar.timezoneIndicator.tooltip": "Zona horaria",
373
384
  "dashboard.shareDialog.removeAccessGranteeTooltip": "Eliminar acceso a este panel.",
374
385
  "dashboardMeasureValueFilter.section.from_dashboard": "Desde el panel",
375
386
  "dashboardMeasureValueFilter.section.all_other": "Todos los demás",
@@ -58,6 +58,7 @@ export declare const es_ES: {
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 es_ES: {
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 es_ES: {
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":"es-ES.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/es-ES.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm3BjB,CAAC"}
1
+ {"version":3,"file":"es-ES.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/es-ES.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA83BjB,CAAC"}
@@ -60,6 +60,7 @@ export const es_ES = {
60
60
  "options.menu.data.too.large": "Exportación no disponible debido a demasiados puntos de datos en el resultado.",
61
61
  "options.menu.unsupported.raw.error": "Exportación no disponible debido a demasiados puntos de datos o error en el resultado",
62
62
  "options.menu.density": "Densidad de contenido",
63
+ "options.menu.changeTimezone": "Cambiar zona horaria",
63
64
  "density.dialog.title": "Densidad de contenido",
64
65
  "density.dialog.description": "Elija su nivel preferido de densidad de contenido para este y otros paneles.",
65
66
  "density.dialog.option.standard": "Cómodo",
@@ -111,14 +112,23 @@ export const es_ES = {
111
112
  "settingsDashboardDialog.section.timezone": "Zona horaria",
112
113
  "settingsDashboardDialog.section.timezone.defaultTimezone": "Zona horaria predeterminada",
113
114
  "settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "Zona horaria utilizada para evaluar filtros de fecha y mostrar fechas en este panel.",
114
- "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Zona horaria del espacio de trabajo",
115
- "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Del navegador ({timezone})",
115
+ "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Predeterminada del espacio de trabajo ({timezone})",
116
+ "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Hora local del usuario (Detectada por el navegador)",
116
117
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle": "Permitir a los usuarios cambiar la zona horaria del panel",
117
118
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": "Cuando está activado, los usuarios pueden cambiar temporalmente la zona horaria del panel. El cambio no se guarda.",
118
119
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": "Mostrar zona horaria",
119
120
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": "Cuando está activado, el panel muestra qué zona horaria se utiliza.",
120
121
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": "Buscar...",
121
122
  "settingsDashboardDialog.section.timezone.select.noMatch": "No hay ninguna zona horaria coincidente.",
123
+ "timezoneDialog.title": "Cambiar zona horaria",
124
+ "timezoneDialog.description": "<b>Nota:</b> La zona horaria se restablece al valor predeterminado ({timezone}) al recargar la página.",
125
+ "timezoneDialog.description.ariaLabel": "Mensaje informativo del cuadro de diálogo de cambio de zona horaria",
126
+ "timezoneDialog.default": "Predeterminada ({timezone})",
127
+ "timezoneDialog.fromBrowser": "Mi hora local ({timezone})",
128
+ "timezoneDialog.select.searchPlaceholder": "Buscar...",
129
+ "timezoneDialog.select.noMatch": "No hay ninguna zona horaria coincidente.",
130
+ "timezoneDialog.currentTime": "Ahora {time}",
131
+ "timezoneDialog.success": "¡Perfecto! ¡Hemos cambiado la zona horaria!",
122
132
  "deleteDashboardDialog.headline": "¿Desea eliminar el panel?",
123
133
  "deleteDashboardDialog.submitButtonText": "Eliminar",
124
134
  "deleteDashboardDialog.defaultMessage": "¿Está seguro de que desea eliminar el panel {title}?",
@@ -370,6 +380,7 @@ export const es_ES = {
370
380
  "header.shareStatus.private.text": "Privado",
371
381
  "header.shareStatus.private.strict.tooltip": "Solo usted puede visualizar y editar este panel.",
372
382
  "header.shareStatus.private.not.strict.tooltip": "El creador puede editar este panel. Otros usuarios con funciones de usuario apropiadas pueden editar este panel cuando exploren hacia él.",
383
+ "topBar.timezoneIndicator.tooltip": "Zona horaria",
373
384
  "dashboard.shareDialog.removeAccessGranteeTooltip": "Eliminar acceso a este panel.",
374
385
  "dashboardMeasureValueFilter.section.from_dashboard": "Del panel",
375
386
  "dashboardMeasureValueFilter.section.all_other": "Todos los demás",
@@ -58,6 +58,7 @@ export declare const fi_FI: {
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 fi_FI: {
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 fi_FI: {
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":"fi-FI.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/fi-FI.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm3BjB,CAAC"}
1
+ {"version":3,"file":"fi-FI.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/fi-FI.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA83BjB,CAAC"}
@@ -60,6 +60,7 @@ export const fi_FI = {
60
60
  "options.menu.data.too.large": "Vienti ei ole käytettävissä, koska tuloksessa on liian monta datapistettä.",
61
61
  "options.menu.unsupported.raw.error": "Vienti ei ole käytettävissä liian monien tietopisteiden tai tuloksen virheen vuoksi",
62
62
  "options.menu.density": "Sisällön tiheys",
63
+ "options.menu.changeTimezone": "Vaihda aikavyöhyke",
63
64
  "density.dialog.title": "Sisällön tiheys",
64
65
  "density.dialog.description": "Valitse haluamasi sisällön tiheystaso tälle ja muille koontinäytöille.",
65
66
  "density.dialog.option.standard": "Mukava",
@@ -111,14 +112,23 @@ export const fi_FI = {
111
112
  "settingsDashboardDialog.section.timezone": "Aikavyöhyke",
112
113
  "settingsDashboardDialog.section.timezone.defaultTimezone": "Oletusaikavyöhyke",
113
114
  "settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "Aikavyöhyke, jota käytetään päivämääräsuodattimien arviointiin ja päivämäärien näyttämiseen tässä koontinäytössä.",
114
- "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Työtilan aikavyöhyke",
115
- "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Selaimesta ({timezone})",
115
+ "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Työtilan oletus ({timezone})",
116
+ "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Käyttäjän paikallinen aika (Selaimen tunnistama)",
116
117
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle": "Salli käyttäjien muuttaa koontinäytön aikavyöhykettä",
117
118
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": "Kun tämä on käytössä, katsojat voivat tilapäisesti muuttaa koontinäytön aikavyöhykettä. Muutosta ei tallenneta.",
118
119
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": "Näytä aikavyöhyke",
119
120
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": "Kun tämä on käytössä, koontinäyttö näyttää, mitä aikavyöhykettä käytetään.",
120
121
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": "Hae ...",
121
122
  "settingsDashboardDialog.section.timezone.select.noMatch": "Ei vastaavaa aikavyöhykettä.",
123
+ "timezoneDialog.title": "Vaihda aikavyöhyke",
124
+ "timezoneDialog.description": "<b>Huomautus:</b> Aikavyöhyke palautuu oletukseen ({timezone}), kun sivu ladataan uudelleen.",
125
+ "timezoneDialog.description.ariaLabel": "Aikavyöhykkeen vaihtamisen valintaikkunan tietoviesti",
126
+ "timezoneDialog.default": "Oletus ({timezone})",
127
+ "timezoneDialog.fromBrowser": "Oma paikallinen aika ({timezone})",
128
+ "timezoneDialog.select.searchPlaceholder": "Hae ...",
129
+ "timezoneDialog.select.noMatch": "Ei vastaavaa aikavyöhykettä.",
130
+ "timezoneDialog.currentTime": "Nyt {time}",
131
+ "timezoneDialog.success": "Hienoa! Vaihdoimme aikavyöhykkeen!",
122
132
  "deleteDashboardDialog.headline": "Poista kojelauta?",
123
133
  "deleteDashboardDialog.submitButtonText": "Poista",
124
134
  "deleteDashboardDialog.defaultMessage": "Haluatko varmasti poistaa ohjauspaneelin {title}?",
@@ -370,6 +380,7 @@ export const fi_FI = {
370
380
  "header.shareStatus.private.text": "Yksityinen",
371
381
  "header.shareStatus.private.strict.tooltip": "Vain sinä voit tarkastella ja muokata tätä kojelautaa.",
372
382
  "header.shareStatus.private.not.strict.tooltip": "Kojelaudan luoja voi muokata tätä kojelautaa. Muut käyttäjät, joilla on asianmukaiset käyttäjäroolit, voivat muokata tätä kojelautaa, kun he porautuvat siihen.",
383
+ "topBar.timezoneIndicator.tooltip": "Aikavyöhyke",
373
384
  "dashboard.shareDialog.removeAccessGranteeTooltip": "Poista pääsy tähän kojelautaan.",
374
385
  "dashboardMeasureValueFilter.section.from_dashboard": "Koontinäytöstä",
375
386
  "dashboardMeasureValueFilter.section.all_other": "Kaikki muut",
@@ -58,6 +58,7 @@ export declare const fr_CA: {
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 fr_CA: {
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 fr_CA: {
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":"fr-CA.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/fr-CA.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm3BjB,CAAC"}
1
+ {"version":3,"file":"fr-CA.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/fr-CA.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA83BjB,CAAC"}
@@ -60,6 +60,7 @@ export const fr_CA = {
60
60
  "options.menu.data.too.large": "Exportation non disponible en raison d’un trop grand nombre de points de données dans le résultat.",
61
61
  "options.menu.unsupported.raw.error": "Exportation indisponible en raison d’un trop grand nombre de points de données ou d’une erreur dans le résultat",
62
62
  "options.menu.density": "Densité du contenu",
63
+ "options.menu.changeTimezone": "Changer le fuseau horaire",
63
64
  "density.dialog.title": "Densité du contenu",
64
65
  "density.dialog.description": "Choisissez votre niveau de densité du contenu préféré pour ce tableau de bord et les autres.",
65
66
  "density.dialog.option.standard": "Confortable",
@@ -111,14 +112,23 @@ export const fr_CA = {
111
112
  "settingsDashboardDialog.section.timezone": "Fuseau horaire",
112
113
  "settingsDashboardDialog.section.timezone.defaultTimezone": "Fuseau horaire par défaut",
113
114
  "settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "Fuseau horaire utilisé pour évaluer les filtres de date et afficher les dates sur ce tableau de bord.",
114
- "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Fuseau horaire de l’espace de travail",
115
- "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Depuis le navigateur ({timezone})",
115
+ "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Valeur par défaut de l’espace de travail ({timezone})",
116
+ "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Heure locale de l’utilisateur (détectée par le navigateur)",
116
117
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle": "Autoriser les utilisateurs à modifier le fuseau horaire du tableau de bord",
117
118
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": "Lorsque cette option est activée, les utilisateurs peuvent modifier temporairement le fuseau horaire du tableau de bord. La modification n’est pas enregistrée.",
118
119
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": "Afficher le fuseau horaire",
119
120
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": "Lorsque cette option est activée, le tableau de bord affiche le fuseau horaire utilisé.",
120
121
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": "Recherche…",
121
122
  "settingsDashboardDialog.section.timezone.select.noMatch": "Aucun fuseau horaire correspondant.",
123
+ "timezoneDialog.title": "Changer le fuseau horaire",
124
+ "timezoneDialog.description": "<b>Remarque :</b> Le fuseau horaire est réinitialisé à la valeur par défaut ({timezone}) lorsque vous rechargez la page.",
125
+ "timezoneDialog.description.ariaLabel": "Message d’information de la boîte de dialogue de changement de fuseau horaire",
126
+ "timezoneDialog.default": "Par défaut ({timezone})",
127
+ "timezoneDialog.fromBrowser": "Mon heure locale ({timezone})",
128
+ "timezoneDialog.select.searchPlaceholder": "Recherche…",
129
+ "timezoneDialog.select.noMatch": "Aucun fuseau horaire correspondant.",
130
+ "timezoneDialog.currentTime": "Maintenant {time}",
131
+ "timezoneDialog.success": "Parfait ! Nous avons changé le fuseau horaire !",
122
132
  "deleteDashboardDialog.headline": "Supprimez le tableau de bord?",
123
133
  "deleteDashboardDialog.submitButtonText": "Supprimer",
124
134
  "deleteDashboardDialog.defaultMessage": "Êtes-vous sûr de vouloir supprimer le tableau de bord {title}?",
@@ -370,6 +380,7 @@ export const fr_CA = {
370
380
  "header.shareStatus.private.text": "Privé",
371
381
  "header.shareStatus.private.strict.tooltip": "Vous seul pouvez visualiser et modifier ce tableau de bord.",
372
382
  "header.shareStatus.private.not.strict.tooltip": "Le créateur du tableau de bord peut modifier celui-ci. Les autres utilisateurs avec des rôles adéquats peuvent modifier le tableau de bord lorsqu’ils l’explorent.",
383
+ "topBar.timezoneIndicator.tooltip": "Fuseau horaire",
373
384
  "dashboard.shareDialog.removeAccessGranteeTooltip": "Retirer l’accès à ce tableau de bord.",
374
385
  "dashboardMeasureValueFilter.section.from_dashboard": "À partir du tableau de bord",
375
386
  "dashboardMeasureValueFilter.section.all_other": "Tous les autres",
@@ -58,6 +58,7 @@ export declare const fr_FR: {
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 fr_FR: {
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 fr_FR: {
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":"fr-FR.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/fr-FR.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm3BjB,CAAC"}
1
+ {"version":3,"file":"fr-FR.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/fr-FR.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA83BjB,CAAC"}
@@ -60,6 +60,7 @@ export const fr_FR = {
60
60
  "options.menu.data.too.large": "L'exportation n'est pas disponible en raison d'un trop grand nombre de points de données dans le résultat.",
61
61
  "options.menu.unsupported.raw.error": "Exportation indisponible en raison d'un trop grand nombre de points de données ou d'une erreur dans le résultat",
62
62
  "options.menu.density": "Densité du contenu",
63
+ "options.menu.changeTimezone": "Modifier le fuseau horaire",
63
64
  "density.dialog.title": "Densité du contenu",
64
65
  "density.dialog.description": "Choisissez votre niveau de densité du contenu préféré pour ce tableau de bord et les autres tableaux de bord.",
65
66
  "density.dialog.option.standard": "Confortable",
@@ -111,14 +112,23 @@ export const fr_FR = {
111
112
  "settingsDashboardDialog.section.timezone": "Fuseau horaire",
112
113
  "settingsDashboardDialog.section.timezone.defaultTimezone": "Fuseau horaire par défaut",
113
114
  "settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "Fuseau horaire utilisé pour évaluer les filtres de date et afficher les dates sur ce tableau de bord.",
114
- "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Fuseau horaire de l’espace de travail",
115
- "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Depuis le navigateur ({timezone})",
115
+ "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Valeur par défaut de l’espace de travail ({timezone})",
116
+ "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Heure locale de l’utilisateur (Détectée par le navigateur)",
116
117
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle": "Autoriser les utilisateurs à modifier le fuseau horaire du tableau de bord",
117
118
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": "Lorsque cette option est activée, les utilisateurs peuvent modifier temporairement le fuseau horaire du tableau de bord. La modification n’est pas enregistrée.",
118
119
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": "Afficher le fuseau horaire",
119
120
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": "Lorsque cette option est activée, le tableau de bord affiche le fuseau horaire utilisé.",
120
121
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": "Recherche ...",
121
122
  "settingsDashboardDialog.section.timezone.select.noMatch": "Aucun fuseau horaire correspondant.",
123
+ "timezoneDialog.title": "Modifier le fuseau horaire",
124
+ "timezoneDialog.description": "<b>Remarque :</b> Le fuseau horaire revient à la valeur par défaut ({timezone}) lorsque vous rechargez la page.",
125
+ "timezoneDialog.description.ariaLabel": "Message d’information de la boîte de dialogue de modification du fuseau horaire",
126
+ "timezoneDialog.default": "Par défaut ({timezone})",
127
+ "timezoneDialog.fromBrowser": "Mon heure locale ({timezone})",
128
+ "timezoneDialog.select.searchPlaceholder": "Recherche ...",
129
+ "timezoneDialog.select.noMatch": "Aucun fuseau horaire correspondant.",
130
+ "timezoneDialog.currentTime": "Maintenant {time}",
131
+ "timezoneDialog.success": "Parfait ! Nous avons modifié le fuseau horaire !",
122
132
  "deleteDashboardDialog.headline": "Supprimez le tableau de bord?",
123
133
  "deleteDashboardDialog.submitButtonText": "Supprimer",
124
134
  "deleteDashboardDialog.defaultMessage": "Êtes-vous sûr(e) de vouloir supprimer le tableau de bord {title}?",
@@ -370,6 +380,7 @@ export const fr_FR = {
370
380
  "header.shareStatus.private.text": "Privé",
371
381
  "header.shareStatus.private.strict.tooltip": "Vous seul pouvez visualiser et modifier ce tableau de bord.",
372
382
  "header.shareStatus.private.not.strict.tooltip": "Le créateur du tableau de bord peut modifier celui-ci. Les autres utilisateurs avec des rôles adéquats peuvent modifier le tableau de bord lorsqu'ils l'explorent.",
383
+ "topBar.timezoneIndicator.tooltip": "Fuseau horaire",
373
384
  "dashboard.shareDialog.removeAccessGranteeTooltip": "Retirer l'accès à ce tableau de bord.",
374
385
  "dashboardMeasureValueFilter.section.from_dashboard": "Du tableau de bord",
375
386
  "dashboardMeasureValueFilter.section.all_other": "Tous les autres",
@@ -58,6 +58,7 @@ export declare const id_ID: {
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 id_ID: {
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 id_ID: {
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":"id-ID.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/id-ID.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm3BjB,CAAC"}
1
+ {"version":3,"file":"id-ID.localization-bundle.d.ts","sourceRoot":"","sources":["../../../../src/presentation/localization/bundles/id-ID.localization-bundle.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA83BjB,CAAC"}
@@ -60,6 +60,7 @@ export const id_ID = {
60
60
  "options.menu.data.too.large": "Ekspor tidak tersedia karena terlalu banyak titik data dalam hasilnya.",
61
61
  "options.menu.unsupported.raw.error": "Ekspor tidak tersedia karena terlalu banyak titik data atau kesalahan dalam hasilnya",
62
62
  "options.menu.density": "Kepadatan konten",
63
+ "options.menu.changeTimezone": "Ubah zona waktu",
63
64
  "density.dialog.title": "Kepadatan konten",
64
65
  "density.dialog.description": "Pilih tingkat kepadatan konten pilihan Anda untuk dasbor ini dan dasbor lainnya.",
65
66
  "density.dialog.option.standard": "Nyaman",
@@ -111,14 +112,23 @@ export const id_ID = {
111
112
  "settingsDashboardDialog.section.timezone": "Zona waktu",
112
113
  "settingsDashboardDialog.section.timezone.defaultTimezone": "Zona waktu bawaan",
113
114
  "settingsDashboardDialog.section.timezone.defaultTimezone.tooltip": "Zona waktu yang digunakan untuk mengevaluasi filter tanggal dan menampilkan tanggal di dasbor ini.",
114
- "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Zona waktu ruang kerja",
115
- "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Dari browser ({timezone})",
115
+ "settingsDashboardDialog.section.timezone.defaultTimezone.workspace": "Bawaan ruang kerja ({timezone})",
116
+ "settingsDashboardDialog.section.timezone.defaultTimezone.fromBrowser": "Waktu lokal pengguna (Terdeteksi dari browser)",
116
117
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle": "Izinkan pengguna mengubah zona waktu dasbor",
117
118
  "settingsDashboardDialog.section.timezone.allowUserOverride.toggle.tooltip": "Jika diaktifkan, pemirsa dapat mengubah zona waktu dasbor untuk sementara. Perubahan tidak disimpan.",
118
119
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle": "Tampilkan zona waktu",
119
120
  "settingsDashboardDialog.section.timezone.showTimezoneInfo.toggle.tooltip": "Jika diaktifkan, dasbor menampilkan zona waktu yang digunakan.",
120
121
  "settingsDashboardDialog.section.timezone.select.searchPlaceholder": "Cari ...",
121
122
  "settingsDashboardDialog.section.timezone.select.noMatch": "Tidak ada zona waktu yang cocok.",
123
+ "timezoneDialog.title": "Ubah zona waktu",
124
+ "timezoneDialog.description": "<b>Catatan:</b> Zona waktu akan dikembalikan ke bawaan ({timezone}) saat Anda memuat ulang halaman.",
125
+ "timezoneDialog.description.ariaLabel": "Pesan informasi dialog ubah zona waktu",
126
+ "timezoneDialog.default": "Bawaan ({timezone})",
127
+ "timezoneDialog.fromBrowser": "Waktu lokal saya ({timezone})",
128
+ "timezoneDialog.select.searchPlaceholder": "Cari ...",
129
+ "timezoneDialog.select.noMatch": "Tidak ada zona waktu yang cocok.",
130
+ "timezoneDialog.currentTime": "Sekarang {time}",
131
+ "timezoneDialog.success": "Bagus! Kami telah mengubah zona waktu!",
122
132
  "deleteDashboardDialog.headline": "Hapus dasbor?",
123
133
  "deleteDashboardDialog.submitButtonText": "Hapus",
124
134
  "deleteDashboardDialog.defaultMessage": "Apakah Anda yakin ingin menghapus dasbor {title}?",
@@ -370,6 +380,7 @@ export const id_ID = {
370
380
  "header.shareStatus.private.text": "Pribadi",
371
381
  "header.shareStatus.private.strict.tooltip": "Hanya Anda yang dapat melihat dan mengedit dasbor ini.",
372
382
  "header.shareStatus.private.not.strict.tooltip": "Pembuat dapat mengedit dasbor ini. Pengguna lain dengan peran pengguna yang sesuai dapat mengedit dasbor ini saat mereka menelusuri ke sana.",
383
+ "topBar.timezoneIndicator.tooltip": "Zona waktu",
373
384
  "dashboard.shareDialog.removeAccessGranteeTooltip": "Hapus akses ke dasbor ini.",
374
385
  "dashboardMeasureValueFilter.section.from_dashboard": "Dari dasbor",
375
386
  "dashboardMeasureValueFilter.section.all_other": "Semua lainnya",