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,85 @@
1
+ export const homeZH: Record<string, any> = {
2
+ "hero": {
3
+ "badge": "您的健身伙伴",
4
+ "title1": "改变您的身体。",
5
+ "title2": "提升您的生活。",
6
+ "subtitle": "个性化锻炼计划、挑战和支持性社区 — 尽在一个应用中。",
7
+ "downloadNow": "立即下载",
8
+ "exploreFeatures": "探索功能",
9
+ "workoutPlans": "锻炼计划",
10
+ "exercises": "练习"
11
+ },
12
+ "features": {
13
+ "badge": "功能",
14
+ "title": "成功所需的一切",
15
+ "subtitle": "帮助您实现健身目标的强大工具。",
16
+ "workouts": {
17
+ "title": "锻炼计划",
18
+ "description": "浏览高清视频锻炼计划。",
19
+ "list": [
20
+ "200+专业计划",
21
+ "视频教程",
22
+ "可自定义"
23
+ ]
24
+ },
25
+ "challenges": {
26
+ "title": "挑战",
27
+ "description": "参加健身挑战。",
28
+ "list": [
29
+ "每周挑战",
30
+ "排行榜",
31
+ "赢取奖励"
32
+ ]
33
+ },
34
+ "community": {
35
+ "title": "社交功能",
36
+ "description": "与朋友联系。",
37
+ "list": [
38
+ "动态流",
39
+ "进度分享",
40
+ "好友连接"
41
+ ]
42
+ },
43
+ "progress": {
44
+ "title": "进度追踪",
45
+ "description": "监控您的统计数据。",
46
+ "list": [
47
+ "可视化图表",
48
+ "身体指标",
49
+ "锻炼历史"
50
+ ]
51
+ },
52
+ "badges": {
53
+ "title": "徽章与奖励",
54
+ "description": "获得成就。",
55
+ "list": [
56
+ "成就系统",
57
+ "里程碑奖励",
58
+ "收藏展示"
59
+ ]
60
+ }
61
+ },
62
+ "highlights": {
63
+ "premium": {
64
+ "title": "高级功能",
65
+ "description": "解锁高级计划和独家挑战。"
66
+ },
67
+ "multiLanguage": {
68
+ "title": "多语言支持",
69
+ "description": "提供19种语言。"
70
+ },
71
+ "darkMode": {
72
+ "title": "深色模式",
73
+ "description": "支持深色模式的精美主题。"
74
+ }
75
+ },
76
+ "download": {
77
+ "badge": "获取应用",
78
+ "title": "今天开始您的转变",
79
+ "subtitle": "免费下载Emrius。",
80
+ "appStore": "App Store",
81
+ "googlePlay": "Google Play",
82
+ "getItOn": "从",
83
+ "downloadOn": "从"
84
+ }
85
+ };
@@ -0,0 +1,41 @@
1
+ import { supportEN } from "./en.ts";
2
+ import { supportDE } from "./de.ts";
3
+ import { supportFR } from "./fr.ts";
4
+ import { supportIT } from "./it.ts";
5
+ import { supportJA } from "./ja.ts";
6
+ import { supportKO } from "./ko.ts";
7
+ import { supportTR } from "./tr.ts";
8
+ import { supportZH } from "./zh.ts";
9
+ import { supportES } from "./es.ts";
10
+ import { supportPT } from "./pt.ts";
11
+ import { supportHI } from "./hi.ts";
12
+ import { supportAR } from "./ar.ts";
13
+ import { supportRU } from "./ru.ts";
14
+ import { supportPL } from "./pl.ts";
15
+ import { supportNL } from "./nl.ts";
16
+ import { supportID } from "./id.ts";
17
+ import { supportVI } from "./vi.ts";
18
+ import { supportTH } from "./th.ts";
19
+ import { supportSV } from "./sv.ts";
20
+
21
+ export const supportTranslations: Record<string, any> = {
22
+ "en": supportEN,
23
+ "de": supportDE,
24
+ "fr": supportFR,
25
+ "it": supportIT,
26
+ "ja": supportJA,
27
+ "ko": supportKO,
28
+ "tr": supportTR,
29
+ "zh": supportZH,
30
+ "es": supportES,
31
+ "pt": supportPT,
32
+ "hi": supportHI,
33
+ "ar": supportAR,
34
+ "ru": supportRU,
35
+ "pl": supportPL,
36
+ "nl": supportNL,
37
+ "id": supportID,
38
+ "vi": supportVI,
39
+ "th": supportTH,
40
+ "sv": supportSV,
41
+ };
@@ -0,0 +1,37 @@
1
+ export const supportAR: Record<string, any> = {
2
+ "supportPage": {
3
+ "title": "الدعم ومركز المساعدة",
4
+ "subtitle": "نحن هنا لمساعدتك",
5
+ "faqTitle": "الأسئلة الشائعة",
6
+ "faq": [
7
+ {
8
+ "question": "كيف أبدأ مع Emrius؟",
9
+ "answer": "حمّل وأنشئ حساباً."
10
+ },
11
+ {
12
+ "question": "هل Emrius مجاني؟",
13
+ "answer": "يوجد خطة مجانية."
14
+ },
15
+ {
16
+ "question": "كيف ألغي اشتراكي؟",
17
+ "answer": "من إعدادات جهازك."
18
+ },
19
+ {
20
+ "question": "هل يمكنني الاستخدام بدون اتصال؟",
21
+ "answer": "نعم بعد التحميل."
22
+ },
23
+ {
24
+ "question": "كيف أتتبع تقدمي؟",
25
+ "answer": "في لوحة التحكم."
26
+ }
27
+ ],
28
+ "contactTitle": "اتصل بنا",
29
+ "contactSubtitle": "تواصل مع فريق الدعم.",
30
+ "generalSupport": "الدعم العام",
31
+ "generalSupportDesc": "للأسئلة التقنية",
32
+ "legalInquiries": "الاستفسارات القانونية",
33
+ "legalInquiriesDesc": "للمسائل القانونية",
34
+ "privacyConcerns": "الخصوصية",
35
+ "privacyConcernsDesc": "لأسئلة البيانات"
36
+ }
37
+ };
@@ -0,0 +1,37 @@
1
+ export const supportDE: Record<string, any> = {
2
+ "supportPage": {
3
+ "title": "Support & Hilfe-Center",
4
+ "subtitle": "Wir helfen dir gerne",
5
+ "faqTitle": "Häufig gestellte Fragen",
6
+ "faq": [
7
+ {
8
+ "question": "Wie fange ich mit Emrius an?",
9
+ "answer": "Lade Emrius herunter, erstelle ein Konto und folge dem Einrichtungsprozess."
10
+ },
11
+ {
12
+ "question": "Ist Emrius kostenlos?",
13
+ "answer": "Emrius bietet eine kostenlose Version mit grundlegenden Funktionen."
14
+ },
15
+ {
16
+ "question": "Wie kündige ich mein Abonnement?",
17
+ "answer": "Über die Einstellungen deines Geräts."
18
+ },
19
+ {
20
+ "question": "Kann ich Emrius offline nutzen?",
21
+ "answer": "Ja nach dem Herunterladen."
22
+ },
23
+ {
24
+ "question": "Wie verfolge ich meinen Fortschritt?",
25
+ "answer": "Im Dashboard der App."
26
+ }
27
+ ],
28
+ "contactTitle": "Kontaktiere uns",
29
+ "contactSubtitle": "Wende dich an unser Support-Team.",
30
+ "generalSupport": "Allgemeiner Support",
31
+ "generalSupportDesc": "Für App-bezogene Fragen",
32
+ "legalInquiries": "Rechtliche Anfragen",
33
+ "legalInquiriesDesc": "Für rechtliche Angelegenheiten",
34
+ "privacyConcerns": "Datenschutz",
35
+ "privacyConcernsDesc": "Für datenschutzbezogene Fragen"
36
+ }
37
+ };
@@ -0,0 +1,37 @@
1
+ export const supportEN: Record<string, any> = {
2
+ "supportPage": {
3
+ "title": "Support & Help Center",
4
+ "subtitle": "We're here to help you get the most out of Emrius",
5
+ "faqTitle": "Frequently Asked Questions",
6
+ "faq": [
7
+ {
8
+ "question": "How do I get started with Emrius?",
9
+ "answer": "Download Emrius from the App Store or Google Play, create an account, and follow the onboarding process."
10
+ },
11
+ {
12
+ "question": "Is Emrius free to use?",
13
+ "answer": "Emrius offers a free tier with essential features. Premium subscription unlocks advanced features."
14
+ },
15
+ {
16
+ "question": "How do I cancel my subscription?",
17
+ "answer": "You can cancel your subscription anytime through your device's app store settings."
18
+ },
19
+ {
20
+ "question": "Can I use Emrius offline?",
21
+ "answer": "Yes! Once you've downloaded your workout plans, you can access them offline."
22
+ },
23
+ {
24
+ "question": "How do I track my progress?",
25
+ "answer": "Emrius automatically tracks your workout completion. View your progress in the dashboard."
26
+ }
27
+ ],
28
+ "contactTitle": "Contact Us",
29
+ "contactSubtitle": "Can't find what you're looking for? Reach out to our support team.",
30
+ "generalSupport": "General Support",
31
+ "generalSupportDesc": "For app-related questions and technical issues",
32
+ "legalInquiries": "Legal Inquiries",
33
+ "legalInquiriesDesc": "For terms, agreements, and legal matters",
34
+ "privacyConcerns": "Privacy Concerns",
35
+ "privacyConcernsDesc": "For data and privacy-related questions"
36
+ }
37
+ };
@@ -0,0 +1,37 @@
1
+ export const supportES: Record<string, any> = {
2
+ "supportPage": {
3
+ "title": "Soporte y Centro de Ayuda",
4
+ "subtitle": "Estamos aquí para ayudarte",
5
+ "faqTitle": "Preguntas Frecuentes",
6
+ "faq": [
7
+ {
8
+ "question": "¿Cómo empiezo?",
9
+ "answer": "Descarga y crea una cuenta."
10
+ },
11
+ {
12
+ "question": "¿Es Emrius gratis?",
13
+ "answer": "Hay un plan gratuito."
14
+ },
15
+ {
16
+ "question": "¿Cómo cancelo?",
17
+ "answer": "Desde la configuración del dispositivo."
18
+ },
19
+ {
20
+ "question": "¿Puedo usar sin conexión?",
21
+ "answer": "Sí, después de descargar."
22
+ },
23
+ {
24
+ "question": "¿Cómo sigo mi progreso?",
25
+ "answer": "En el panel de la app."
26
+ }
27
+ ],
28
+ "contactTitle": "Contáctanos",
29
+ "contactSubtitle": "Contacta a nuestro equipo.",
30
+ "generalSupport": "Soporte General",
31
+ "generalSupportDesc": "Para preguntas sobre la app",
32
+ "legalInquiries": "Consultas Legales",
33
+ "legalInquiriesDesc": "Para asuntos legales",
34
+ "privacyConcerns": "Privacidad",
35
+ "privacyConcernsDesc": "Para preguntas sobre datos"
36
+ }
37
+ };
@@ -0,0 +1,37 @@
1
+ export const supportFR: Record<string, any> = {
2
+ "supportPage": {
3
+ "title": "Support & Centre d'Aide",
4
+ "subtitle": "Nous sommes là pour vous aider",
5
+ "faqTitle": "Questions Fréquentes",
6
+ "faq": [
7
+ {
8
+ "question": "Comment commencer avec Emrius ?",
9
+ "answer": "Téléchargez et créez un compte."
10
+ },
11
+ {
12
+ "question": "Emrius est-il gratuit ?",
13
+ "answer": "Il y a une version gratuite."
14
+ },
15
+ {
16
+ "question": "Comment annuler mon abonnement ?",
17
+ "answer": "Via les paramètres de votre appareil."
18
+ },
19
+ {
20
+ "question": "Puis-je utiliser hors ligne ?",
21
+ "answer": "Oui après téléchargement."
22
+ },
23
+ {
24
+ "question": "Comment suivre mes progrès ?",
25
+ "answer": "Dans le tableau de bord."
26
+ }
27
+ ],
28
+ "contactTitle": "Contactez-nous",
29
+ "contactSubtitle": "Contactez notre équipe.",
30
+ "generalSupport": "Support Général",
31
+ "generalSupportDesc": "Questions liées à l'application",
32
+ "legalInquiries": "Questions Juridiques",
33
+ "legalInquiriesDesc": "Questions légales",
34
+ "privacyConcerns": "Confidentialité",
35
+ "privacyConcernsDesc": "Questions sur les données"
36
+ }
37
+ };
@@ -0,0 +1,37 @@
1
+ export const supportHI: Record<string, any> = {
2
+ "supportPage": {
3
+ "title": "सहायता और मदद केंद्र",
4
+ "subtitle": "Emrius से अधिकतम लाभ प्राप्त करें",
5
+ "faqTitle": "अक्सर पूछे जाने वाले प्रश्न",
6
+ "faq": [
7
+ {
8
+ "question": "Emrius के साथ कैसे शुरू करें?",
9
+ "answer": "डाउनलोड करें और खाता बनाएं।"
10
+ },
11
+ {
12
+ "question": "क्या Emrius मुफ्त है?",
13
+ "answer": "मुफ्त योजना उपलब्ध है।"
14
+ },
15
+ {
16
+ "question": "सदस्यता कैसे रद्द करूं?",
17
+ "answer": "डिवाइस सेटिंग्स से।"
18
+ },
19
+ {
20
+ "question": "ऑफ़लाइन उपयोग कर सकते हैं?",
21
+ "answer": "हां, डाउनलोड के बाद।"
22
+ },
23
+ {
24
+ "question": "प्रगति कैसे ट्रैक करूं?",
25
+ "answer": "डैशबोर्ड में देखें।"
26
+ }
27
+ ],
28
+ "contactTitle": "संपर्क करें",
29
+ "contactSubtitle": "सहायता टीम से संपर्क करें।",
30
+ "generalSupport": "सामान्य सहायता",
31
+ "generalSupportDesc": "ऐप संबंधित प्रश्न",
32
+ "legalInquiries": "कानूनी पूछताछ",
33
+ "legalInquiriesDesc": "कानूनी मामले",
34
+ "privacyConcerns": "गोपनीयता",
35
+ "privacyConcernsDesc": "डेटा संबंधित प्रश्न"
36
+ }
37
+ };
@@ -0,0 +1,37 @@
1
+ export const supportID: Record<string, any> = {
2
+ "supportPage": {
3
+ "title": "Dukungan & Pusat Bantuan",
4
+ "subtitle": "Kami di sini untuk membantu",
5
+ "faqTitle": "Pertanyaan yang Sering Diajukan",
6
+ "faq": [
7
+ {
8
+ "question": "Bagaimana memulai?",
9
+ "answer": "Unduh dan buat akun."
10
+ },
11
+ {
12
+ "question": "Apakah Emrius gratis?",
13
+ "answer": "Ada paket gratis."
14
+ },
15
+ {
16
+ "question": "Bagaimana membatalkan?",
17
+ "answer": "Di pengaturan perangkat."
18
+ },
19
+ {
20
+ "question": "Bisakah offline?",
21
+ "answer": "Ya setelah mengunduh."
22
+ },
23
+ {
24
+ "question": "Bagaimana melacak kemajuan?",
25
+ "answer": "Di dashboard."
26
+ }
27
+ ],
28
+ "contactTitle": "Hubungi Kami",
29
+ "contactSubtitle": "Hubungi tim dukungan.",
30
+ "generalSupport": "Dukungan Umum",
31
+ "generalSupportDesc": "Pertanyaan aplikasi",
32
+ "legalInquiries": "Pertanyaan Legal",
33
+ "legalInquiriesDesc": "Masalah hukum",
34
+ "privacyConcerns": "Privasi",
35
+ "privacyConcernsDesc": "Pertanyaan data"
36
+ }
37
+ };
@@ -0,0 +1,37 @@
1
+ export const supportIT: Record<string, any> = {
2
+ "supportPage": {
3
+ "title": "Supporto e Centro Assistenza",
4
+ "subtitle": "Siamo qui per aiutarti",
5
+ "faqTitle": "Domande Frequenti",
6
+ "faq": [
7
+ {
8
+ "question": "Come inizio con Emrius?",
9
+ "answer": "Scarica e crea un account."
10
+ },
11
+ {
12
+ "question": "Emrius è gratuito?",
13
+ "answer": "Sì con piano gratuito."
14
+ },
15
+ {
16
+ "question": "Come annullo il mio abbonamento?",
17
+ "answer": "Dalle impostazioni del dispositivo."
18
+ },
19
+ {
20
+ "question": "Posso usare offline?",
21
+ "answer": "Sì dopo il download."
22
+ },
23
+ {
24
+ "question": "Come monitoro i progressi?",
25
+ "answer": "Nella dashboard."
26
+ }
27
+ ],
28
+ "contactTitle": "Contattaci",
29
+ "contactSubtitle": "Contatta il nostro team.",
30
+ "generalSupport": "Supporto Generale",
31
+ "generalSupportDesc": "Domande sull'app",
32
+ "legalInquiries": "Richieste Legali",
33
+ "legalInquiriesDesc": "Questioni legali",
34
+ "privacyConcerns": "Privacy",
35
+ "privacyConcernsDesc": "Domande sulla privacy"
36
+ }
37
+ };
@@ -0,0 +1,37 @@
1
+ export const supportJA: Record<string, any> = {
2
+ "supportPage": {
3
+ "title": "サポート&ヘルプセンター",
4
+ "subtitle": "Emriusを最大限に活用するお手伝い",
5
+ "faqTitle": "よくある質問",
6
+ "faq": [
7
+ {
8
+ "question": "Emriusの始め方は?",
9
+ "answer": "ダウンロードしてアカウントを作成してください。"
10
+ },
11
+ {
12
+ "question": "Emriusは無料ですか?",
13
+ "answer": "無料プランがあります。"
14
+ },
15
+ {
16
+ "question": "キャンセル方法は?",
17
+ "answer": "デバイスの設定からキャンセルできます。"
18
+ },
19
+ {
20
+ "question": "オフラインで使用できますか?",
21
+ "answer": "はい、ダウンロード後は可能です。"
22
+ },
23
+ {
24
+ "question": "進捗の追跡方法は?",
25
+ "answer": "ダッシュボードで確認できます。"
26
+ }
27
+ ],
28
+ "contactTitle": "お問い合わせ",
29
+ "contactSubtitle": "サポートチームにお問い合わせください。",
30
+ "generalSupport": "一般サポート",
31
+ "generalSupportDesc": "アプリに関する質問",
32
+ "legalInquiries": "法的なお問い合わせ",
33
+ "legalInquiriesDesc": "法的事項について",
34
+ "privacyConcerns": "プライバシー",
35
+ "privacyConcernsDesc": "データに関する質問"
36
+ }
37
+ };
@@ -0,0 +1,37 @@
1
+ export const supportKO: Record<string, any> = {
2
+ "supportPage": {
3
+ "title": "지원 및 도움말",
4
+ "subtitle": "Emrius 활용을 도와드립니다",
5
+ "faqTitle": "자주 묻는 질문",
6
+ "faq": [
7
+ {
8
+ "question": "Emrius를 어떻게 시작하나요?",
9
+ "answer": "다운로드 후 계정을 만드세요."
10
+ },
11
+ {
12
+ "question": "Emrius는 무료인가요?",
13
+ "answer": "무료 버전이 있습니다."
14
+ },
15
+ {
16
+ "question": "구독을 취소하려면?",
17
+ "answer": "앱 스토어 설정에서 취소."
18
+ },
19
+ {
20
+ "question": "오프라인에서 사용 가능?",
21
+ "answer": "다운로드 후 가능합니다."
22
+ },
23
+ {
24
+ "question": "진행 상황 추적 방법?",
25
+ "answer": "대시보드에서 확인."
26
+ }
27
+ ],
28
+ "contactTitle": "문의하기",
29
+ "contactSubtitle": "지원팀에 문의하세요.",
30
+ "generalSupport": "일반 지원",
31
+ "generalSupportDesc": "앱 관련 질문",
32
+ "legalInquiries": "법적 문의",
33
+ "legalInquiriesDesc": "법적 사항",
34
+ "privacyConcerns": "개인정보",
35
+ "privacyConcernsDesc": "데이터 관련 질문"
36
+ }
37
+ };
@@ -0,0 +1,37 @@
1
+ export const supportNL: Record<string, any> = {
2
+ "supportPage": {
3
+ "title": "Ondersteuning & Helpcentrum",
4
+ "subtitle": "We helpen je graag",
5
+ "faqTitle": "Veelgestelde Vragen",
6
+ "faq": [
7
+ {
8
+ "question": "Hoe begin ik?",
9
+ "answer": "Download en maak een account."
10
+ },
11
+ {
12
+ "question": "Is Emrius gratis?",
13
+ "answer": "Er is een gratis plan."
14
+ },
15
+ {
16
+ "question": "Hoe annuleer ik?",
17
+ "answer": "In de apparaatinstellingen."
18
+ },
19
+ {
20
+ "question": "Kan ik offline gebruiken?",
21
+ "answer": "Ja, na het downloaden."
22
+ },
23
+ {
24
+ "question": "Hoe volg ik voortgang?",
25
+ "answer": "In het dashboard."
26
+ }
27
+ ],
28
+ "contactTitle": "Neem Contact Op",
29
+ "contactSubtitle": "Neem contact op.",
30
+ "generalSupport": "Algemene Ondersteuning",
31
+ "generalSupportDesc": "App-vragen",
32
+ "legalInquiries": "Juridische Vragen",
33
+ "legalInquiriesDesc": "Juridische zaken",
34
+ "privacyConcerns": "Privacy",
35
+ "privacyConcernsDesc": "Datavragen"
36
+ }
37
+ };
@@ -0,0 +1,37 @@
1
+ export const supportPL: Record<string, any> = {
2
+ "supportPage": {
3
+ "title": "Wsparcie i Centrum Pomocy",
4
+ "subtitle": "Jesteśmy tu, aby pomóc",
5
+ "faqTitle": "Często Zadawane Pytania",
6
+ "faq": [
7
+ {
8
+ "question": "Jak zacząć?",
9
+ "answer": "Pobierz i utwórz konto."
10
+ },
11
+ {
12
+ "question": "Czy Emrius jest darmowy?",
13
+ "answer": "Jest darmowy plan."
14
+ },
15
+ {
16
+ "question": "Jak anulować?",
17
+ "answer": "W ustawieniach urządzenia."
18
+ },
19
+ {
20
+ "question": "Czy mogę używać offline?",
21
+ "answer": "Tak, po pobraniu."
22
+ },
23
+ {
24
+ "question": "Jak śledzić postępy?",
25
+ "answer": "W panelu aplikacji."
26
+ }
27
+ ],
28
+ "contactTitle": "Skontaktuj się",
29
+ "contactSubtitle": "Skontaktuj się z wsparciem.",
30
+ "generalSupport": "Ogólne Wsparcie",
31
+ "generalSupportDesc": "Pytania o aplikację",
32
+ "legalInquiries": "Zapytania Prawne",
33
+ "legalInquiriesDesc": "Kwestie prawne",
34
+ "privacyConcerns": "Prywatność",
35
+ "privacyConcernsDesc": "Pytania o dane"
36
+ }
37
+ };
@@ -0,0 +1,37 @@
1
+ export const supportPT: Record<string, any> = {
2
+ "supportPage": {
3
+ "title": "Suporte e Central de Ajuda",
4
+ "subtitle": "Estamos aqui para ajudar",
5
+ "faqTitle": "Perguntas Frequentes",
6
+ "faq": [
7
+ {
8
+ "question": "Como começo?",
9
+ "answer": "Baixe e crie uma conta."
10
+ },
11
+ {
12
+ "question": "O Emrius é gratuito?",
13
+ "answer": "Há um plano gratuito."
14
+ },
15
+ {
16
+ "question": "Como cancelo?",
17
+ "answer": "Nas configurações do dispositivo."
18
+ },
19
+ {
20
+ "question": "Posso usar offline?",
21
+ "answer": "Sim, após baixar."
22
+ },
23
+ {
24
+ "question": "Como acompanho meu progresso?",
25
+ "answer": "No painel do app."
26
+ }
27
+ ],
28
+ "contactTitle": "Contate-nos",
29
+ "contactSubtitle": "Entre em contato.",
30
+ "generalSupport": "Suporte Geral",
31
+ "generalSupportDesc": "Perguntas sobre o app",
32
+ "legalInquiries": "Consultas Legais",
33
+ "legalInquiriesDesc": "Assuntos legais",
34
+ "privacyConcerns": "Privacidade",
35
+ "privacyConcernsDesc": "Perguntas sobre dados"
36
+ }
37
+ };
@@ -0,0 +1,37 @@
1
+ export const supportRU: Record<string, any> = {
2
+ "supportPage": {
3
+ "title": "Поддержка и Центр Помощи",
4
+ "subtitle": "Мы здесь, чтобы помочь",
5
+ "faqTitle": "Часто Задаваемые Вопросы",
6
+ "faq": [
7
+ {
8
+ "question": "Как начать с Emrius?",
9
+ "answer": "Скачайте и создайте аккаунт."
10
+ },
11
+ {
12
+ "question": "Emrius бесплатный?",
13
+ "answer": "Есть бесплатный план."
14
+ },
15
+ {
16
+ "question": "Как отменить подписку?",
17
+ "answer": "В настройках устройства."
18
+ },
19
+ {
20
+ "question": "Можно использовать офлайн?",
21
+ "answer": "Да, после загрузки."
22
+ },
23
+ {
24
+ "question": "Как отслеживать прогресс?",
25
+ "answer": "В панели управления."
26
+ }
27
+ ],
28
+ "contactTitle": "Связаться с Нами",
29
+ "contactSubtitle": "Свяжитесь с поддержкой.",
30
+ "generalSupport": "Общая Поддержка",
31
+ "generalSupportDesc": "Вопросы о приложении",
32
+ "legalInquiries": "Юридические Вопросы",
33
+ "legalInquiriesDesc": "Юридические вопросы",
34
+ "privacyConcerns": "Конфиденциальность",
35
+ "privacyConcernsDesc": "Вопросы о данных"
36
+ }
37
+ };