rothzerg 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (341) hide show
  1. package/dist/cli.js +949 -0
  2. package/package.json +27 -0
  3. package/readme.md +0 -0
  4. package/templates/_base-website/App.tsx +59 -0
  5. package/templates/_base-website/InitialDataContext.tsx +21 -0
  6. package/templates/_base-website/_gitignore +5 -0
  7. package/templates/_base-website/client.tsx +26 -0
  8. package/templates/_base-website/components/DeepLinkLayout.css +41 -0
  9. package/templates/_base-website/components/DeepLinkLayout.tsx +39 -0
  10. package/templates/_base-website/components/DownloadSection.css +60 -0
  11. package/templates/_base-website/components/DownloadSection.tsx +61 -0
  12. package/templates/_base-website/components/SiteFeaturesSection.tsx +68 -0
  13. package/templates/_base-website/components/SiteFooter.tsx +29 -0
  14. package/templates/_base-website/components/SiteHeroSection.tsx +30 -0
  15. package/templates/_base-website/components/SiteHighlightsSection.tsx +38 -0
  16. package/templates/_base-website/components/SiteLanguageSwitcher.tsx +9 -0
  17. package/templates/_base-website/components/SiteNavigation.tsx +24 -0
  18. package/templates/_base-website/config.ts +78 -0
  19. package/templates/_base-website/data/blog/authors.json +18 -0
  20. package/templates/_base-website/data/blog/categories.json +53 -0
  21. package/templates/_base-website/data/blog/posts.json +29 -0
  22. package/templates/_base-website/data/blog/tags.json +86 -0
  23. package/templates/_base-website/i18n/config.ts +60 -0
  24. package/templates/_base-website/i18n/sections/blog/_index.ts +41 -0
  25. package/templates/_base-website/i18n/sections/blog/ar.ts +24 -0
  26. package/templates/_base-website/i18n/sections/blog/de.ts +24 -0
  27. package/templates/_base-website/i18n/sections/blog/en.ts +24 -0
  28. package/templates/_base-website/i18n/sections/blog/es.ts +24 -0
  29. package/templates/_base-website/i18n/sections/blog/fr.ts +24 -0
  30. package/templates/_base-website/i18n/sections/blog/hi.ts +24 -0
  31. package/templates/_base-website/i18n/sections/blog/id.ts +24 -0
  32. package/templates/_base-website/i18n/sections/blog/it.ts +24 -0
  33. package/templates/_base-website/i18n/sections/blog/ja.ts +24 -0
  34. package/templates/_base-website/i18n/sections/blog/ko.ts +24 -0
  35. package/templates/_base-website/i18n/sections/blog/nl.ts +24 -0
  36. package/templates/_base-website/i18n/sections/blog/pl.ts +24 -0
  37. package/templates/_base-website/i18n/sections/blog/pt.ts +24 -0
  38. package/templates/_base-website/i18n/sections/blog/ru.ts +24 -0
  39. package/templates/_base-website/i18n/sections/blog/sv.ts +24 -0
  40. package/templates/_base-website/i18n/sections/blog/th.ts +24 -0
  41. package/templates/_base-website/i18n/sections/blog/tr.ts +24 -0
  42. package/templates/_base-website/i18n/sections/blog/vi.ts +24 -0
  43. package/templates/_base-website/i18n/sections/blog/zh.ts +24 -0
  44. package/templates/_base-website/i18n/sections/common/_index.ts +41 -0
  45. package/templates/_base-website/i18n/sections/common/ar.ts +29 -0
  46. package/templates/_base-website/i18n/sections/common/de.ts +29 -0
  47. package/templates/_base-website/i18n/sections/common/en.ts +29 -0
  48. package/templates/_base-website/i18n/sections/common/es.ts +29 -0
  49. package/templates/_base-website/i18n/sections/common/fr.ts +29 -0
  50. package/templates/_base-website/i18n/sections/common/hi.ts +29 -0
  51. package/templates/_base-website/i18n/sections/common/id.ts +29 -0
  52. package/templates/_base-website/i18n/sections/common/it.ts +29 -0
  53. package/templates/_base-website/i18n/sections/common/ja.ts +29 -0
  54. package/templates/_base-website/i18n/sections/common/ko.ts +29 -0
  55. package/templates/_base-website/i18n/sections/common/nl.ts +29 -0
  56. package/templates/_base-website/i18n/sections/common/pl.ts +29 -0
  57. package/templates/_base-website/i18n/sections/common/pt.ts +29 -0
  58. package/templates/_base-website/i18n/sections/common/ru.ts +29 -0
  59. package/templates/_base-website/i18n/sections/common/sv.ts +29 -0
  60. package/templates/_base-website/i18n/sections/common/th.ts +29 -0
  61. package/templates/_base-website/i18n/sections/common/tr.ts +29 -0
  62. package/templates/_base-website/i18n/sections/common/vi.ts +29 -0
  63. package/templates/_base-website/i18n/sections/common/zh.ts +29 -0
  64. package/templates/_base-website/i18n/sections/deepLink/_index.ts +41 -0
  65. package/templates/_base-website/i18n/sections/deepLink/ar.ts +14 -0
  66. package/templates/_base-website/i18n/sections/deepLink/de.ts +14 -0
  67. package/templates/_base-website/i18n/sections/deepLink/en.ts +14 -0
  68. package/templates/_base-website/i18n/sections/deepLink/es.ts +14 -0
  69. package/templates/_base-website/i18n/sections/deepLink/fr.ts +14 -0
  70. package/templates/_base-website/i18n/sections/deepLink/hi.ts +14 -0
  71. package/templates/_base-website/i18n/sections/deepLink/id.ts +14 -0
  72. package/templates/_base-website/i18n/sections/deepLink/it.ts +14 -0
  73. package/templates/_base-website/i18n/sections/deepLink/ja.ts +14 -0
  74. package/templates/_base-website/i18n/sections/deepLink/ko.ts +14 -0
  75. package/templates/_base-website/i18n/sections/deepLink/nl.ts +14 -0
  76. package/templates/_base-website/i18n/sections/deepLink/pl.ts +14 -0
  77. package/templates/_base-website/i18n/sections/deepLink/pt.ts +14 -0
  78. package/templates/_base-website/i18n/sections/deepLink/ru.ts +14 -0
  79. package/templates/_base-website/i18n/sections/deepLink/sv.ts +14 -0
  80. package/templates/_base-website/i18n/sections/deepLink/th.ts +14 -0
  81. package/templates/_base-website/i18n/sections/deepLink/tr.ts +14 -0
  82. package/templates/_base-website/i18n/sections/deepLink/vi.ts +14 -0
  83. package/templates/_base-website/i18n/sections/deepLink/zh.ts +14 -0
  84. package/templates/_base-website/i18n/sections/home/_index.ts +41 -0
  85. package/templates/_base-website/i18n/sections/home/ar.ts +85 -0
  86. package/templates/_base-website/i18n/sections/home/de.ts +85 -0
  87. package/templates/_base-website/i18n/sections/home/en.ts +85 -0
  88. package/templates/_base-website/i18n/sections/home/es.ts +85 -0
  89. package/templates/_base-website/i18n/sections/home/fr.ts +85 -0
  90. package/templates/_base-website/i18n/sections/home/hi.ts +85 -0
  91. package/templates/_base-website/i18n/sections/home/id.ts +85 -0
  92. package/templates/_base-website/i18n/sections/home/it.ts +85 -0
  93. package/templates/_base-website/i18n/sections/home/ja.ts +85 -0
  94. package/templates/_base-website/i18n/sections/home/ko.ts +85 -0
  95. package/templates/_base-website/i18n/sections/home/nl.ts +85 -0
  96. package/templates/_base-website/i18n/sections/home/pl.ts +85 -0
  97. package/templates/_base-website/i18n/sections/home/pt.ts +85 -0
  98. package/templates/_base-website/i18n/sections/home/ru.ts +85 -0
  99. package/templates/_base-website/i18n/sections/home/sv.ts +85 -0
  100. package/templates/_base-website/i18n/sections/home/th.ts +85 -0
  101. package/templates/_base-website/i18n/sections/home/tr.ts +85 -0
  102. package/templates/_base-website/i18n/sections/home/vi.ts +85 -0
  103. package/templates/_base-website/i18n/sections/home/zh.ts +85 -0
  104. package/templates/_base-website/i18n/sections/support/_index.ts +41 -0
  105. package/templates/_base-website/i18n/sections/support/ar.ts +37 -0
  106. package/templates/_base-website/i18n/sections/support/de.ts +37 -0
  107. package/templates/_base-website/i18n/sections/support/en.ts +37 -0
  108. package/templates/_base-website/i18n/sections/support/es.ts +37 -0
  109. package/templates/_base-website/i18n/sections/support/fr.ts +37 -0
  110. package/templates/_base-website/i18n/sections/support/hi.ts +37 -0
  111. package/templates/_base-website/i18n/sections/support/id.ts +37 -0
  112. package/templates/_base-website/i18n/sections/support/it.ts +37 -0
  113. package/templates/_base-website/i18n/sections/support/ja.ts +37 -0
  114. package/templates/_base-website/i18n/sections/support/ko.ts +37 -0
  115. package/templates/_base-website/i18n/sections/support/nl.ts +37 -0
  116. package/templates/_base-website/i18n/sections/support/pl.ts +37 -0
  117. package/templates/_base-website/i18n/sections/support/pt.ts +37 -0
  118. package/templates/_base-website/i18n/sections/support/ru.ts +37 -0
  119. package/templates/_base-website/i18n/sections/support/sv.ts +37 -0
  120. package/templates/_base-website/i18n/sections/support/th.ts +37 -0
  121. package/templates/_base-website/i18n/sections/support/tr.ts +37 -0
  122. package/templates/_base-website/i18n/sections/support/vi.ts +37 -0
  123. package/templates/_base-website/i18n/sections/support/zh.ts +37 -0
  124. package/templates/_base-website/i18n/translations.ts +25 -0
  125. package/templates/_base-website/index.ts +460 -0
  126. package/templates/_base-website/pages/404.tsx +35 -0
  127. package/templates/_base-website/pages/blog/author.tsx +97 -0
  128. package/templates/_base-website/pages/blog/category.tsx +89 -0
  129. package/templates/_base-website/pages/blog/index.tsx +81 -0
  130. package/templates/_base-website/pages/blog/post.tsx +110 -0
  131. package/templates/_base-website/pages/blog/tag.tsx +86 -0
  132. package/templates/_base-website/pages/custom-pages/example.tsx +54 -0
  133. package/templates/_base-website/pages/index.tsx +29 -0
  134. package/templates/_base-website/pages/privacy.tsx +45 -0
  135. package/templates/_base-website/pages/support.tsx +154 -0
  136. package/templates/_base-website/pages/terms.tsx +68 -0
  137. package/templates/_base-website/public/images/16.png +0 -0
  138. package/templates/_base-website/public/images/apple-touch-icon.png +0 -0
  139. package/templates/_base-website/public/images/favicon-32x32.png +0 -0
  140. package/templates/_base-website/public/images/favicon.png +0 -0
  141. package/templates/_base-website/public/images/logo_dark.svg +6 -0
  142. package/templates/_base-website/public/images/logo_light.svg +6 -0
  143. package/templates/_base-website/public/images/og-image.png +0 -0
  144. package/templates/_base-website/public/images/screenshots/ar_dashboard.jpg +0 -0
  145. package/templates/_base-website/public/images/screenshots/de_dashboard.jpg +0 -0
  146. package/templates/_base-website/public/images/screenshots/en_dashboard.jpg +0 -0
  147. package/templates/_base-website/public/images/screenshots/es_dashboard.jpg +0 -0
  148. package/templates/_base-website/public/images/screenshots/fr_dashboard.jpg +0 -0
  149. package/templates/_base-website/public/images/screenshots/hi_dashboard.jpg +0 -0
  150. package/templates/_base-website/public/images/screenshots/id_dashboard.jpg +0 -0
  151. package/templates/_base-website/public/images/screenshots/it_dashboard.jpg +0 -0
  152. package/templates/_base-website/public/images/screenshots/ja_dashboard.jpg +0 -0
  153. package/templates/_base-website/public/images/screenshots/ko_dashboard.jpg +0 -0
  154. package/templates/_base-website/public/images/screenshots/nl_dashboard.jpg +0 -0
  155. package/templates/_base-website/public/images/screenshots/pl_dashboard.jpg +0 -0
  156. package/templates/_base-website/public/images/screenshots/pt_dashboard.jpg +0 -0
  157. package/templates/_base-website/public/images/screenshots/ru_dashboard.jpg +0 -0
  158. package/templates/_base-website/public/images/screenshots/sv_dashboard.jpg +0 -0
  159. package/templates/_base-website/public/images/screenshots/th_dashboard.jpg +0 -0
  160. package/templates/_base-website/public/images/screenshots/tr_dashboard.jpg +0 -0
  161. package/templates/_base-website/public/images/screenshots/vi_dashboard.jpg +0 -0
  162. package/templates/_base-website/public/images/screenshots/zh_dashboard.jpg +0 -0
  163. package/templates/_base-website/rothzerg.template.json +63 -0
  164. package/templates/_base-website/styles/404.css +32 -0
  165. package/templates/_base-website/styles/_app.css +131 -0
  166. package/templates/_base-website/styles/_shared.css +194 -0
  167. package/templates/_base-website/styles/index.css +1 -0
  168. package/templates/_base-website/styles/privacy.css +1 -0
  169. package/templates/_base-website/styles/support.css +148 -0
  170. package/templates/_base-website/styles/terms.css +22 -0
  171. package/templates/mobile-app/_gitignore +46 -0
  172. package/templates/mobile-app/analysis_options.yaml +28 -0
  173. package/templates/mobile-app/android/app/build.gradle.kts +56 -0
  174. package/templates/mobile-app/android/app/google-services.json +29 -0
  175. package/templates/mobile-app/android/app/src/debug/AndroidManifest.xml +7 -0
  176. package/templates/mobile-app/android/app/src/main/AndroidManifest.xml +54 -0
  177. package/templates/mobile-app/android/app/src/main/kotlin/com/example/{{projectNameSnake}}/MainActivity.kt +5 -0
  178. package/templates/mobile-app/android/app/src/main/res/drawable/launch_background.xml +12 -0
  179. package/templates/mobile-app/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
  180. package/templates/mobile-app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  181. package/templates/mobile-app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  182. package/templates/mobile-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  183. package/templates/mobile-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  184. package/templates/mobile-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  185. package/templates/mobile-app/android/app/src/main/res/values/styles.xml +18 -0
  186. package/templates/mobile-app/android/app/src/main/res/values-night/styles.xml +18 -0
  187. package/templates/mobile-app/android/app/src/profile/AndroidManifest.xml +7 -0
  188. package/templates/mobile-app/android/build.gradle.kts +24 -0
  189. package/templates/mobile-app/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  190. package/templates/mobile-app/android/gradle.properties +2 -0
  191. package/templates/mobile-app/android/settings.gradle.kts +31 -0
  192. package/templates/mobile-app/assets/icons/logo.png +0 -0
  193. package/templates/mobile-app/assets/icons/logo_dark.svg +5 -0
  194. package/templates/mobile-app/assets/icons/logo_light.svg +5 -0
  195. package/templates/mobile-app/assets/lottie/tick.json +1 -0
  196. package/templates/mobile-app/devtools_options.yaml +3 -0
  197. package/templates/mobile-app/ios/Flutter/AppFrameworkInfo.plist +26 -0
  198. package/templates/mobile-app/ios/Flutter/Debug.xcconfig +2 -0
  199. package/templates/mobile-app/ios/Flutter/Release.xcconfig +2 -0
  200. package/templates/mobile-app/ios/Podfile +46 -0
  201. package/templates/mobile-app/ios/Podfile.lock +1807 -0
  202. package/templates/mobile-app/ios/Runner/AppDelegate.swift +16 -0
  203. package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
  204. package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
  205. package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
  206. package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
  207. package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
  208. package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
  209. package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
  210. package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
  211. package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
  212. package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
  213. package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
  214. package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
  215. package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
  216. package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
  217. package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
  218. package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
  219. package/templates/mobile-app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
  220. package/templates/mobile-app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
  221. package/templates/mobile-app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
  222. package/templates/mobile-app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
  223. package/templates/mobile-app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
  224. package/templates/mobile-app/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
  225. package/templates/mobile-app/ios/Runner/Base.lproj/Main.storyboard +26 -0
  226. package/templates/mobile-app/ios/Runner/GoogleService-Info.plist +30 -0
  227. package/templates/mobile-app/ios/Runner/Info.plist +70 -0
  228. package/templates/mobile-app/ios/Runner/Runner-Bridging-Header.h +1 -0
  229. package/templates/mobile-app/ios/Runner.xcodeproj/project.pbxproj +772 -0
  230. package/templates/mobile-app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  231. package/templates/mobile-app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  232. package/templates/mobile-app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
  233. package/templates/mobile-app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +101 -0
  234. package/templates/mobile-app/ios/Runner.xcworkspace/contents.xcworkspacedata +10 -0
  235. package/templates/mobile-app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  236. package/templates/mobile-app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
  237. package/templates/mobile-app/ios/RunnerTests/RunnerTests.swift +12 -0
  238. package/templates/mobile-app/l10n.yaml +5 -0
  239. package/templates/mobile-app/lib/core/config/app_config.dart +76 -0
  240. package/templates/mobile-app/lib/core/constants/app_colors.dart +13 -0
  241. package/templates/mobile-app/lib/core/constants/app_constants.dart +123 -0
  242. package/templates/mobile-app/lib/core/constants/countries.dart +199 -0
  243. package/templates/mobile-app/lib/core/constants/keys.dart +46 -0
  244. package/templates/mobile-app/lib/core/constants/languages.dart +51 -0
  245. package/templates/mobile-app/lib/core/services/admin_service.dart +271 -0
  246. package/templates/mobile-app/lib/core/services/analytics_service.dart +296 -0
  247. package/templates/mobile-app/lib/core/services/auth_service.dart +185 -0
  248. package/templates/mobile-app/lib/core/services/device_service.dart +228 -0
  249. package/templates/mobile-app/lib/core/services/firebase_service.dart +490 -0
  250. package/templates/mobile-app/lib/core/services/in_app_messaging_service.dart +166 -0
  251. package/templates/mobile-app/lib/core/services/logging_service.dart +451 -0
  252. package/templates/mobile-app/lib/core/services/messaging_service.dart +460 -0
  253. package/templates/mobile-app/lib/core/services/remote_config_service.dart +167 -0
  254. package/templates/mobile-app/lib/core/services/revenue_cat_service.dart +364 -0
  255. package/templates/mobile-app/lib/core/services/storage_service.dart +313 -0
  256. package/templates/mobile-app/lib/core/theme/dark_theme.dart +295 -0
  257. package/templates/mobile-app/lib/core/theme/light_theme.dart +296 -0
  258. package/templates/mobile-app/lib/core/utils/formatters.dart +236 -0
  259. package/templates/mobile-app/lib/core/utils/image_picker_helper.dart +78 -0
  260. package/templates/mobile-app/lib/core/utils/validators.dart +292 -0
  261. package/templates/mobile-app/lib/firebase_options.dart +19 -0
  262. package/templates/mobile-app/lib/l10n/app_en.arb +1371 -0
  263. package/templates/mobile-app/lib/l10n/app_localizations.dart +2042 -0
  264. package/templates/mobile-app/lib/l10n/app_localizations_en.dart +1033 -0
  265. package/templates/mobile-app/lib/main.dart +152 -0
  266. package/templates/mobile-app/lib/models/device_model.dart +90 -0
  267. package/templates/mobile-app/lib/models/news_banner.dart +53 -0
  268. package/templates/mobile-app/lib/models/user_model.dart +120 -0
  269. package/templates/mobile-app/lib/providers/admin_provider.dart +67 -0
  270. package/templates/mobile-app/lib/providers/auth_provider.dart +328 -0
  271. package/templates/mobile-app/lib/providers/remote_config_provider.dart +81 -0
  272. package/templates/mobile-app/lib/providers/subscription_provider.dart +67 -0
  273. package/templates/mobile-app/lib/providers/theme_provider.dart +51 -0
  274. package/templates/mobile-app/lib/screens/admin/admin_panel_screen.dart +436 -0
  275. package/templates/mobile-app/lib/screens/admin/admin_panel_user_details_screen.dart +942 -0
  276. package/templates/mobile-app/lib/screens/admin/admin_panel_users_screen.dart +344 -0
  277. package/templates/mobile-app/lib/screens/auth/auth_home_screen.dart +266 -0
  278. package/templates/mobile-app/lib/screens/auth/forgot_password_screen.dart +214 -0
  279. package/templates/mobile-app/lib/screens/auth/login_screen.dart +312 -0
  280. package/templates/mobile-app/lib/screens/auth/profile_setup_screen.dart +157 -0
  281. package/templates/mobile-app/lib/screens/auth/register_screen.dart +288 -0
  282. package/templates/mobile-app/lib/screens/developer/developer_panel_screen.dart +436 -0
  283. package/templates/mobile-app/lib/screens/developer/remote_config_screen.dart +315 -0
  284. package/templates/mobile-app/lib/screens/developer/remote_config_test_screen.dart +461 -0
  285. package/templates/mobile-app/lib/screens/home/home_screen.dart +270 -0
  286. package/templates/mobile-app/lib/screens/legal/privacy_policy_screen.dart +63 -0
  287. package/templates/mobile-app/lib/screens/legal/terms_screen.dart +82 -0
  288. package/templates/mobile-app/lib/screens/main_navigation_screen.dart +85 -0
  289. package/templates/mobile-app/lib/screens/premium/subscription_screen.dart +516 -0
  290. package/templates/mobile-app/lib/screens/profile/edit_profile_screen.dart +246 -0
  291. package/templates/mobile-app/lib/screens/settings/about_app_screen.dart +200 -0
  292. package/templates/mobile-app/lib/screens/settings/cache_manager_screen.dart +400 -0
  293. package/templates/mobile-app/lib/screens/settings/change_password_screen.dart +269 -0
  294. package/templates/mobile-app/lib/screens/settings/delete_account_screen.dart +261 -0
  295. package/templates/mobile-app/lib/screens/settings/settings_screen.dart +400 -0
  296. package/templates/mobile-app/lib/screens/splash/splash_screen.dart +125 -0
  297. package/templates/mobile-app/lib/widgets/app_button.dart +255 -0
  298. package/templates/mobile-app/lib/widgets/app_drawer.dart +207 -0
  299. package/templates/mobile-app/lib/widgets/bottom_sheet_selector.dart +79 -0
  300. package/templates/mobile-app/lib/widgets/button_banner.dart +177 -0
  301. package/templates/mobile-app/lib/widgets/country_picker.dart +169 -0
  302. package/templates/mobile-app/lib/widgets/custom_app_bar.dart +30 -0
  303. package/templates/mobile-app/lib/widgets/email_verification_banner.dart +163 -0
  304. package/templates/mobile-app/lib/widgets/empty_screen.dart +42 -0
  305. package/templates/mobile-app/lib/widgets/language_picker.dart +145 -0
  306. package/templates/mobile-app/lib/widgets/news_banner_widget.dart +264 -0
  307. package/templates/mobile-app/lib/widgets/remote_config/remote_config_widgets.dart +294 -0
  308. package/templates/mobile-app/lib/widgets/section_header.dart +23 -0
  309. package/templates/mobile-app/lib/widgets/success_overlay.dart +117 -0
  310. package/templates/mobile-app/lib/widgets/top_notification.dart +263 -0
  311. package/templates/mobile-app/lib/widgets/user_avatar_picker.dart +58 -0
  312. package/templates/mobile-app/pubspec.yaml +97 -0
  313. package/templates/mobile-app/rothzerg.template.json +43 -0
  314. package/templates/web-app/_gitignore +4 -0
  315. package/templates/web-app/index.html +12 -0
  316. package/templates/web-app/package.json +23 -0
  317. package/templates/web-app/rothzerg.template.json +41 -0
  318. package/templates/web-app/src/App.css +6 -0
  319. package/templates/web-app/src/App.tsx +12 -0
  320. package/templates/web-app/src/index.css +14 -0
  321. package/templates/web-app/src/main.tsx +10 -0
  322. package/templates/web-app/tsconfig.app.json +20 -0
  323. package/templates/web-app/tsconfig.json +7 -0
  324. package/templates/web-app/tsconfig.node.json +18 -0
  325. package/templates/web-app/vite.config.ts +6 -0
  326. package/templates/website-blog/overrides/config.ts +76 -0
  327. package/templates/website-blog/overrides/pages/index.tsx +63 -0
  328. package/templates/website-blog/rothzerg.template.json +29 -0
  329. package/templates/website-business/overrides/App.tsx +49 -0
  330. package/templates/website-business/overrides/components/SiteHeroSection.tsx +33 -0
  331. package/templates/website-business/overrides/config.ts +76 -0
  332. package/templates/website-business/overrides/pages/about.tsx +50 -0
  333. package/templates/website-business/overrides/pages/contact.tsx +61 -0
  334. package/templates/website-business/overrides/pages/index.tsx +37 -0
  335. package/templates/website-business/overrides/pages/services.tsx +70 -0
  336. package/templates/website-business/rothzerg.template.json +18 -0
  337. package/templates/website-mobile/overrides/App.tsx +62 -0
  338. package/templates/website-mobile/overrides/components/SiteHeroSection.tsx +18 -0
  339. package/templates/website-mobile/overrides/config.ts +76 -0
  340. package/templates/website-mobile/overrides/pages/index.tsx +34 -0
  341. package/templates/website-mobile/rothzerg.template.json +64 -0
@@ -0,0 +1,24 @@
1
+ export const blogTH: Record<string, any> = {
2
+ "blog": {
3
+ "backToBlog": "← บล็อก",
4
+ "readArticle": "อ่านบทความ →",
5
+ "minRead": "นาทีในการอ่าน",
6
+ "post": "โพสต์",
7
+ "posts": "โพสต์",
8
+ "indexSubtitle": "บทความ บทเรียน และข้อมูลเชิงลึกเกี่ยวกับการสร้างเว็บแอปพลิเคชันสมัยใหม่",
9
+ "noPostsYet": "ยังไม่มีโพสต์ กลับมาใหม่เร็วๆ นี้",
10
+ "noPostsTag": "ไม่พบโพสต์สำหรับแท็กนี้",
11
+ "noPostsCategory": "ไม่พบโพสต์ในหมวดหมู่นี้",
12
+ "noPostsAuthor": "ผู้เขียนนี้ยังไม่มีโพสต์",
13
+ "postNotFound": "ไม่พบโพสต์",
14
+ "authorNotFound": "ไม่พบผู้เขียน",
15
+ "tagLabel": "แท็ก",
16
+ "categoryLabel": "หมวดหมู่",
17
+ "authorLabel": "ผู้เขียน",
18
+ "unknownTag": "แท็กที่ไม่รู้จัก",
19
+ "unknownCategory": "หมวดหมู่ที่ไม่รู้จัก",
20
+ "sidebarRecentPosts": "โพสต์ล่าสุด",
21
+ "sidebarCategories": "หมวดหมู่",
22
+ "sidebarTags": "แท็ก"
23
+ }
24
+ };
@@ -0,0 +1,24 @@
1
+ export const blogTR: Record<string, any> = {
2
+ "blog": {
3
+ "backToBlog": "← Blog",
4
+ "readArticle": "Makaleyi oku →",
5
+ "minRead": "dk okuma",
6
+ "post": "yazı",
7
+ "posts": "yazı",
8
+ "indexSubtitle": "Modern web uygulamaları geliştirme hakkında makaleler, öğreticiler ve içgörüler.",
9
+ "noPostsYet": "Henüz yazı yok. Yakında tekrar kontrol edin.",
10
+ "noPostsTag": "Bu etikete ait yazı bulunamadı.",
11
+ "noPostsCategory": "Bu kategoride yazı bulunamadı.",
12
+ "noPostsAuthor": "Bu yazara ait henüz yazı yok.",
13
+ "postNotFound": "Yazı bulunamadı",
14
+ "authorNotFound": "Yazar bulunamadı",
15
+ "tagLabel": "Etiket",
16
+ "categoryLabel": "Kategori",
17
+ "authorLabel": "Yazar",
18
+ "unknownTag": "Bilinmeyen Etiket",
19
+ "unknownCategory": "Bilinmeyen Kategori",
20
+ "sidebarRecentPosts": "Son Yazılar",
21
+ "sidebarCategories": "Kategoriler",
22
+ "sidebarTags": "Etiketler"
23
+ }
24
+ };
@@ -0,0 +1,24 @@
1
+ export const blogVI: Record<string, any> = {
2
+ "blog": {
3
+ "backToBlog": "← Blog",
4
+ "readArticle": "Đọc bài viết →",
5
+ "minRead": "phút đọc",
6
+ "post": "bài viết",
7
+ "posts": "bài viết",
8
+ "indexSubtitle": "Bài viết, hướng dẫn và kiến thức về xây dựng ứng dụng web hiện đại.",
9
+ "noPostsYet": "Chưa có bài viết. Hãy quay lại sau.",
10
+ "noPostsTag": "Không tìm thấy bài viết cho thẻ này.",
11
+ "noPostsCategory": "Không tìm thấy bài viết trong danh mục này.",
12
+ "noPostsAuthor": "Tác giả này chưa có bài viết.",
13
+ "postNotFound": "Không tìm thấy bài viết",
14
+ "authorNotFound": "Không tìm thấy tác giả",
15
+ "tagLabel": "Thẻ",
16
+ "categoryLabel": "Danh mục",
17
+ "authorLabel": "Tác giả",
18
+ "unknownTag": "Thẻ không xác định",
19
+ "unknownCategory": "Danh mục không xác định",
20
+ "sidebarRecentPosts": "Bài viết gần đây",
21
+ "sidebarCategories": "Danh mục",
22
+ "sidebarTags": "Thẻ"
23
+ }
24
+ };
@@ -0,0 +1,24 @@
1
+ export const blogZH: Record<string, any> = {
2
+ "blog": {
3
+ "backToBlog": "← 博客",
4
+ "readArticle": "阅读文章 →",
5
+ "minRead": "分钟阅读",
6
+ "post": "篇文章",
7
+ "posts": "篇文章",
8
+ "indexSubtitle": "关于构建现代Web应用程序的文章、教程和见解。",
9
+ "noPostsYet": "暂无文章,请稍后再来。",
10
+ "noPostsTag": "未找到该标签的文章。",
11
+ "noPostsCategory": "未找到该分类的文章。",
12
+ "noPostsAuthor": "该作者暂无文章。",
13
+ "postNotFound": "文章未找到",
14
+ "authorNotFound": "作者未找到",
15
+ "tagLabel": "标签",
16
+ "categoryLabel": "分类",
17
+ "authorLabel": "作者",
18
+ "unknownTag": "未知标签",
19
+ "unknownCategory": "未知分类",
20
+ "sidebarRecentPosts": "近期文章",
21
+ "sidebarCategories": "分类",
22
+ "sidebarTags": "标签"
23
+ }
24
+ };
@@ -0,0 +1,41 @@
1
+ import { commonEN } from "./en.ts";
2
+ import { commonDE } from "./de.ts";
3
+ import { commonFR } from "./fr.ts";
4
+ import { commonIT } from "./it.ts";
5
+ import { commonJA } from "./ja.ts";
6
+ import { commonKO } from "./ko.ts";
7
+ import { commonTR } from "./tr.ts";
8
+ import { commonZH } from "./zh.ts";
9
+ import { commonES } from "./es.ts";
10
+ import { commonPT } from "./pt.ts";
11
+ import { commonHI } from "./hi.ts";
12
+ import { commonAR } from "./ar.ts";
13
+ import { commonRU } from "./ru.ts";
14
+ import { commonPL } from "./pl.ts";
15
+ import { commonNL } from "./nl.ts";
16
+ import { commonID } from "./id.ts";
17
+ import { commonVI } from "./vi.ts";
18
+ import { commonTH } from "./th.ts";
19
+ import { commonSV } from "./sv.ts";
20
+
21
+ export const commonTranslations: Record<string, any> = {
22
+ "en": commonEN,
23
+ "de": commonDE,
24
+ "fr": commonFR,
25
+ "it": commonIT,
26
+ "ja": commonJA,
27
+ "ko": commonKO,
28
+ "tr": commonTR,
29
+ "zh": commonZH,
30
+ "es": commonES,
31
+ "pt": commonPT,
32
+ "hi": commonHI,
33
+ "ar": commonAR,
34
+ "ru": commonRU,
35
+ "pl": commonPL,
36
+ "nl": commonNL,
37
+ "id": commonID,
38
+ "vi": commonVI,
39
+ "th": commonTH,
40
+ "sv": commonSV,
41
+ };
@@ -0,0 +1,29 @@
1
+ export const commonAR: Record<string, any> = {
2
+ "meta": {
3
+ "homeTitle": "الرئيسية",
4
+ "homeDescription": "Emrius تطبيق لياقة مجاني لـ iOS و Android.",
5
+ "termsTitle": "شروط الخدمة",
6
+ "termsDescription": "اقرأ شروط Emrius.",
7
+ "privacyTitle": "سياسة الخصوصية",
8
+ "privacyDescription": "كيف يحمي Emrius معلوماتك.",
9
+ "supportTitle": "الدعم ومركز المساعدة",
10
+ "supportDescription": "مساعدة مع Emrius."
11
+ },
12
+ "nav": {
13
+ "home": "الرئيسية",
14
+ "features": "الميزات",
15
+ "support": "الدعم",
16
+ "download": "تحميل"
17
+ },
18
+ "footer": {
19
+ "tagline": "حوّل رحلة لياقتك",
20
+ "product": "المنتج",
21
+ "support": "الدعم",
22
+ "legal": "قانوني",
23
+ "helpCenter": "مركز المساعدة",
24
+ "contactUs": "اتصل بنا",
25
+ "privacyPolicy": "الخصوصية",
26
+ "termsOfService": "الشروط",
27
+ "copyright": "جميع الحقوق محفوظة."
28
+ }
29
+ };
@@ -0,0 +1,29 @@
1
+ export const commonDE: Record<string, any> = {
2
+ "meta": {
3
+ "homeTitle": "Startseite",
4
+ "homeDescription": "Emrius ist dein umfassender Fitness-Begleiter. Kostenlos für iOS und Android.",
5
+ "termsTitle": "Nutzungsbedingungen",
6
+ "termsDescription": "Lesen Sie die Emrius Nutzungsbedingungen.",
7
+ "privacyTitle": "Datenschutzrichtlinie",
8
+ "privacyDescription": "Erfahren Sie, wie Emrius Ihre Daten schützt.",
9
+ "supportTitle": "Support & Hilfe-Center",
10
+ "supportDescription": "Hilfe zur Emrius Fitness-App."
11
+ },
12
+ "nav": {
13
+ "home": "Startseite",
14
+ "features": "Funktionen",
15
+ "support": "Support",
16
+ "download": "Herunterladen"
17
+ },
18
+ "footer": {
19
+ "tagline": "Verwandle deine Fitness-Reise",
20
+ "product": "Produkt",
21
+ "support": "Support",
22
+ "legal": "Rechtliches",
23
+ "helpCenter": "Hilfe-Center",
24
+ "contactUs": "Kontakt",
25
+ "privacyPolicy": "Datenschutz",
26
+ "termsOfService": "Nutzungsbedingungen",
27
+ "copyright": "Alle Rechte vorbehalten."
28
+ }
29
+ };
@@ -0,0 +1,29 @@
1
+ export const commonEN: Record<string, any> = {
2
+ "meta": {
3
+ "homeTitle": "Home",
4
+ "homeDescription": "Emrius is your comprehensive gym workout companion. Get personalized workout plans, exciting fitness challenges, and connect with a supportive community. Download free for iOS and Android.",
5
+ "termsTitle": "Terms of Service",
6
+ "termsDescription": "Read the Emrius Terms of Service.",
7
+ "privacyTitle": "Privacy Policy",
8
+ "privacyDescription": "Learn how Emrius collects and protects your information.",
9
+ "supportTitle": "Support & Help Center",
10
+ "supportDescription": "Get help with the Emrius fitness app."
11
+ },
12
+ "nav": {
13
+ "home": "Home",
14
+ "features": "Features",
15
+ "support": "Support",
16
+ "download": "Download"
17
+ },
18
+ "footer": {
19
+ "tagline": "Transform your fitness journey",
20
+ "product": "Product",
21
+ "support": "Support",
22
+ "legal": "Legal",
23
+ "helpCenter": "Help Center",
24
+ "contactUs": "Contact Us",
25
+ "privacyPolicy": "Privacy Policy",
26
+ "termsOfService": "Terms of Service",
27
+ "copyright": "All rights reserved."
28
+ }
29
+ };
@@ -0,0 +1,29 @@
1
+ export const commonES: Record<string, any> = {
2
+ "meta": {
3
+ "homeTitle": "Inicio",
4
+ "homeDescription": "Emrius es tu compañero de fitness completo. Descarga gratis para iOS y Android.",
5
+ "termsTitle": "Términos de Servicio",
6
+ "termsDescription": "Lee los Términos de Emrius.",
7
+ "privacyTitle": "Política de Privacidad",
8
+ "privacyDescription": "Cómo Emrius protege tu información.",
9
+ "supportTitle": "Soporte y Centro de Ayuda",
10
+ "supportDescription": "Ayuda con la aplicación Emrius."
11
+ },
12
+ "nav": {
13
+ "home": "Inicio",
14
+ "features": "Funciones",
15
+ "support": "Soporte",
16
+ "download": "Descargar"
17
+ },
18
+ "footer": {
19
+ "tagline": "Transforma tu viaje de fitness",
20
+ "product": "Producto",
21
+ "support": "Soporte",
22
+ "legal": "Legal",
23
+ "helpCenter": "Centro de Ayuda",
24
+ "contactUs": "Contáctanos",
25
+ "privacyPolicy": "Privacidad",
26
+ "termsOfService": "Términos",
27
+ "copyright": "Todos los derechos reservados."
28
+ }
29
+ };
@@ -0,0 +1,29 @@
1
+ export const commonFR: Record<string, any> = {
2
+ "meta": {
3
+ "homeTitle": "Accueil",
4
+ "homeDescription": "Emrius est votre compagnon de fitness complet. Téléchargez gratuitement pour iOS et Android.",
5
+ "termsTitle": "Conditions d'Utilisation",
6
+ "termsDescription": "Lisez les conditions d'utilisation d'Emrius.",
7
+ "privacyTitle": "Politique de Confidentialité",
8
+ "privacyDescription": "Comment Emrius protège vos informations.",
9
+ "supportTitle": "Support & Centre d'Aide",
10
+ "supportDescription": "Aide avec l'application Emrius."
11
+ },
12
+ "nav": {
13
+ "home": "Accueil",
14
+ "features": "Fonctionnalités",
15
+ "support": "Support",
16
+ "download": "Télécharger"
17
+ },
18
+ "footer": {
19
+ "tagline": "Transformez votre parcours fitness",
20
+ "product": "Produit",
21
+ "support": "Support",
22
+ "legal": "Légal",
23
+ "helpCenter": "Centre d'Aide",
24
+ "contactUs": "Nous Contacter",
25
+ "privacyPolicy": "Confidentialité",
26
+ "termsOfService": "Conditions",
27
+ "copyright": "Tous droits réservés."
28
+ }
29
+ };
@@ -0,0 +1,29 @@
1
+ export const commonHI: Record<string, any> = {
2
+ "meta": {
3
+ "homeTitle": "होम",
4
+ "homeDescription": "Emrius iOS और Android के लिए मुफ्त फिटनेस ऐप है।",
5
+ "termsTitle": "सेवा की शर्तें",
6
+ "termsDescription": "Emrius की शर्तें पढ़ें।",
7
+ "privacyTitle": "गोपनीयता नीति",
8
+ "privacyDescription": "Emrius आपकी जानकारी कैसे सुरक्षित करता है।",
9
+ "supportTitle": "सहायता और मदद केंद्र",
10
+ "supportDescription": "Emrius ऐप सहायता।"
11
+ },
12
+ "nav": {
13
+ "home": "होम",
14
+ "features": "सुविधाएं",
15
+ "support": "सहायता",
16
+ "download": "डाउनलोड"
17
+ },
18
+ "footer": {
19
+ "tagline": "अपनी फिटनेस यात्रा बदलें",
20
+ "product": "उत्पाद",
21
+ "support": "सहायता",
22
+ "legal": "कानूनी",
23
+ "helpCenter": "मदद केंद्र",
24
+ "contactUs": "संपर्क करें",
25
+ "privacyPolicy": "गोपनीयता",
26
+ "termsOfService": "शर्तें",
27
+ "copyright": "सर्वाधिकार सुरक्षित।"
28
+ }
29
+ };
@@ -0,0 +1,29 @@
1
+ export const commonID: Record<string, any> = {
2
+ "meta": {
3
+ "homeTitle": "Beranda",
4
+ "homeDescription": "Emrius adalah aplikasi fitness gratis untuk iOS dan Android.",
5
+ "termsTitle": "Ketentuan Layanan",
6
+ "termsDescription": "Baca Ketentuan Emrius.",
7
+ "privacyTitle": "Kebijakan Privasi",
8
+ "privacyDescription": "Cara Emrius melindungi informasi Anda.",
9
+ "supportTitle": "Dukungan & Pusat Bantuan",
10
+ "supportDescription": "Bantuan dengan Emrius."
11
+ },
12
+ "nav": {
13
+ "home": "Beranda",
14
+ "features": "Fitur",
15
+ "support": "Dukungan",
16
+ "download": "Unduh"
17
+ },
18
+ "footer": {
19
+ "tagline": "Transformasi perjalanan fitness Anda",
20
+ "product": "Produk",
21
+ "support": "Dukungan",
22
+ "legal": "Legal",
23
+ "helpCenter": "Pusat Bantuan",
24
+ "contactUs": "Hubungi Kami",
25
+ "privacyPolicy": "Privasi",
26
+ "termsOfService": "Ketentuan",
27
+ "copyright": "Hak cipta dilindungi."
28
+ }
29
+ };
@@ -0,0 +1,29 @@
1
+ export const commonIT: Record<string, any> = {
2
+ "meta": {
3
+ "homeTitle": "Home",
4
+ "homeDescription": "Emrius è il tuo compagno di fitness completo. Scarica gratis per iOS e Android.",
5
+ "termsTitle": "Termini di Servizio",
6
+ "termsDescription": "Leggi i Termini di Emrius.",
7
+ "privacyTitle": "Informativa sulla Privacy",
8
+ "privacyDescription": "Come Emrius protegge le tue informazioni.",
9
+ "supportTitle": "Supporto e Centro Assistenza",
10
+ "supportDescription": "Aiuto con l'app Emrius."
11
+ },
12
+ "nav": {
13
+ "home": "Home",
14
+ "features": "Funzionalità",
15
+ "support": "Supporto",
16
+ "download": "Scarica"
17
+ },
18
+ "footer": {
19
+ "tagline": "Trasforma il tuo percorso fitness",
20
+ "product": "Prodotto",
21
+ "support": "Supporto",
22
+ "legal": "Legale",
23
+ "helpCenter": "Centro Assistenza",
24
+ "contactUs": "Contattaci",
25
+ "privacyPolicy": "Privacy",
26
+ "termsOfService": "Termini",
27
+ "copyright": "Tutti i diritti riservati."
28
+ }
29
+ };
@@ -0,0 +1,29 @@
1
+ export const commonJA: Record<string, any> = {
2
+ "meta": {
3
+ "homeTitle": "ホーム",
4
+ "homeDescription": "EmriusはiOSとAndroidで無料のフィットネスアプリです。",
5
+ "termsTitle": "利用規約",
6
+ "termsDescription": "Emriusの利用規約をお読みください。",
7
+ "privacyTitle": "プライバシーポリシー",
8
+ "privacyDescription": "Emriusがお客様の情報を保護する方法。",
9
+ "supportTitle": "サポート&ヘルプセンター",
10
+ "supportDescription": "Emriusアプリのヘルプ。"
11
+ },
12
+ "nav": {
13
+ "home": "ホーム",
14
+ "features": "機能",
15
+ "support": "サポート",
16
+ "download": "ダウンロード"
17
+ },
18
+ "footer": {
19
+ "tagline": "フィットネスの旅を変える",
20
+ "product": "製品",
21
+ "support": "サポート",
22
+ "legal": "法的情報",
23
+ "helpCenter": "ヘルプセンター",
24
+ "contactUs": "お問い合わせ",
25
+ "privacyPolicy": "プライバシー",
26
+ "termsOfService": "利用規約",
27
+ "copyright": "全著作権所有。"
28
+ }
29
+ };
@@ -0,0 +1,29 @@
1
+ export const commonKO: Record<string, any> = {
2
+ "meta": {
3
+ "homeTitle": "홈",
4
+ "homeDescription": "Emrius는 iOS와 Android에서 무료 피트니스 앱입니다.",
5
+ "termsTitle": "이용 약관",
6
+ "termsDescription": "Emrius 이용 약관을 읽어주세요.",
7
+ "privacyTitle": "개인정보 처리방침",
8
+ "privacyDescription": "Emrius가 정보를 보호하는 방법.",
9
+ "supportTitle": "지원 및 도움말",
10
+ "supportDescription": "Emrius 앱 도움말."
11
+ },
12
+ "nav": {
13
+ "home": "홈",
14
+ "features": "기능",
15
+ "support": "지원",
16
+ "download": "다운로드"
17
+ },
18
+ "footer": {
19
+ "tagline": "피트니스 여정을 변화시키세요",
20
+ "product": "제품",
21
+ "support": "지원",
22
+ "legal": "법적 정보",
23
+ "helpCenter": "도움말 센터",
24
+ "contactUs": "문의하기",
25
+ "privacyPolicy": "개인정보",
26
+ "termsOfService": "이용 약관",
27
+ "copyright": "모든 권리 보유."
28
+ }
29
+ };
@@ -0,0 +1,29 @@
1
+ export const commonNL: Record<string, any> = {
2
+ "meta": {
3
+ "homeTitle": "Home",
4
+ "homeDescription": "Emrius is een gratis fitness-app voor iOS en Android.",
5
+ "termsTitle": "Servicevoorwaarden",
6
+ "termsDescription": "Lees de voorwaarden van Emrius.",
7
+ "privacyTitle": "Privacybeleid",
8
+ "privacyDescription": "Hoe Emrius je gegevens beschermt.",
9
+ "supportTitle": "Ondersteuning & Helpcentrum",
10
+ "supportDescription": "Hulp met Emrius."
11
+ },
12
+ "nav": {
13
+ "home": "Home",
14
+ "features": "Functies",
15
+ "support": "Ondersteuning",
16
+ "download": "Download"
17
+ },
18
+ "footer": {
19
+ "tagline": "Transformeer je fitness reis",
20
+ "product": "Product",
21
+ "support": "Ondersteuning",
22
+ "legal": "Juridisch",
23
+ "helpCenter": "Helpcentrum",
24
+ "contactUs": "Contact",
25
+ "privacyPolicy": "Privacy",
26
+ "termsOfService": "Voorwaarden",
27
+ "copyright": "Alle rechten voorbehouden."
28
+ }
29
+ };
@@ -0,0 +1,29 @@
1
+ export const commonPL: Record<string, any> = {
2
+ "meta": {
3
+ "homeTitle": "Strona główna",
4
+ "homeDescription": "Emrius to bezpłatna aplikacja fitness na iOS i Android.",
5
+ "termsTitle": "Warunki korzystania",
6
+ "termsDescription": "Przeczytaj warunki Emrius.",
7
+ "privacyTitle": "Polityka prywatności",
8
+ "privacyDescription": "Jak Emrius chroni Twoje dane.",
9
+ "supportTitle": "Wsparcie i Centrum pomocy",
10
+ "supportDescription": "Pomoc z aplikacją Emrius."
11
+ },
12
+ "nav": {
13
+ "home": "Start",
14
+ "features": "Funkcje",
15
+ "support": "Wsparcie",
16
+ "download": "Pobierz"
17
+ },
18
+ "footer": {
19
+ "tagline": "Przemień swoją podróż fitness",
20
+ "product": "Produkt",
21
+ "support": "Wsparcie",
22
+ "legal": "Prawne",
23
+ "helpCenter": "Centrum pomocy",
24
+ "contactUs": "Kontakt",
25
+ "privacyPolicy": "Prywatność",
26
+ "termsOfService": "Warunki",
27
+ "copyright": "Wszelkie prawa zastrzeżone."
28
+ }
29
+ };
@@ -0,0 +1,29 @@
1
+ export const commonPT: Record<string, any> = {
2
+ "meta": {
3
+ "homeTitle": "Início",
4
+ "homeDescription": "Emrius é seu companheiro de fitness completo. Baixe grátis para iOS e Android.",
5
+ "termsTitle": "Termos de Serviço",
6
+ "termsDescription": "Leia os Termos do Emrius.",
7
+ "privacyTitle": "Política de Privacidade",
8
+ "privacyDescription": "Como o Emrius protege suas informações.",
9
+ "supportTitle": "Suporte e Central de Ajuda",
10
+ "supportDescription": "Ajuda com o Emrius."
11
+ },
12
+ "nav": {
13
+ "home": "Início",
14
+ "features": "Recursos",
15
+ "support": "Suporte",
16
+ "download": "Baixar"
17
+ },
18
+ "footer": {
19
+ "tagline": "Transforme sua jornada de fitness",
20
+ "product": "Produto",
21
+ "support": "Suporte",
22
+ "legal": "Legal",
23
+ "helpCenter": "Central de Ajuda",
24
+ "contactUs": "Contato",
25
+ "privacyPolicy": "Privacidade",
26
+ "termsOfService": "Termos",
27
+ "copyright": "Todos os direitos reservados."
28
+ }
29
+ };
@@ -0,0 +1,29 @@
1
+ export const commonRU: Record<string, any> = {
2
+ "meta": {
3
+ "homeTitle": "Главная",
4
+ "homeDescription": "Emrius — бесплатное приложение для iOS и Android.",
5
+ "termsTitle": "Условия использования",
6
+ "termsDescription": "Прочитайте условия Emrius.",
7
+ "privacyTitle": "Политика конфиденциальности",
8
+ "privacyDescription": "Как Emrius защищает вашу информацию.",
9
+ "supportTitle": "Поддержка и Центр помощи",
10
+ "supportDescription": "Помощь с Emrius."
11
+ },
12
+ "nav": {
13
+ "home": "Главная",
14
+ "features": "Функции",
15
+ "support": "Поддержка",
16
+ "download": "Скачать"
17
+ },
18
+ "footer": {
19
+ "tagline": "Преобразите свой фитнес-путь",
20
+ "product": "Продукт",
21
+ "support": "Поддержка",
22
+ "legal": "Правовая информация",
23
+ "helpCenter": "Центр помощи",
24
+ "contactUs": "Связаться",
25
+ "privacyPolicy": "Конфиденциальность",
26
+ "termsOfService": "Условия",
27
+ "copyright": "Все права защищены."
28
+ }
29
+ };
@@ -0,0 +1,29 @@
1
+ export const commonSV: Record<string, any> = {
2
+ "meta": {
3
+ "homeTitle": "Hem",
4
+ "homeDescription": "Emrius är en gratis fitnessapp för iOS och Android.",
5
+ "termsTitle": "Användarvillkor",
6
+ "termsDescription": "Läs Emrius användarvillkor.",
7
+ "privacyTitle": "Integritetspolicy",
8
+ "privacyDescription": "Hur Emrius skyddar din information.",
9
+ "supportTitle": "Support & Hjälpcenter",
10
+ "supportDescription": "Hjälp med Emrius-appen."
11
+ },
12
+ "nav": {
13
+ "home": "Hem",
14
+ "features": "Funktioner",
15
+ "support": "Support",
16
+ "download": "Ladda ner"
17
+ },
18
+ "footer": {
19
+ "tagline": "Förvandla din fitnessresa",
20
+ "product": "Produkt",
21
+ "support": "Support",
22
+ "legal": "Juridiskt",
23
+ "helpCenter": "Hjälpcenter",
24
+ "contactUs": "Kontakta oss",
25
+ "privacyPolicy": "Integritet",
26
+ "termsOfService": "Villkor",
27
+ "copyright": "Alla rättigheter förbehållna."
28
+ }
29
+ };
@@ -0,0 +1,29 @@
1
+ export const commonTH: Record<string, any> = {
2
+ "meta": {
3
+ "homeTitle": "หน้าหลัก",
4
+ "homeDescription": "Emrius แอปฟิตเนสฟรีสำหรับ iOS และ Android",
5
+ "termsTitle": "ข้อกำหนดการใช้งาน",
6
+ "termsDescription": "อ่านข้อกำหนดของ Emrius",
7
+ "privacyTitle": "นโยบายความเป็นส่วนตัว",
8
+ "privacyDescription": "Emrius ปกป้องข้อมูลของคุณ",
9
+ "supportTitle": "การสนับสนุน",
10
+ "supportDescription": "ความช่วยเหลือกับ Emrius"
11
+ },
12
+ "nav": {
13
+ "home": "หน้าหลัก",
14
+ "features": "คุณสมบัติ",
15
+ "support": "สนับสนุน",
16
+ "download": "ดาวน์โหลด"
17
+ },
18
+ "footer": {
19
+ "tagline": "เปลี่ยนการเดินทางฟิตเนสของคุณ",
20
+ "product": "ผลิตภัณฑ์",
21
+ "support": "สนับสนุน",
22
+ "legal": "กฎหมาย",
23
+ "helpCenter": "ศูนย์ช่วยเหลือ",
24
+ "contactUs": "ติดต่อเรา",
25
+ "privacyPolicy": "ความเป็นส่วนตัว",
26
+ "termsOfService": "ข้อกำหนด",
27
+ "copyright": "สงวนลิขสิทธิ์"
28
+ }
29
+ };