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_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
6
+ /** @typedef {{}} Text_Calces_Scientific_CalculatorInputs */
7
+
8
+ const ar_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
6
9
  return /** @type {LocalizedString} */ (`الآلة الحاسبة العلمية CalcES`)
7
10
  };
8
11
 
9
- const bg_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
12
+ const bg_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
10
13
  return /** @type {LocalizedString} */ (`Научен калкулатор CalcES`)
11
14
  };
12
15
 
13
- const bn_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
16
+ const bn_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
14
17
  return /** @type {LocalizedString} */ (`CalcES বৈজ্ঞানিক ক্যালকুলেটর`)
15
18
  };
16
19
 
17
- const ca_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
20
+ const ca_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
18
21
  return /** @type {LocalizedString} */ (`CalcES Calculadora Científica`)
19
22
  };
20
23
 
21
- const cs_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
24
+ const cs_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
22
25
  return /** @type {LocalizedString} */ (`CalcES Vědecká Kalkulačka`)
23
26
  };
24
27
 
25
- const da_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
28
+ const da_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
26
29
  return /** @type {LocalizedString} */ (`CalcES Videnskabelig Lommeregner`)
27
30
  };
28
31
 
29
- const de_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
32
+ const de_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
30
33
  return /** @type {LocalizedString} */ (`CalcES Sci. Rechner`)
31
34
  };
32
35
 
33
- const el_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
36
+ const el_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
34
37
  return /** @type {LocalizedString} */ (`CalcES Επιστημονική Αριθμομηχανή`)
35
38
  };
36
39
 
37
- const en_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
40
+ const en_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
38
41
  return /** @type {LocalizedString} */ (`CalcES Scientific Calculator`)
39
42
  };
40
43
 
41
- const es_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
44
+ const es_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
42
45
  return /** @type {LocalizedString} */ (`Calculadora Científica`)
43
46
  };
44
47
 
45
- const fi_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
48
+ const fi_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
46
49
  return /** @type {LocalizedString} */ (`CalcES Tieteellinen Laskin`)
47
50
  };
48
51
 
49
- const fr_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
52
+ const fr_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
50
53
  return /** @type {LocalizedString} */ (`Calculatrice Scientifique`)
51
54
  };
52
55
 
53
- const he_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
56
+ const he_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
54
57
  return /** @type {LocalizedString} */ (`מחשבון מדעי CalcES`)
55
58
  };
56
59
 
57
- const hi_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
60
+ const hi_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
58
61
  return /** @type {LocalizedString} */ (`CalcES वैज्ञानिक कैलकुलेटर`)
59
62
  };
60
63
 
61
- const hu_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
64
+ const hu_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
62
65
  return /** @type {LocalizedString} */ (`CalcES Tudományos Számológép`)
63
66
  };
64
67
 
65
- const id_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
68
+ const id_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
66
69
  return /** @type {LocalizedString} */ (`Kalkulator Ilmiah CalcES`)
67
70
  };
68
71
 
69
- const it_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
72
+ const it_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
70
73
  return /** @type {LocalizedString} */ (`Calcolatrice Scientifica`)
71
74
  };
72
75
 
73
- const ja_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
76
+ const ja_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
74
77
  return /** @type {LocalizedString} */ (`CalcES 科学計算機`)
75
78
  };
76
79
 
77
- const ko_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
80
+ const ko_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
78
81
  return /** @type {LocalizedString} */ (`CalcES 과학 계산기`)
79
82
  };
80
83
 
81
- const lt_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
84
+ const lt_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
82
85
  return /** @type {LocalizedString} */ (`CalcES mokslinis skaičiuotuvas`)
83
86
  };
84
87
 
85
- const lv_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
88
+ const lv_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
86
89
  return /** @type {LocalizedString} */ (`CalcES zinātniskais kalkulators`)
87
90
  };
88
91
 
89
- const ms_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
92
+ const ms_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
90
93
  return /** @type {LocalizedString} */ (`Kalkulator Saintifik CalcES`)
91
94
  };
92
95
 
93
- const nl_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
96
+ const nl_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
94
97
  return /** @type {LocalizedString} */ (`CalcES Wetenschappelijke Rekenmachine`)
95
98
  };
96
99
 
97
- const no_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
100
+ const no_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
98
101
  return /** @type {LocalizedString} */ (`CalcES Vitenskapelig Kalkulator`)
99
102
  };
100
103
 
101
- const pl_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
104
+ const pl_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
102
105
  return /** @type {LocalizedString} */ (`Kalkulator naukowy CalcES`)
103
106
  };
104
107
 
105
- const pt_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
108
+ const pt_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
106
109
  return /** @type {LocalizedString} */ (`Calculadora Científica`)
107
110
  };
108
111
 
109
- const ro_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
112
+ const ro_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
110
113
  return /** @type {LocalizedString} */ (`Calculator Științific CalcES`)
111
114
  };
112
115
 
113
- const ru_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
116
+ const ru_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
114
117
  return /** @type {LocalizedString} */ (`Научный калькулятор`)
115
118
  };
116
119
 
117
- const sk_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
120
+ const sk_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
118
121
  return /** @type {LocalizedString} */ (`CalcES Vedecká kalkulačka`)
119
122
  };
120
123
 
121
- const sl_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
124
+ const sl_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
122
125
  return /** @type {LocalizedString} */ (`Znanstveni kalkulator CalcES`)
123
126
  };
124
127
 
125
- const sq_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
128
+ const sq_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
126
129
  return /** @type {LocalizedString} */ (`Kalkulatori Shkencor CalcES`)
127
130
  };
128
131
 
129
- const sr_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
132
+ const sr_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
130
133
  return /** @type {LocalizedString} */ (`CalcES Naučni Kalkulator`)
131
134
  };
132
135
 
133
- const sv_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
136
+ const sv_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
134
137
  return /** @type {LocalizedString} */ (`CalcES Vetenskaplig Kalkylator`)
135
138
  };
136
139
 
137
- const sw_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
140
+ const sw_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
138
141
  return /** @type {LocalizedString} */ (`Kikokotozi cha Kisayansi cha CalcES`)
139
142
  };
140
143
 
141
- const ta_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
144
+ const ta_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
142
145
  return /** @type {LocalizedString} */ (`CalcES அறிவியல் கணிக்க`)
143
146
  };
144
147
 
145
- const te_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
148
+ const te_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
146
149
  return /** @type {LocalizedString} */ (`CalcES శాస్త్రీయ కాలిక్యులేటర్`)
147
150
  };
148
151
 
149
- const th_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
152
+ const th_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
150
153
  return /** @type {LocalizedString} */ (`เครื่องคิดเลขวิทยาศาสตร์ CalcES`)
151
154
  };
152
155
 
153
- const tl_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
156
+ const tl_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
154
157
  return /** @type {LocalizedString} */ (`CalcES Siyentipikong Kalkulador`)
155
158
  };
156
159
 
157
- const tr_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
160
+ const tr_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
158
161
  return /** @type {LocalizedString} */ (`CalcES Bilimsel Hesap Makinesi`)
159
162
  };
160
163
 
161
- const uk_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
164
+ const uk_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
162
165
  return /** @type {LocalizedString} */ (`Науковий калькулятор CalcES`)
163
166
  };
164
167
 
165
- const vi_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
168
+ const vi_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
166
169
  return /** @type {LocalizedString} */ (`Máy Tính Khoa Học`)
167
170
  };
168
171
 
169
- const zh_cn2_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
172
+ const zh_cn2_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => LocalizedString} */ () => {
170
173
  return /** @type {LocalizedString} */ (`CalcES 科学计算器`)
171
174
  };
172
175
 
173
- const zh_tw2_text_calces_scientific_calculator = /** @type {(inputs: {}) => LocalizedString} */ () => {
176
+ const zh_tw2_text_calces_scientific_calculator = /** @type {(inputs: Text_Calces_Scientific_CalculatorInputs) => 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 Scientific Calculator" |
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_Scientific_CalculatorInputs} 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_scientific_calculator = (inputs = {}, options = {}) => {
191
- if (experimentalMiddlewareLocaleSplitting && isServer === false) {
192
- return /** @type {any} */ (globalThis).__paraglide_ssr.text_calces_scientific_calculator(inputs)
193
- }
189
+ export const text_calces_scientific_calculator = /** @type {((inputs?: Text_Calces_Scientific_CalculatorInputs, 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_Scientific_CalculatorInputs, { 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_scientific_calculator", locale)
196
191
  if (locale === "ar") return ar_text_calces_scientific_calculator(inputs)
197
192
  if (locale === "bg") return bg_text_calces_scientific_calculator(inputs)
198
193
  if (locale === "bn") return bn_text_calces_scientific_calculator(inputs)
@@ -236,4 +231,4 @@ export const text_calces_scientific_calculator = (inputs = {}, options = {}) =>
236
231
  if (locale === "vi") return vi_text_calces_scientific_calculator(inputs)
237
232
  if (locale === "zh-CN") return zh_cn2_text_calces_scientific_calculator(inputs)
238
233
  return zh_tw2_text_calces_scientific_calculator(inputs)
239
- };
234
+ });
@@ -1,4 +1,16 @@
1
- export function text_currency_converter(inputs?: {}, options?: {
1
+ /**
2
+ * | output |
3
+ * | --- |
4
+ * | "Currency Converter" |
5
+ *
6
+ * @param {Text_Currency_ConverterInputs} 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_currency_converter: ((inputs?: Text_Currency_ConverterInputs, 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_Currency_ConverterInputs, {
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_Currency_ConverterInputs = {};
@@ -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_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
6
+ /** @typedef {{}} Text_Currency_ConverterInputs */
7
+
8
+ const ar_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
6
9
  return /** @type {LocalizedString} */ (`محول العملات`)
7
10
  };
8
11
 
9
- const bg_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
12
+ const bg_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
10
13
  return /** @type {LocalizedString} */ (`Конвертор на валута`)
11
14
  };
12
15
 
13
- const bn_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
16
+ const bn_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
14
17
  return /** @type {LocalizedString} */ (`মুদ্রা রূপান্তরকারী`)
15
18
  };
16
19
 
17
- const ca_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
20
+ const ca_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
18
21
  return /** @type {LocalizedString} */ (`Convertidor de moneda`)
19
22
  };
20
23
 
21
- const cs_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
24
+ const cs_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
22
25
  return /** @type {LocalizedString} */ (`Převodník měn`)
23
26
  };
24
27
 
25
- const da_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
28
+ const da_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
26
29
  return /** @type {LocalizedString} */ (`Valutakonverter`)
27
30
  };
28
31
 
29
- const de_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
32
+ const de_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
30
33
  return /** @type {LocalizedString} */ (`Währungsrechner`)
31
34
  };
32
35
 
33
- const el_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
36
+ const el_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
34
37
  return /** @type {LocalizedString} */ (`Μετατροπέας νομισμάτων`)
35
38
  };
36
39
 
37
- const en_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
40
+ const en_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
38
41
  return /** @type {LocalizedString} */ (`Currency Converter`)
39
42
  };
40
43
 
41
- const es_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
44
+ const es_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
42
45
  return /** @type {LocalizedString} */ (`Convertidor de Divisas`)
43
46
  };
44
47
 
45
- const fi_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
48
+ const fi_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
46
49
  return /** @type {LocalizedString} */ (`Valuuttamuunnin`)
47
50
  };
48
51
 
49
- const fr_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
52
+ const fr_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
50
53
  return /** @type {LocalizedString} */ (`Convertisseur de Devises`)
51
54
  };
52
55
 
53
- const he_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
56
+ const he_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
54
57
  return /** @type {LocalizedString} */ (`ממיר מטבעות`)
55
58
  };
56
59
 
57
- const hi_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
60
+ const hi_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
58
61
  return /** @type {LocalizedString} */ (`मुद्रा परिवर्तक`)
59
62
  };
60
63
 
61
- const hu_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
64
+ const hu_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
62
65
  return /** @type {LocalizedString} */ (`Pénznem Átváltó`)
63
66
  };
64
67
 
65
- const id_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
68
+ const id_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
66
69
  return /** @type {LocalizedString} */ (`Pengonversi Mata Uang`)
67
70
  };
68
71
 
69
- const it_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
72
+ const it_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
70
73
  return /** @type {LocalizedString} */ (`Convertitore di Valuta`)
71
74
  };
72
75
 
73
- const ja_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
76
+ const ja_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
74
77
  return /** @type {LocalizedString} */ (`通貨換算`)
75
78
  };
76
79
 
77
- const ko_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
80
+ const ko_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
78
81
  return /** @type {LocalizedString} */ (`환율 변환기`)
79
82
  };
80
83
 
81
- const lt_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
84
+ const lt_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
82
85
  return /** @type {LocalizedString} */ (`Valiutų keitiklis`)
83
86
  };
84
87
 
85
- const lv_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
88
+ const lv_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
86
89
  return /** @type {LocalizedString} */ (`Valūtas konvertētājs`)
87
90
  };
88
91
 
89
- const ms_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
92
+ const ms_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
90
93
  return /** @type {LocalizedString} */ (`Penukar Mata Wang`)
91
94
  };
92
95
 
93
- const nl_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
96
+ const nl_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
94
97
  return /** @type {LocalizedString} */ (`Valuta Converter`)
95
98
  };
96
99
 
97
- const no_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
100
+ const no_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
98
101
  return /** @type {LocalizedString} */ (`Valutaomregner`)
99
102
  };
100
103
 
101
- const pl_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
104
+ const pl_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
102
105
  return /** @type {LocalizedString} */ (`Konwerter walut`)
103
106
  };
104
107
 
105
- const pt_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
108
+ const pt_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
106
109
  return /** @type {LocalizedString} */ (`Conversor de Moedas`)
107
110
  };
108
111
 
109
- const ro_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
112
+ const ro_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
110
113
  return /** @type {LocalizedString} */ (`Convertor valutar`)
111
114
  };
112
115
 
113
- const ru_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
116
+ const ru_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
114
117
  return /** @type {LocalizedString} */ (`Конвертер валют`)
115
118
  };
116
119
 
117
- const sk_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
120
+ const sk_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
118
121
  return /** @type {LocalizedString} */ (`Konvertor mien`)
119
122
  };
120
123
 
121
- const sl_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
124
+ const sl_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
122
125
  return /** @type {LocalizedString} */ (`Pretvornik valut`)
123
126
  };
124
127
 
125
- const sq_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
128
+ const sq_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
126
129
  return /** @type {LocalizedString} */ (`Konvertues Valutash`)
127
130
  };
128
131
 
129
- const sr_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
132
+ const sr_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
130
133
  return /** @type {LocalizedString} */ (`Konverter valuta`)
131
134
  };
132
135
 
133
- const sv_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
136
+ const sv_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
134
137
  return /** @type {LocalizedString} */ (`Valutaomvandlare`)
135
138
  };
136
139
 
137
- const sw_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
140
+ const sw_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
138
141
  return /** @type {LocalizedString} */ (`Kigeuzi cha Fedha`)
139
142
  };
140
143
 
141
- const ta_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
144
+ const ta_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
142
145
  return /** @type {LocalizedString} */ (`நாணய மாற்றான்`)
143
146
  };
144
147
 
145
- const te_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
148
+ const te_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
146
149
  return /** @type {LocalizedString} */ (`నాణ్య మార్పిడి`)
147
150
  };
148
151
 
149
- const th_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
152
+ const th_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
150
153
  return /** @type {LocalizedString} */ (`ตัวแปลงสกุลเงิน`)
151
154
  };
152
155
 
153
- const tl_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
156
+ const tl_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
154
157
  return /** @type {LocalizedString} */ (`Tagapagpalit ng Salapi`)
155
158
  };
156
159
 
157
- const tr_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
160
+ const tr_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
158
161
  return /** @type {LocalizedString} */ (`Para Birimi Dönüştürücü`)
159
162
  };
160
163
 
161
- const uk_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
164
+ const uk_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
162
165
  return /** @type {LocalizedString} */ (`Конвертер валют`)
163
166
  };
164
167
 
165
- const vi_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
168
+ const vi_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
166
169
  return /** @type {LocalizedString} */ (`Bộ Chuyển Đổi Tiền Tệ`)
167
170
  };
168
171
 
169
- const zh_cn2_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
172
+ const zh_cn2_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => LocalizedString} */ () => {
170
173
  return /** @type {LocalizedString} */ (`货币转换器`)
171
174
  };
172
175
 
173
- const zh_tw2_text_currency_converter = /** @type {(inputs: {}) => LocalizedString} */ () => {
176
+ const zh_tw2_text_currency_converter = /** @type {(inputs: Text_Currency_ConverterInputs) => 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
+ * | "Currency Converter" |
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_Currency_ConverterInputs} 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_currency_converter = (inputs = {}, options = {}) => {
191
- if (experimentalMiddlewareLocaleSplitting && isServer === false) {
192
- return /** @type {any} */ (globalThis).__paraglide_ssr.text_currency_converter(inputs)
193
- }
189
+ export const text_currency_converter = /** @type {((inputs?: Text_Currency_ConverterInputs, 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_Currency_ConverterInputs, { 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_currency_converter", locale)
196
191
  if (locale === "ar") return ar_text_currency_converter(inputs)
197
192
  if (locale === "bg") return bg_text_currency_converter(inputs)
198
193
  if (locale === "bn") return bn_text_currency_converter(inputs)
@@ -236,4 +231,4 @@ export const text_currency_converter = (inputs = {}, options = {}) => {
236
231
  if (locale === "vi") return vi_text_currency_converter(inputs)
237
232
  if (locale === "zh-CN") return zh_cn2_text_currency_converter(inputs)
238
233
  return zh_tw2_text_currency_converter(inputs)
239
- };
234
+ });
@@ -1,4 +1,16 @@
1
- export function text_logout(inputs?: {}, options?: {
1
+ /**
2
+ * | output |
3
+ * | --- |
4
+ * | "Logout" |
5
+ *
6
+ * @param {Text_LogoutInputs} 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_logout: ((inputs?: Text_LogoutInputs, 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_LogoutInputs, {
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_LogoutInputs = {};