tera-system-ui 0.1.64 → 0.1.66

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 (273) hide show
  1. package/dist/COMPONENT_API.md +2 -539
  2. package/dist/components/accordion/Accordion.d.ts +24 -0
  3. package/dist/components/accordion/Accordion.js +4 -0
  4. package/dist/components/accordion/components/Accordion.svelte +2 -8
  5. package/dist/components/accordion/components/AccordionContent.svelte +5 -12
  6. package/dist/components/accordion/components/AccordionItem.svelte +3 -9
  7. package/dist/components/accordion/components/AccordionTrigger.svelte +5 -15
  8. package/dist/components/ai/ChatBubble.svelte +35 -0
  9. package/dist/components/ai/ChatBubble.svelte.d.ts +12 -0
  10. package/dist/components/ai/PromptInput.svelte +58 -0
  11. package/dist/components/ai/PromptInput.svelte.d.ts +13 -0
  12. package/dist/components/ai/StreamText.svelte +41 -0
  13. package/dist/components/ai/StreamText.svelte.d.ts +11 -0
  14. package/dist/components/ai/SuggestionChips.svelte +34 -0
  15. package/dist/components/ai/SuggestionChips.svelte.d.ts +10 -0
  16. package/dist/components/ai/ThinkingLoader.svelte +34 -0
  17. package/dist/components/ai/ThinkingLoader.svelte.d.ts +11 -0
  18. package/dist/components/ai/index.d.ts +5 -0
  19. package/dist/components/ai/index.js +5 -0
  20. package/dist/components/alert/Alert.svelte +47 -0
  21. package/dist/components/alert/Alert.svelte.d.ts +15 -0
  22. package/dist/components/alert/index.d.ts +1 -0
  23. package/dist/components/alert/index.js +1 -0
  24. package/dist/components/avatar/Avatar.svelte +9 -25
  25. package/dist/components/badge/Badge.d.ts +52 -0
  26. package/dist/components/badge/Badge.js +22 -0
  27. package/dist/components/badge/Badge.svelte +22 -0
  28. package/dist/components/badge/Badge.svelte.d.ts +4 -0
  29. package/dist/components/badge/index.d.ts +2 -0
  30. package/dist/components/badge/index.js +1 -0
  31. package/dist/components/brand-logo/BrandLogo.svelte +12 -10
  32. package/dist/components/button/Button.d.ts +2 -2
  33. package/dist/components/button/Button.js +12 -12
  34. package/dist/components/button/Button.svelte +7 -34
  35. package/dist/components/card/Card.d.ts +68 -0
  36. package/dist/components/card/Card.js +28 -0
  37. package/dist/components/card/Card.svelte +33 -0
  38. package/dist/components/card/Card.svelte.d.ts +4 -0
  39. package/dist/components/card/index.d.ts +2 -0
  40. package/dist/components/card/index.js +1 -0
  41. package/dist/components/checkbox/Checkbox.d.ts +25 -4
  42. package/dist/components/checkbox/Checkbox.js +4 -0
  43. package/dist/components/checkbox/Checkbox.svelte +13 -16
  44. package/dist/components/checkbox/Checkbox.svelte.d.ts +2 -2
  45. package/dist/components/combobox/Combobox.d.ts +45 -9
  46. package/dist/components/combobox/Combobox.js +5 -7
  47. package/dist/components/combobox/Combobox.svelte +226 -8
  48. package/dist/components/combobox/Combobox.svelte.d.ts +2 -2
  49. package/dist/components/combobox/index.d.ts +1 -1
  50. package/dist/components/command/components/command-empty.svelte +3 -8
  51. package/dist/components/command/components/command-group.svelte +3 -13
  52. package/dist/components/command/components/command-input.svelte +5 -13
  53. package/dist/components/command/components/command-item.svelte +3 -9
  54. package/dist/components/command/components/command-link-item.svelte +3 -8
  55. package/dist/components/command/components/command-list.svelte +3 -8
  56. package/dist/components/command/components/command-separator.svelte +3 -8
  57. package/dist/components/command/components/command-shortcut.svelte +2 -10
  58. package/dist/components/command/components/command.svelte +29 -42
  59. package/dist/components/date-range-picker/DateRangePicker.svelte +490 -0
  60. package/dist/components/date-range-picker/DateRangePicker.svelte.d.ts +4 -0
  61. package/dist/components/date-range-picker/DateRangePicker.types.d.ts +38 -0
  62. package/dist/components/date-range-picker/DateRangePicker.types.js +1 -0
  63. package/dist/components/date-range-picker/index.d.ts +2 -0
  64. package/dist/components/date-range-picker/index.js +1 -0
  65. package/dist/components/dialog/Dialog.d.ts +43 -121
  66. package/dist/components/dialog/Dialog.js +1 -39
  67. package/dist/components/dialog/Dialog.svelte +103 -113
  68. package/dist/components/dialog/Dialog.svelte.d.ts +1 -2
  69. package/dist/components/dialog/dialog.scss +21 -24
  70. package/dist/components/drawer/Drawer.svelte +63 -0
  71. package/dist/components/drawer/Drawer.svelte.d.ts +16 -0
  72. package/dist/components/drawer/index.d.ts +1 -0
  73. package/dist/components/drawer/index.js +1 -0
  74. package/dist/components/dropdown-menu/DropdownMenu.d.ts +51 -24
  75. package/dist/components/dropdown-menu/DropdownMenu.js +1 -15
  76. package/dist/components/dropdown-menu/components/DropdownMenu.svelte +36 -34
  77. package/dist/components/dropdown-menu/components/DropdownMenu.svelte.d.ts +1 -1
  78. package/dist/components/dropdown-menu/components/DropdownMenuGroup.svelte +8 -12
  79. package/dist/components/dropdown-menu/components/DropdownMenuGroup.svelte.d.ts +2 -4
  80. package/dist/components/dropdown-menu/components/DropdownMenuHeader.svelte +11 -12
  81. package/dist/components/dropdown-menu/components/DropdownMenuHeader.svelte.d.ts +2 -4
  82. package/dist/components/dropdown-menu/components/DropdownMenuItem.svelte +27 -30
  83. package/dist/components/dropdown-menu/components/DropdownMenuItem.svelte.d.ts +1 -1
  84. package/dist/components/dropdown-menu/components/DropdownMenuSeparator.svelte +9 -11
  85. package/dist/components/dropdown-menu/components/DropdownMenuSeparator.svelte.d.ts +2 -4
  86. package/dist/components/fonts/TeraFontMono.svelte +4 -4
  87. package/dist/components/fonts/TeraFontMono.svelte.d.ts +1 -0
  88. package/dist/components/fonts/TeraFontSansSerif.svelte +4 -4
  89. package/dist/components/fonts/TeraFontSansSerif.svelte.d.ts +1 -1
  90. package/dist/components/header/Header.svelte +6 -9
  91. package/dist/components/header/header.scss +1 -1
  92. package/dist/components/icons/IconArrowBigRightFilled.svelte +3 -7
  93. package/dist/components/icons/IconBook.svelte +3 -6
  94. package/dist/components/icons/IconBookmarkPlus.svelte +3 -6
  95. package/dist/components/icons/IconCalculator.svelte +3 -6
  96. package/dist/components/icons/IconCheck.svelte +3 -6
  97. package/dist/components/icons/IconChevronDown.svelte +3 -6
  98. package/dist/components/icons/IconCoin.svelte +3 -6
  99. package/dist/components/icons/IconCoinConvert.svelte +2 -5
  100. package/dist/components/icons/IconCopy.svelte +3 -6
  101. package/dist/components/icons/IconCopyCheckFilled.svelte +3 -6
  102. package/dist/components/icons/IconHamburger.svelte +3 -6
  103. package/dist/components/icons/IconLanguage.svelte +3 -6
  104. package/dist/components/icons/IconLoader2.svelte +3 -6
  105. package/dist/components/icons/IconLogout.svelte +3 -6
  106. package/dist/components/icons/IconMoon.svelte +3 -6
  107. package/dist/components/icons/IconPointFilled.svelte +3 -6
  108. package/dist/components/icons/IconSearch.svelte +3 -6
  109. package/dist/components/icons/IconSettings.svelte +3 -6
  110. package/dist/components/icons/IconSun.svelte +3 -6
  111. package/dist/components/icons/IconSwitchHorizontal.svelte +3 -6
  112. package/dist/components/icons/IconSwitchVertical.svelte +3 -6
  113. package/dist/components/icons/IconTransform.svelte +3 -6
  114. package/dist/components/icons/IconX.svelte +3 -6
  115. package/dist/components/input/Input.d.ts +2 -2
  116. package/dist/components/input/Input.js +10 -10
  117. package/dist/components/input/Input.svelte +10 -26
  118. package/dist/components/label/Label.d.ts +2 -2
  119. package/dist/components/label/Label.js +2 -2
  120. package/dist/components/label/Label.svelte +4 -12
  121. package/dist/components/language-picker-button/LanguagePickerButton.svelte +23 -42
  122. package/dist/components/light-dark-toggle/LightDarkToggle.svelte +21 -26
  123. package/dist/components/marketing/FeatureCard.svelte +37 -0
  124. package/dist/components/marketing/FeatureCard.svelte.d.ts +13 -0
  125. package/dist/components/marketing/PricingCard.svelte +48 -0
  126. package/dist/components/marketing/PricingCard.svelte.d.ts +15 -0
  127. package/dist/components/marketing/StatBlock.svelte +14 -0
  128. package/dist/components/marketing/StatBlock.svelte.d.ts +10 -0
  129. package/dist/components/marketing/TestimonialCard.svelte +24 -0
  130. package/dist/components/marketing/TestimonialCard.svelte.d.ts +12 -0
  131. package/dist/components/marketing/index.d.ts +4 -0
  132. package/dist/components/marketing/index.js +4 -0
  133. package/dist/components/popover/Popover.d.ts +32 -13
  134. package/dist/components/popover/Popover.js +1 -7
  135. package/dist/components/popover/Popover.svelte +40 -158
  136. package/dist/components/popover/Popover.svelte.d.ts +2 -2
  137. package/dist/components/popover-responsive/PopoverResponsive.d.ts +18 -7
  138. package/dist/components/popover-responsive/PopoverResponsive.js +1 -7
  139. package/dist/components/popover-responsive/PopoverResponsive.svelte +25 -87
  140. package/dist/components/popover-responsive/PopoverResponsive.svelte.d.ts +2 -11
  141. package/dist/components/select/Select.d.ts +60 -23
  142. package/dist/components/select/Select.js +14 -35
  143. package/dist/components/select/Select.svelte +157 -28
  144. package/dist/components/select/Select.svelte.d.ts +2 -3
  145. package/dist/components/select/index.d.ts +1 -1
  146. package/dist/components/side-navigation/SideNavigation.svelte +73 -96
  147. package/dist/components/side-navigation/SideNavigationItem.svelte +2 -2
  148. package/dist/components/side-navigation/SideNavigationLayout.svelte +3 -5
  149. package/dist/components/side-navigation/sidenav.scss +17 -13
  150. package/dist/components/skeleton/Skeleton.svelte +48 -0
  151. package/dist/components/skeleton/Skeleton.svelte.d.ts +12 -0
  152. package/dist/components/skeleton/index.d.ts +1 -0
  153. package/dist/components/skeleton/index.js +1 -0
  154. package/dist/components/slider/Slider.d.ts +25 -15
  155. package/dist/components/slider/Slider.js +1 -7
  156. package/dist/components/slider/Slider.svelte +38 -164
  157. package/dist/components/slider/Slider.svelte.d.ts +1 -1
  158. package/dist/components/spinner/Spinner.svelte +39 -0
  159. package/dist/components/spinner/Spinner.svelte.d.ts +10 -0
  160. package/dist/components/spinner/index.d.ts +1 -0
  161. package/dist/components/spinner/index.js +1 -0
  162. package/dist/components/star-rating/StarRating.svelte +33 -49
  163. package/dist/components/switch/Switch.d.ts +19 -4
  164. package/dist/components/switch/Switch.js +4 -0
  165. package/dist/components/switch/Switch.svelte +13 -17
  166. package/dist/components/switch/Switch.svelte.d.ts +2 -2
  167. package/dist/components/table/Table.svelte +68 -0
  168. package/dist/components/table/Table.svelte.d.ts +40 -0
  169. package/dist/components/table/index.d.ts +1 -0
  170. package/dist/components/table/index.js +1 -0
  171. package/dist/components/tabs/Tabs.svelte.d.ts +45 -16
  172. package/dist/components/tabs/Tabs.svelte.js +8 -18
  173. package/dist/components/tabs/components/Tabs.svelte +27 -33
  174. package/dist/components/tabs/components/Tabs.svelte.d.ts +1 -1
  175. package/dist/components/tabs/components/TabsContent.svelte +13 -36
  176. package/dist/components/tabs/components/TabsContent.svelte.d.ts +2 -5
  177. package/dist/components/tabs/components/TabsItem.svelte +43 -32
  178. package/dist/components/tabs/components/TabsItem.svelte.d.ts +2 -5
  179. package/dist/components/tabs/components/TabsList.svelte +90 -58
  180. package/dist/components/tabs/components/TabsList.svelte.d.ts +2 -4
  181. package/dist/components/tera-ui-context/TeraUiContext.svelte +13 -26
  182. package/dist/components/text-area/TextArea.d.ts +2 -2
  183. package/dist/components/text-area/TextArea.js +9 -9
  184. package/dist/components/text-area/TextArea.svelte +41 -65
  185. package/dist/components/toast/ToastContainer.svelte +50 -0
  186. package/dist/components/toast/ToastContainer.svelte.d.ts +18 -0
  187. package/dist/components/toast/index.d.ts +3 -0
  188. package/dist/components/toast/index.js +2 -0
  189. package/dist/components/toast/toast.svelte.d.ts +22 -0
  190. package/dist/components/toast/toast.svelte.js +18 -0
  191. package/dist/components/tooltip/Tooltip.d.ts +23 -0
  192. package/dist/components/tooltip/Tooltip.js +1 -0
  193. package/dist/components/tooltip/Tooltip.svelte +30 -0
  194. package/dist/components/tooltip/Tooltip.svelte.d.ts +4 -0
  195. package/dist/components/tooltip/index.d.ts +2 -0
  196. package/dist/components/tooltip/index.js +1 -0
  197. package/dist/components/user-avatar-with-menu/UserAvatarWithMenu.svelte +48 -69
  198. package/dist/index.d.ts +19 -2
  199. package/dist/index.js +12 -0
  200. package/dist/llms/accordion.md +90 -0
  201. package/dist/llms/ai.md +110 -0
  202. package/dist/llms/alert.md +29 -0
  203. package/dist/llms/avatar.md +34 -0
  204. package/dist/llms/badge.md +31 -0
  205. package/dist/llms/brand-logo.md +30 -0
  206. package/dist/llms/button.md +37 -0
  207. package/dist/llms/card.md +32 -0
  208. package/dist/llms/checkbox.md +35 -0
  209. package/dist/llms/colors.md +161 -0
  210. package/dist/llms/combobox.md +40 -0
  211. package/dist/llms/command.md +7 -0
  212. package/dist/llms/date-range-picker.md +36 -0
  213. package/dist/llms/dialog.md +45 -0
  214. package/dist/llms/drawer.md +30 -0
  215. package/dist/llms/dropdown-menu.md +112 -0
  216. package/dist/llms/fonts.md +7 -0
  217. package/dist/llms/header.md +26 -0
  218. package/dist/llms/icons.md +43 -0
  219. package/dist/llms/index.md +65 -0
  220. package/dist/llms/input.md +37 -0
  221. package/dist/llms/label.md +30 -0
  222. package/dist/llms/language-picker-button.md +30 -0
  223. package/dist/llms/light-dark-toggle.md +26 -0
  224. package/dist/llms/marketing.md +95 -0
  225. package/dist/llms/popover-responsive.md +32 -0
  226. package/dist/llms/popover.md +40 -0
  227. package/dist/llms/select.md +44 -0
  228. package/dist/llms/side-navigation.md +30 -0
  229. package/dist/llms/skeleton.md +28 -0
  230. package/dist/llms/slider.md +36 -0
  231. package/dist/llms/spinner.md +25 -0
  232. package/dist/llms/star-rating.md +31 -0
  233. package/dist/llms/switch.md +33 -0
  234. package/dist/llms/table.md +30 -0
  235. package/dist/llms/tabs.md +92 -0
  236. package/dist/llms/tera-ui-context.md +30 -0
  237. package/dist/llms/text-area.md +39 -0
  238. package/dist/llms/toast.md +7 -0
  239. package/dist/llms/tooltip.md +32 -0
  240. package/dist/llms/user-avatar-with-menu.md +28 -0
  241. package/dist/paraglide/README.md +72 -3
  242. package/dist/paraglide/messages/text_account_settings.d.ts +14 -2
  243. package/dist/paraglide/messages/text_account_settings.js +53 -58
  244. package/dist/paraglide/messages/text_calces_documentation.d.ts +14 -2
  245. package/dist/paraglide/messages/text_calces_documentation.js +53 -58
  246. package/dist/paraglide/messages/text_calces_scientific_calculator.d.ts +14 -2
  247. package/dist/paraglide/messages/text_calces_scientific_calculator.js +53 -58
  248. package/dist/paraglide/messages/text_currency_converter.d.ts +14 -2
  249. package/dist/paraglide/messages/text_currency_converter.js +53 -58
  250. package/dist/paraglide/messages/text_logout.d.ts +14 -2
  251. package/dist/paraglide/messages/text_logout.js +53 -58
  252. package/dist/paraglide/messages/text_select_language.d.ts +14 -2
  253. package/dist/paraglide/messages/text_select_language.js +53 -58
  254. package/dist/paraglide/messages/text_unit_converter.d.ts +14 -2
  255. package/dist/paraglide/messages/text_unit_converter.js +53 -58
  256. package/dist/paraglide/registry.d.ts +13 -0
  257. package/dist/paraglide/registry.js +15 -0
  258. package/dist/paraglide/runtime.d.ts +243 -126
  259. package/dist/paraglide/runtime.js +473 -148
  260. package/dist/paraglide/server.d.ts +13 -20
  261. package/dist/paraglide/server.js +92 -40
  262. package/dist/stories/ComponentOverview.stories.svelte +533 -0
  263. package/dist/stories/ComponentOverview.stories.svelte.d.ts +6 -0
  264. package/dist/themes/tera-ui-base.css +242 -77
  265. package/dist/themes/theme-ai.css +100 -0
  266. package/dist/themes/theme-marketing.css +91 -0
  267. package/dist/themes/theme-professional.css +41 -0
  268. package/package.json +35 -29
  269. package/dist/tera-i18n/projects/tera-system-ui/project.inlang/.meta.json +0 -3
  270. package/dist/tera-i18n/projects/tera-system-ui/project.inlang/README.md +0 -103
  271. package/dist/tera-i18n/projects/tera-system-ui/project.inlang/project_id +0 -1
  272. package/dist/themes/tw-preset.cjs +0 -160
  273. package/dist/themes/tw-preset.d.cts +0 -157
@@ -1,198 +1,193 @@
1
1
  /* eslint-disable */
2
- import { getLocale, trackMessageCall, experimentalMiddlewareLocaleSplitting, isServer, experimentalStaticLocale } from '../runtime.js';
2
+ import { getLocale, experimentalStaticLocale } from '../runtime.js';
3
+
3
4
  /** @typedef {import('../runtime.js').LocalizedString} LocalizedString */
4
5
 
5
- const ar_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
6
+ /** @typedef {{}} Text_Account_SettingsInputs */
7
+
8
+ const ar_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
6
9
  return /** @type {LocalizedString} */ (`إعدادات الحساب`)
7
10
  };
8
11
 
9
- const bg_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
12
+ const bg_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
10
13
  return /** @type {LocalizedString} */ (`Настройки на акаунта`)
11
14
  };
12
15
 
13
- const bn_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
16
+ const bn_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
14
17
  return /** @type {LocalizedString} */ (`অ্যাকাউন্ট সেটিংস`)
15
18
  };
16
19
 
17
- const ca_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
20
+ const ca_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
18
21
  return /** @type {LocalizedString} */ (`Configuració del compte`)
19
22
  };
20
23
 
21
- const cs_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
24
+ const cs_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
22
25
  return /** @type {LocalizedString} */ (`Nastavení účtu`)
23
26
  };
24
27
 
25
- const da_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
28
+ const da_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
26
29
  return /** @type {LocalizedString} */ (`Kontoinstillinger`)
27
30
  };
28
31
 
29
- const de_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
32
+ const de_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
30
33
  return /** @type {LocalizedString} */ (`Kontoeinstellungen`)
31
34
  };
32
35
 
33
- const el_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
36
+ const el_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
34
37
  return /** @type {LocalizedString} */ (`Ρυθμίσεις λογαριασμού`)
35
38
  };
36
39
 
37
- const en_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
40
+ const en_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
38
41
  return /** @type {LocalizedString} */ (`Account Settings`)
39
42
  };
40
43
 
41
- const es_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
44
+ const es_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
42
45
  return /** @type {LocalizedString} */ (`Configuración de la cuenta`)
43
46
  };
44
47
 
45
- const fi_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
48
+ const fi_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
46
49
  return /** @type {LocalizedString} */ (`Tilin asetukset`)
47
50
  };
48
51
 
49
- const fr_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
52
+ const fr_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
50
53
  return /** @type {LocalizedString} */ (`Paramètres du compte`)
51
54
  };
52
55
 
53
- const he_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
56
+ const he_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
54
57
  return /** @type {LocalizedString} */ (`הגדרות חשבון`)
55
58
  };
56
59
 
57
- const hi_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
60
+ const hi_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
58
61
  return /** @type {LocalizedString} */ (`खाता सेटिंग्स`)
59
62
  };
60
63
 
61
- const hu_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
64
+ const hu_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
62
65
  return /** @type {LocalizedString} */ (`Fiókbeállítások`)
63
66
  };
64
67
 
65
- const id_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
68
+ const id_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
66
69
  return /** @type {LocalizedString} */ (`Pengaturan Akun`)
67
70
  };
68
71
 
69
- const it_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
72
+ const it_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
70
73
  return /** @type {LocalizedString} */ (`Impostazioni dell'account`)
71
74
  };
72
75
 
73
- const ja_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
76
+ const ja_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
74
77
  return /** @type {LocalizedString} */ (`アカウント設定`)
75
78
  };
76
79
 
77
- const ko_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
80
+ const ko_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
78
81
  return /** @type {LocalizedString} */ (`계정 설정`)
79
82
  };
80
83
 
81
- const lt_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
84
+ const lt_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
82
85
  return /** @type {LocalizedString} */ (`Paskyros nustatymai`)
83
86
  };
84
87
 
85
- const lv_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
88
+ const lv_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
86
89
  return /** @type {LocalizedString} */ (`Konta iestatījumi`)
87
90
  };
88
91
 
89
- const ms_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
92
+ const ms_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
90
93
  return /** @type {LocalizedString} */ (`Tetapan Akaun`)
91
94
  };
92
95
 
93
- const nl_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
96
+ const nl_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
94
97
  return /** @type {LocalizedString} */ (`Accountinstellingen`)
95
98
  };
96
99
 
97
- const no_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
100
+ const no_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
98
101
  return /** @type {LocalizedString} */ (`Kontoinnstillinger`)
99
102
  };
100
103
 
101
- const pl_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
104
+ const pl_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
102
105
  return /** @type {LocalizedString} */ (`Ustawienia konta`)
103
106
  };
104
107
 
105
- const pt_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
108
+ const pt_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
106
109
  return /** @type {LocalizedString} */ (`Configurações da conta`)
107
110
  };
108
111
 
109
- const ro_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
112
+ const ro_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
110
113
  return /** @type {LocalizedString} */ (`Setări cont`)
111
114
  };
112
115
 
113
- const ru_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
116
+ const ru_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
114
117
  return /** @type {LocalizedString} */ (`Настройки аккаунта`)
115
118
  };
116
119
 
117
- const sk_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
120
+ const sk_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
118
121
  return /** @type {LocalizedString} */ (`Nastavenia účtu`)
119
122
  };
120
123
 
121
- const sl_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
124
+ const sl_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
122
125
  return /** @type {LocalizedString} */ (`Nastavitve računa`)
123
126
  };
124
127
 
125
- const sq_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
128
+ const sq_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
126
129
  return /** @type {LocalizedString} */ (`Cilësimet e Llogarisë`)
127
130
  };
128
131
 
129
- const sr_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
132
+ const sr_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
130
133
  return /** @type {LocalizedString} */ (`Podešavanja naloga`)
131
134
  };
132
135
 
133
- const sv_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
136
+ const sv_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
134
137
  return /** @type {LocalizedString} */ (`Kontoinställningar`)
135
138
  };
136
139
 
137
- const sw_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
140
+ const sw_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
138
141
  return /** @type {LocalizedString} */ (`Mipangilio ya Akaunti`)
139
142
  };
140
143
 
141
- const ta_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
144
+ const ta_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
142
145
  return /** @type {LocalizedString} */ (`கணக்கு அமைப்புகள்`)
143
146
  };
144
147
 
145
- const te_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
148
+ const te_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
146
149
  return /** @type {LocalizedString} */ (`ఖాతా అమరికలు`)
147
150
  };
148
151
 
149
- const th_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
152
+ const th_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
150
153
  return /** @type {LocalizedString} */ (`การตั้งค่าบัญชี`)
151
154
  };
152
155
 
153
- const tl_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
156
+ const tl_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
154
157
  return /** @type {LocalizedString} */ (`Mga Setting ng Account`)
155
158
  };
156
159
 
157
- const tr_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
160
+ const tr_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
158
161
  return /** @type {LocalizedString} */ (`Hesap Ayarları`)
159
162
  };
160
163
 
161
- const uk_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
164
+ const uk_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
162
165
  return /** @type {LocalizedString} */ (`Налаштування акаунту`)
163
166
  };
164
167
 
165
- const vi_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
168
+ const vi_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
166
169
  return /** @type {LocalizedString} */ (`Cài đặt tài khoản`)
167
170
  };
168
171
 
169
- const zh_cn2_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
172
+ const zh_cn2_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
170
173
  return /** @type {LocalizedString} */ (`账户设置`)
171
174
  };
172
175
 
173
- const zh_tw2_text_account_settings = /** @type {(inputs: {}) => LocalizedString} */ () => {
176
+ const zh_tw2_text_account_settings = /** @type {(inputs: Text_Account_SettingsInputs) => LocalizedString} */ () => {
174
177
  return /** @type {LocalizedString} */ (`帳戶設定`)
175
178
  };
176
179
 
177
180
  /**
178
- * This function has been compiled by [Paraglide JS](https://inlang.com/m/gerre34r).
179
- *
180
- * - Changing this function will be over-written by the next build.
181
+ * | output |
182
+ * | --- |
183
+ * | "Account Settings" |
181
184
  *
182
- * - If you want to change the translations, you can either edit the source files e.g. `en.json`, or
183
- * use another inlang app like [Fink](https://inlang.com/m/tdozzpar) or the [VSCode extension Sherlock](https://inlang.com/m/r7kp499g).
184
- *
185
- * @param {{}} inputs
185
+ * @param {Text_Account_SettingsInputs} inputs
186
186
  * @param {{ locale?: "ar" | "bg" | "bn" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "fi" | "fr" | "he" | "hi" | "hu" | "id" | "it" | "ja" | "ko" | "lt" | "lv" | "ms" | "nl" | "no" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sq" | "sr" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "uk" | "vi" | "zh-CN" | "zh-TW" }} options
187
187
  * @returns {LocalizedString}
188
188
  */
189
- /* @__NO_SIDE_EFFECTS__ */
190
- export const text_account_settings = (inputs = {}, options = {}) => {
191
- if (experimentalMiddlewareLocaleSplitting && isServer === false) {
192
- return /** @type {any} */ (globalThis).__paraglide_ssr.text_account_settings(inputs)
193
- }
189
+ export const text_account_settings = /** @type {((inputs?: Text_Account_SettingsInputs, options?: { locale?: "ar" | "bg" | "bn" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "fi" | "fr" | "he" | "hi" | "hu" | "id" | "it" | "ja" | "ko" | "lt" | "lv" | "ms" | "nl" | "no" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sq" | "sr" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "uk" | "vi" | "zh-CN" | "zh-TW" }) => LocalizedString) & import('../runtime.js').MessageMetadata<Text_Account_SettingsInputs, { locale?: "ar" | "bg" | "bn" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "fi" | "fr" | "he" | "hi" | "hu" | "id" | "it" | "ja" | "ko" | "lt" | "lv" | "ms" | "nl" | "no" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sq" | "sr" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "uk" | "vi" | "zh-CN" | "zh-TW" }, {}>} */ ((inputs = {}, options = {}) => {
194
190
  const locale = experimentalStaticLocale ?? options.locale ?? getLocale()
195
- trackMessageCall("text_account_settings", locale)
196
191
  if (locale === "ar") return ar_text_account_settings(inputs)
197
192
  if (locale === "bg") return bg_text_account_settings(inputs)
198
193
  if (locale === "bn") return bn_text_account_settings(inputs)
@@ -236,4 +231,4 @@ export const text_account_settings = (inputs = {}, options = {}) => {
236
231
  if (locale === "vi") return vi_text_account_settings(inputs)
237
232
  if (locale === "zh-CN") return zh_cn2_text_account_settings(inputs)
238
233
  return zh_tw2_text_account_settings(inputs)
239
- };
234
+ });
@@ -1,4 +1,16 @@
1
- export function text_calces_documentation(inputs?: {}, options?: {
1
+ /**
2
+ * | output |
3
+ * | --- |
4
+ * | "CalcES Documentation" |
5
+ *
6
+ * @param {Text_Calces_DocumentationInputs} inputs
7
+ * @param {{ locale?: "ar" | "bg" | "bn" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "fi" | "fr" | "he" | "hi" | "hu" | "id" | "it" | "ja" | "ko" | "lt" | "lv" | "ms" | "nl" | "no" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sq" | "sr" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "uk" | "vi" | "zh-CN" | "zh-TW" }} options
8
+ * @returns {LocalizedString}
9
+ */
10
+ export const text_calces_documentation: ((inputs?: Text_Calces_DocumentationInputs, options?: {
2
11
  locale?: "ar" | "bg" | "bn" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "fi" | "fr" | "he" | "hi" | "hu" | "id" | "it" | "ja" | "ko" | "lt" | "lv" | "ms" | "nl" | "no" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sq" | "sr" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "uk" | "vi" | "zh-CN" | "zh-TW";
3
- }): LocalizedString;
12
+ }) => LocalizedString) & import("../runtime.js").MessageMetadata<Text_Calces_DocumentationInputs, {
13
+ locale?: "ar" | "bg" | "bn" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "fi" | "fr" | "he" | "hi" | "hu" | "id" | "it" | "ja" | "ko" | "lt" | "lv" | "ms" | "nl" | "no" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sq" | "sr" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "uk" | "vi" | "zh-CN" | "zh-TW";
14
+ }, {}>;
4
15
  export type LocalizedString = import("../runtime.js").LocalizedString;
16
+ export type Text_Calces_DocumentationInputs = {};
@@ -1,198 +1,193 @@
1
1
  /* eslint-disable */
2
- import { getLocale, trackMessageCall, experimentalMiddlewareLocaleSplitting, isServer, experimentalStaticLocale } from '../runtime.js';
2
+ import { getLocale, experimentalStaticLocale } from '../runtime.js';
3
+
3
4
  /** @typedef {import('../runtime.js').LocalizedString} LocalizedString */
4
5
 
5
- const ar_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
6
+ /** @typedef {{}} Text_Calces_DocumentationInputs */
7
+
8
+ const ar_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
6
9
  return /** @type {LocalizedString} */ (`وثائق CalcES`)
7
10
  };
8
11
 
9
- const bg_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
12
+ const bg_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
10
13
  return /** @type {LocalizedString} */ (`Документация на CalcES`)
11
14
  };
12
15
 
13
- const bn_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
16
+ const bn_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
14
17
  return /** @type {LocalizedString} */ (`CalcES ডকুমেন্টেশন`)
15
18
  };
16
19
 
17
- const ca_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
20
+ const ca_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
18
21
  return /** @type {LocalizedString} */ (`Documentació de CalcES`)
19
22
  };
20
23
 
21
- const cs_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
24
+ const cs_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
22
25
  return /** @type {LocalizedString} */ (`Dokumentace CalcES`)
23
26
  };
24
27
 
25
- const da_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
28
+ const da_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
26
29
  return /** @type {LocalizedString} */ (`CalcES Dokumentation`)
27
30
  };
28
31
 
29
- const de_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
32
+ const de_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
30
33
  return /** @type {LocalizedString} */ (`CalcES Dokumentation`)
31
34
  };
32
35
 
33
- const el_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
36
+ const el_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
34
37
  return /** @type {LocalizedString} */ (`Τεκμηρίωση CalcES`)
35
38
  };
36
39
 
37
- const en_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
40
+ const en_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
38
41
  return /** @type {LocalizedString} */ (`CalcES Documentation`)
39
42
  };
40
43
 
41
- const es_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
44
+ const es_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
42
45
  return /** @type {LocalizedString} */ (`Documentación de CalcES`)
43
46
  };
44
47
 
45
- const fi_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
48
+ const fi_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
46
49
  return /** @type {LocalizedString} */ (`CalcES Dokumentaatio`)
47
50
  };
48
51
 
49
- const fr_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
52
+ const fr_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
50
53
  return /** @type {LocalizedString} */ (`Documentation de CalcES`)
51
54
  };
52
55
 
53
- const he_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
56
+ const he_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
54
57
  return /** @type {LocalizedString} */ (`תיעוד CalcES`)
55
58
  };
56
59
 
57
- const hi_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
60
+ const hi_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
58
61
  return /** @type {LocalizedString} */ (`CalcES प्रलेखन`)
59
62
  };
60
63
 
61
- const hu_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
64
+ const hu_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
62
65
  return /** @type {LocalizedString} */ (`CalcES Dokumentáció`)
63
66
  };
64
67
 
65
- const id_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
68
+ const id_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
66
69
  return /** @type {LocalizedString} */ (`Dokumentasi CalcES`)
67
70
  };
68
71
 
69
- const it_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
72
+ const it_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
70
73
  return /** @type {LocalizedString} */ (`Documentazione di CalcES`)
71
74
  };
72
75
 
73
- const ja_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
76
+ const ja_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
74
77
  return /** @type {LocalizedString} */ (`CalcES ドキュメンテーション`)
75
78
  };
76
79
 
77
- const ko_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
80
+ const ko_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
78
81
  return /** @type {LocalizedString} */ (`CalcES 문서`)
79
82
  };
80
83
 
81
- const lt_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
84
+ const lt_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
82
85
  return /** @type {LocalizedString} */ (`CalcES dokumentacija`)
83
86
  };
84
87
 
85
- const lv_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
88
+ const lv_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
86
89
  return /** @type {LocalizedString} */ (`CalcES dokumentācija`)
87
90
  };
88
91
 
89
- const ms_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
92
+ const ms_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
90
93
  return /** @type {LocalizedString} */ (`Dokumentasi CalcES`)
91
94
  };
92
95
 
93
- const nl_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
96
+ const nl_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
94
97
  return /** @type {LocalizedString} */ (`CalcES Documentatie`)
95
98
  };
96
99
 
97
- const no_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
100
+ const no_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
98
101
  return /** @type {LocalizedString} */ (`CalcES Dokumentasjon`)
99
102
  };
100
103
 
101
- const pl_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
104
+ const pl_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
102
105
  return /** @type {LocalizedString} */ (`Dokumentacja CalcES`)
103
106
  };
104
107
 
105
- const pt_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
108
+ const pt_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
106
109
  return /** @type {LocalizedString} */ (`Documentação CalcES`)
107
110
  };
108
111
 
109
- const ro_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
112
+ const ro_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
110
113
  return /** @type {LocalizedString} */ (`Documentația CalcES`)
111
114
  };
112
115
 
113
- const ru_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
116
+ const ru_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
114
117
  return /** @type {LocalizedString} */ (`Документация CalcES`)
115
118
  };
116
119
 
117
- const sk_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
120
+ const sk_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
118
121
  return /** @type {LocalizedString} */ (`Dokumentácia CalcES`)
119
122
  };
120
123
 
121
- const sl_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
124
+ const sl_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
122
125
  return /** @type {LocalizedString} */ (`Dokumentacija CalcES`)
123
126
  };
124
127
 
125
- const sq_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
128
+ const sq_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
126
129
  return /** @type {LocalizedString} */ (`Dokumentimi i CalcES`)
127
130
  };
128
131
 
129
- const sr_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
132
+ const sr_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
130
133
  return /** @type {LocalizedString} */ (`CalcES Dokumentacija`)
131
134
  };
132
135
 
133
- const sv_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
136
+ const sv_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
134
137
  return /** @type {LocalizedString} */ (`CalcES Dokumentation`)
135
138
  };
136
139
 
137
- const sw_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
140
+ const sw_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
138
141
  return /** @type {LocalizedString} */ (`Nyaraka za CalcES`)
139
142
  };
140
143
 
141
- const ta_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
144
+ const ta_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
142
145
  return /** @type {LocalizedString} */ (`CalcES ஆவணம்`)
143
146
  };
144
147
 
145
- const te_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
148
+ const te_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
146
149
  return /** @type {LocalizedString} */ (`CalcES పత్రాలు`)
147
150
  };
148
151
 
149
- const th_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
152
+ const th_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
150
153
  return /** @type {LocalizedString} */ (`เอกสาร CalcES`)
151
154
  };
152
155
 
153
- const tl_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
156
+ const tl_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
154
157
  return /** @type {LocalizedString} */ (`Dokumentasyon ng CalcES`)
155
158
  };
156
159
 
157
- const tr_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
160
+ const tr_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
158
161
  return /** @type {LocalizedString} */ (`CalcES Belgeleri`)
159
162
  };
160
163
 
161
- const uk_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
164
+ const uk_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
162
165
  return /** @type {LocalizedString} */ (`Документація CalcES`)
163
166
  };
164
167
 
165
- const vi_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
168
+ const vi_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
166
169
  return /** @type {LocalizedString} */ (`Tài Liệu CalcES`)
167
170
  };
168
171
 
169
- const zh_cn2_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
172
+ const zh_cn2_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
170
173
  return /** @type {LocalizedString} */ (`CalcES 文档`)
171
174
  };
172
175
 
173
- const zh_tw2_text_calces_documentation = /** @type {(inputs: {}) => LocalizedString} */ () => {
176
+ const zh_tw2_text_calces_documentation = /** @type {(inputs: Text_Calces_DocumentationInputs) => LocalizedString} */ () => {
174
177
  return /** @type {LocalizedString} */ (`CalcES 文檔`)
175
178
  };
176
179
 
177
180
  /**
178
- * This function has been compiled by [Paraglide JS](https://inlang.com/m/gerre34r).
179
- *
180
- * - Changing this function will be over-written by the next build.
181
+ * | output |
182
+ * | --- |
183
+ * | "CalcES Documentation" |
181
184
  *
182
- * - If you want to change the translations, you can either edit the source files e.g. `en.json`, or
183
- * use another inlang app like [Fink](https://inlang.com/m/tdozzpar) or the [VSCode extension Sherlock](https://inlang.com/m/r7kp499g).
184
- *
185
- * @param {{}} inputs
185
+ * @param {Text_Calces_DocumentationInputs} inputs
186
186
  * @param {{ locale?: "ar" | "bg" | "bn" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "fi" | "fr" | "he" | "hi" | "hu" | "id" | "it" | "ja" | "ko" | "lt" | "lv" | "ms" | "nl" | "no" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sq" | "sr" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "uk" | "vi" | "zh-CN" | "zh-TW" }} options
187
187
  * @returns {LocalizedString}
188
188
  */
189
- /* @__NO_SIDE_EFFECTS__ */
190
- export const text_calces_documentation = (inputs = {}, options = {}) => {
191
- if (experimentalMiddlewareLocaleSplitting && isServer === false) {
192
- return /** @type {any} */ (globalThis).__paraglide_ssr.text_calces_documentation(inputs)
193
- }
189
+ export const text_calces_documentation = /** @type {((inputs?: Text_Calces_DocumentationInputs, options?: { locale?: "ar" | "bg" | "bn" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "fi" | "fr" | "he" | "hi" | "hu" | "id" | "it" | "ja" | "ko" | "lt" | "lv" | "ms" | "nl" | "no" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sq" | "sr" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "uk" | "vi" | "zh-CN" | "zh-TW" }) => LocalizedString) & import('../runtime.js').MessageMetadata<Text_Calces_DocumentationInputs, { locale?: "ar" | "bg" | "bn" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "fi" | "fr" | "he" | "hi" | "hu" | "id" | "it" | "ja" | "ko" | "lt" | "lv" | "ms" | "nl" | "no" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sq" | "sr" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "uk" | "vi" | "zh-CN" | "zh-TW" }, {}>} */ ((inputs = {}, options = {}) => {
194
190
  const locale = experimentalStaticLocale ?? options.locale ?? getLocale()
195
- trackMessageCall("text_calces_documentation", locale)
196
191
  if (locale === "ar") return ar_text_calces_documentation(inputs)
197
192
  if (locale === "bg") return bg_text_calces_documentation(inputs)
198
193
  if (locale === "bn") return bn_text_calces_documentation(inputs)
@@ -236,4 +231,4 @@ export const text_calces_documentation = (inputs = {}, options = {}) => {
236
231
  if (locale === "vi") return vi_text_calces_documentation(inputs)
237
232
  if (locale === "zh-CN") return zh_cn2_text_calces_documentation(inputs)
238
233
  return zh_tw2_text_calces_documentation(inputs)
239
- };
234
+ });
@@ -1,4 +1,16 @@
1
- export function text_calces_scientific_calculator(inputs?: {}, options?: {
1
+ /**
2
+ * | output |
3
+ * | --- |
4
+ * | "CalcES Scientific Calculator" |
5
+ *
6
+ * @param {Text_Calces_Scientific_CalculatorInputs} inputs
7
+ * @param {{ locale?: "ar" | "bg" | "bn" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "fi" | "fr" | "he" | "hi" | "hu" | "id" | "it" | "ja" | "ko" | "lt" | "lv" | "ms" | "nl" | "no" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sq" | "sr" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "uk" | "vi" | "zh-CN" | "zh-TW" }} options
8
+ * @returns {LocalizedString}
9
+ */
10
+ export const text_calces_scientific_calculator: ((inputs?: Text_Calces_Scientific_CalculatorInputs, options?: {
2
11
  locale?: "ar" | "bg" | "bn" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "fi" | "fr" | "he" | "hi" | "hu" | "id" | "it" | "ja" | "ko" | "lt" | "lv" | "ms" | "nl" | "no" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sq" | "sr" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "uk" | "vi" | "zh-CN" | "zh-TW";
3
- }): LocalizedString;
12
+ }) => LocalizedString) & import("../runtime.js").MessageMetadata<Text_Calces_Scientific_CalculatorInputs, {
13
+ locale?: "ar" | "bg" | "bn" | "ca" | "cs" | "da" | "de" | "el" | "en" | "es" | "fi" | "fr" | "he" | "hi" | "hu" | "id" | "it" | "ja" | "ko" | "lt" | "lv" | "ms" | "nl" | "no" | "pl" | "pt" | "ro" | "ru" | "sk" | "sl" | "sq" | "sr" | "sv" | "sw" | "ta" | "te" | "th" | "tl" | "tr" | "uk" | "vi" | "zh-CN" | "zh-TW";
14
+ }, {}>;
4
15
  export type LocalizedString = import("../runtime.js").LocalizedString;
16
+ export type Text_Calces_Scientific_CalculatorInputs = {};