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.
- package/dist/cli.js +949 -0
- package/package.json +27 -0
- package/readme.md +0 -0
- package/templates/_base-website/App.tsx +59 -0
- package/templates/_base-website/InitialDataContext.tsx +21 -0
- package/templates/_base-website/_gitignore +5 -0
- package/templates/_base-website/client.tsx +26 -0
- package/templates/_base-website/components/DeepLinkLayout.css +41 -0
- package/templates/_base-website/components/DeepLinkLayout.tsx +39 -0
- package/templates/_base-website/components/DownloadSection.css +60 -0
- package/templates/_base-website/components/DownloadSection.tsx +61 -0
- package/templates/_base-website/components/SiteFeaturesSection.tsx +68 -0
- package/templates/_base-website/components/SiteFooter.tsx +29 -0
- package/templates/_base-website/components/SiteHeroSection.tsx +30 -0
- package/templates/_base-website/components/SiteHighlightsSection.tsx +38 -0
- package/templates/_base-website/components/SiteLanguageSwitcher.tsx +9 -0
- package/templates/_base-website/components/SiteNavigation.tsx +24 -0
- package/templates/_base-website/config.ts +78 -0
- package/templates/_base-website/data/blog/authors.json +18 -0
- package/templates/_base-website/data/blog/categories.json +53 -0
- package/templates/_base-website/data/blog/posts.json +29 -0
- package/templates/_base-website/data/blog/tags.json +86 -0
- package/templates/_base-website/i18n/config.ts +60 -0
- package/templates/_base-website/i18n/sections/blog/_index.ts +41 -0
- package/templates/_base-website/i18n/sections/blog/ar.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/de.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/en.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/es.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/fr.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/hi.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/id.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/it.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/ja.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/ko.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/nl.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/pl.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/pt.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/ru.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/sv.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/th.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/tr.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/vi.ts +24 -0
- package/templates/_base-website/i18n/sections/blog/zh.ts +24 -0
- package/templates/_base-website/i18n/sections/common/_index.ts +41 -0
- package/templates/_base-website/i18n/sections/common/ar.ts +29 -0
- package/templates/_base-website/i18n/sections/common/de.ts +29 -0
- package/templates/_base-website/i18n/sections/common/en.ts +29 -0
- package/templates/_base-website/i18n/sections/common/es.ts +29 -0
- package/templates/_base-website/i18n/sections/common/fr.ts +29 -0
- package/templates/_base-website/i18n/sections/common/hi.ts +29 -0
- package/templates/_base-website/i18n/sections/common/id.ts +29 -0
- package/templates/_base-website/i18n/sections/common/it.ts +29 -0
- package/templates/_base-website/i18n/sections/common/ja.ts +29 -0
- package/templates/_base-website/i18n/sections/common/ko.ts +29 -0
- package/templates/_base-website/i18n/sections/common/nl.ts +29 -0
- package/templates/_base-website/i18n/sections/common/pl.ts +29 -0
- package/templates/_base-website/i18n/sections/common/pt.ts +29 -0
- package/templates/_base-website/i18n/sections/common/ru.ts +29 -0
- package/templates/_base-website/i18n/sections/common/sv.ts +29 -0
- package/templates/_base-website/i18n/sections/common/th.ts +29 -0
- package/templates/_base-website/i18n/sections/common/tr.ts +29 -0
- package/templates/_base-website/i18n/sections/common/vi.ts +29 -0
- package/templates/_base-website/i18n/sections/common/zh.ts +29 -0
- package/templates/_base-website/i18n/sections/deepLink/_index.ts +41 -0
- package/templates/_base-website/i18n/sections/deepLink/ar.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/de.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/en.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/es.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/fr.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/hi.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/id.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/it.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/ja.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/ko.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/nl.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/pl.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/pt.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/ru.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/sv.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/th.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/tr.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/vi.ts +14 -0
- package/templates/_base-website/i18n/sections/deepLink/zh.ts +14 -0
- package/templates/_base-website/i18n/sections/home/_index.ts +41 -0
- package/templates/_base-website/i18n/sections/home/ar.ts +85 -0
- package/templates/_base-website/i18n/sections/home/de.ts +85 -0
- package/templates/_base-website/i18n/sections/home/en.ts +85 -0
- package/templates/_base-website/i18n/sections/home/es.ts +85 -0
- package/templates/_base-website/i18n/sections/home/fr.ts +85 -0
- package/templates/_base-website/i18n/sections/home/hi.ts +85 -0
- package/templates/_base-website/i18n/sections/home/id.ts +85 -0
- package/templates/_base-website/i18n/sections/home/it.ts +85 -0
- package/templates/_base-website/i18n/sections/home/ja.ts +85 -0
- package/templates/_base-website/i18n/sections/home/ko.ts +85 -0
- package/templates/_base-website/i18n/sections/home/nl.ts +85 -0
- package/templates/_base-website/i18n/sections/home/pl.ts +85 -0
- package/templates/_base-website/i18n/sections/home/pt.ts +85 -0
- package/templates/_base-website/i18n/sections/home/ru.ts +85 -0
- package/templates/_base-website/i18n/sections/home/sv.ts +85 -0
- package/templates/_base-website/i18n/sections/home/th.ts +85 -0
- package/templates/_base-website/i18n/sections/home/tr.ts +85 -0
- package/templates/_base-website/i18n/sections/home/vi.ts +85 -0
- package/templates/_base-website/i18n/sections/home/zh.ts +85 -0
- package/templates/_base-website/i18n/sections/support/_index.ts +41 -0
- package/templates/_base-website/i18n/sections/support/ar.ts +37 -0
- package/templates/_base-website/i18n/sections/support/de.ts +37 -0
- package/templates/_base-website/i18n/sections/support/en.ts +37 -0
- package/templates/_base-website/i18n/sections/support/es.ts +37 -0
- package/templates/_base-website/i18n/sections/support/fr.ts +37 -0
- package/templates/_base-website/i18n/sections/support/hi.ts +37 -0
- package/templates/_base-website/i18n/sections/support/id.ts +37 -0
- package/templates/_base-website/i18n/sections/support/it.ts +37 -0
- package/templates/_base-website/i18n/sections/support/ja.ts +37 -0
- package/templates/_base-website/i18n/sections/support/ko.ts +37 -0
- package/templates/_base-website/i18n/sections/support/nl.ts +37 -0
- package/templates/_base-website/i18n/sections/support/pl.ts +37 -0
- package/templates/_base-website/i18n/sections/support/pt.ts +37 -0
- package/templates/_base-website/i18n/sections/support/ru.ts +37 -0
- package/templates/_base-website/i18n/sections/support/sv.ts +37 -0
- package/templates/_base-website/i18n/sections/support/th.ts +37 -0
- package/templates/_base-website/i18n/sections/support/tr.ts +37 -0
- package/templates/_base-website/i18n/sections/support/vi.ts +37 -0
- package/templates/_base-website/i18n/sections/support/zh.ts +37 -0
- package/templates/_base-website/i18n/translations.ts +25 -0
- package/templates/_base-website/index.ts +460 -0
- package/templates/_base-website/pages/404.tsx +35 -0
- package/templates/_base-website/pages/blog/author.tsx +97 -0
- package/templates/_base-website/pages/blog/category.tsx +89 -0
- package/templates/_base-website/pages/blog/index.tsx +81 -0
- package/templates/_base-website/pages/blog/post.tsx +110 -0
- package/templates/_base-website/pages/blog/tag.tsx +86 -0
- package/templates/_base-website/pages/custom-pages/example.tsx +54 -0
- package/templates/_base-website/pages/index.tsx +29 -0
- package/templates/_base-website/pages/privacy.tsx +45 -0
- package/templates/_base-website/pages/support.tsx +154 -0
- package/templates/_base-website/pages/terms.tsx +68 -0
- package/templates/_base-website/public/images/16.png +0 -0
- package/templates/_base-website/public/images/apple-touch-icon.png +0 -0
- package/templates/_base-website/public/images/favicon-32x32.png +0 -0
- package/templates/_base-website/public/images/favicon.png +0 -0
- package/templates/_base-website/public/images/logo_dark.svg +6 -0
- package/templates/_base-website/public/images/logo_light.svg +6 -0
- package/templates/_base-website/public/images/og-image.png +0 -0
- package/templates/_base-website/public/images/screenshots/ar_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/de_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/en_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/es_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/fr_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/hi_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/id_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/it_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/ja_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/ko_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/nl_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/pl_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/pt_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/ru_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/sv_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/th_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/tr_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/vi_dashboard.jpg +0 -0
- package/templates/_base-website/public/images/screenshots/zh_dashboard.jpg +0 -0
- package/templates/_base-website/rothzerg.template.json +63 -0
- package/templates/_base-website/styles/404.css +32 -0
- package/templates/_base-website/styles/_app.css +131 -0
- package/templates/_base-website/styles/_shared.css +194 -0
- package/templates/_base-website/styles/index.css +1 -0
- package/templates/_base-website/styles/privacy.css +1 -0
- package/templates/_base-website/styles/support.css +148 -0
- package/templates/_base-website/styles/terms.css +22 -0
- package/templates/mobile-app/_gitignore +46 -0
- package/templates/mobile-app/analysis_options.yaml +28 -0
- package/templates/mobile-app/android/app/build.gradle.kts +56 -0
- package/templates/mobile-app/android/app/google-services.json +29 -0
- package/templates/mobile-app/android/app/src/debug/AndroidManifest.xml +7 -0
- package/templates/mobile-app/android/app/src/main/AndroidManifest.xml +54 -0
- package/templates/mobile-app/android/app/src/main/kotlin/com/example/{{projectNameSnake}}/MainActivity.kt +5 -0
- package/templates/mobile-app/android/app/src/main/res/drawable/launch_background.xml +12 -0
- package/templates/mobile-app/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
- package/templates/mobile-app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/templates/mobile-app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/templates/mobile-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/templates/mobile-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/templates/mobile-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/templates/mobile-app/android/app/src/main/res/values/styles.xml +18 -0
- package/templates/mobile-app/android/app/src/main/res/values-night/styles.xml +18 -0
- package/templates/mobile-app/android/app/src/profile/AndroidManifest.xml +7 -0
- package/templates/mobile-app/android/build.gradle.kts +24 -0
- package/templates/mobile-app/android/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/templates/mobile-app/android/gradle.properties +2 -0
- package/templates/mobile-app/android/settings.gradle.kts +31 -0
- package/templates/mobile-app/assets/icons/logo.png +0 -0
- package/templates/mobile-app/assets/icons/logo_dark.svg +5 -0
- package/templates/mobile-app/assets/icons/logo_light.svg +5 -0
- package/templates/mobile-app/assets/lottie/tick.json +1 -0
- package/templates/mobile-app/devtools_options.yaml +3 -0
- package/templates/mobile-app/ios/Flutter/AppFrameworkInfo.plist +26 -0
- package/templates/mobile-app/ios/Flutter/Debug.xcconfig +2 -0
- package/templates/mobile-app/ios/Flutter/Release.xcconfig +2 -0
- package/templates/mobile-app/ios/Podfile +46 -0
- package/templates/mobile-app/ios/Podfile.lock +1807 -0
- package/templates/mobile-app/ios/Runner/AppDelegate.swift +16 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
- package/templates/mobile-app/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
- package/templates/mobile-app/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
- package/templates/mobile-app/ios/Runner/Base.lproj/Main.storyboard +26 -0
- package/templates/mobile-app/ios/Runner/GoogleService-Info.plist +30 -0
- package/templates/mobile-app/ios/Runner/Info.plist +70 -0
- package/templates/mobile-app/ios/Runner/Runner-Bridging-Header.h +1 -0
- package/templates/mobile-app/ios/Runner.xcodeproj/project.pbxproj +772 -0
- package/templates/mobile-app/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/templates/mobile-app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/templates/mobile-app/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/templates/mobile-app/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +101 -0
- package/templates/mobile-app/ios/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/templates/mobile-app/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/templates/mobile-app/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/templates/mobile-app/ios/RunnerTests/RunnerTests.swift +12 -0
- package/templates/mobile-app/l10n.yaml +5 -0
- package/templates/mobile-app/lib/core/config/app_config.dart +76 -0
- package/templates/mobile-app/lib/core/constants/app_colors.dart +13 -0
- package/templates/mobile-app/lib/core/constants/app_constants.dart +123 -0
- package/templates/mobile-app/lib/core/constants/countries.dart +199 -0
- package/templates/mobile-app/lib/core/constants/keys.dart +46 -0
- package/templates/mobile-app/lib/core/constants/languages.dart +51 -0
- package/templates/mobile-app/lib/core/services/admin_service.dart +271 -0
- package/templates/mobile-app/lib/core/services/analytics_service.dart +296 -0
- package/templates/mobile-app/lib/core/services/auth_service.dart +185 -0
- package/templates/mobile-app/lib/core/services/device_service.dart +228 -0
- package/templates/mobile-app/lib/core/services/firebase_service.dart +490 -0
- package/templates/mobile-app/lib/core/services/in_app_messaging_service.dart +166 -0
- package/templates/mobile-app/lib/core/services/logging_service.dart +451 -0
- package/templates/mobile-app/lib/core/services/messaging_service.dart +460 -0
- package/templates/mobile-app/lib/core/services/remote_config_service.dart +167 -0
- package/templates/mobile-app/lib/core/services/revenue_cat_service.dart +364 -0
- package/templates/mobile-app/lib/core/services/storage_service.dart +313 -0
- package/templates/mobile-app/lib/core/theme/dark_theme.dart +295 -0
- package/templates/mobile-app/lib/core/theme/light_theme.dart +296 -0
- package/templates/mobile-app/lib/core/utils/formatters.dart +236 -0
- package/templates/mobile-app/lib/core/utils/image_picker_helper.dart +78 -0
- package/templates/mobile-app/lib/core/utils/validators.dart +292 -0
- package/templates/mobile-app/lib/firebase_options.dart +19 -0
- package/templates/mobile-app/lib/l10n/app_en.arb +1371 -0
- package/templates/mobile-app/lib/l10n/app_localizations.dart +2042 -0
- package/templates/mobile-app/lib/l10n/app_localizations_en.dart +1033 -0
- package/templates/mobile-app/lib/main.dart +152 -0
- package/templates/mobile-app/lib/models/device_model.dart +90 -0
- package/templates/mobile-app/lib/models/news_banner.dart +53 -0
- package/templates/mobile-app/lib/models/user_model.dart +120 -0
- package/templates/mobile-app/lib/providers/admin_provider.dart +67 -0
- package/templates/mobile-app/lib/providers/auth_provider.dart +328 -0
- package/templates/mobile-app/lib/providers/remote_config_provider.dart +81 -0
- package/templates/mobile-app/lib/providers/subscription_provider.dart +67 -0
- package/templates/mobile-app/lib/providers/theme_provider.dart +51 -0
- package/templates/mobile-app/lib/screens/admin/admin_panel_screen.dart +436 -0
- package/templates/mobile-app/lib/screens/admin/admin_panel_user_details_screen.dart +942 -0
- package/templates/mobile-app/lib/screens/admin/admin_panel_users_screen.dart +344 -0
- package/templates/mobile-app/lib/screens/auth/auth_home_screen.dart +266 -0
- package/templates/mobile-app/lib/screens/auth/forgot_password_screen.dart +214 -0
- package/templates/mobile-app/lib/screens/auth/login_screen.dart +312 -0
- package/templates/mobile-app/lib/screens/auth/profile_setup_screen.dart +157 -0
- package/templates/mobile-app/lib/screens/auth/register_screen.dart +288 -0
- package/templates/mobile-app/lib/screens/developer/developer_panel_screen.dart +436 -0
- package/templates/mobile-app/lib/screens/developer/remote_config_screen.dart +315 -0
- package/templates/mobile-app/lib/screens/developer/remote_config_test_screen.dart +461 -0
- package/templates/mobile-app/lib/screens/home/home_screen.dart +270 -0
- package/templates/mobile-app/lib/screens/legal/privacy_policy_screen.dart +63 -0
- package/templates/mobile-app/lib/screens/legal/terms_screen.dart +82 -0
- package/templates/mobile-app/lib/screens/main_navigation_screen.dart +85 -0
- package/templates/mobile-app/lib/screens/premium/subscription_screen.dart +516 -0
- package/templates/mobile-app/lib/screens/profile/edit_profile_screen.dart +246 -0
- package/templates/mobile-app/lib/screens/settings/about_app_screen.dart +200 -0
- package/templates/mobile-app/lib/screens/settings/cache_manager_screen.dart +400 -0
- package/templates/mobile-app/lib/screens/settings/change_password_screen.dart +269 -0
- package/templates/mobile-app/lib/screens/settings/delete_account_screen.dart +261 -0
- package/templates/mobile-app/lib/screens/settings/settings_screen.dart +400 -0
- package/templates/mobile-app/lib/screens/splash/splash_screen.dart +125 -0
- package/templates/mobile-app/lib/widgets/app_button.dart +255 -0
- package/templates/mobile-app/lib/widgets/app_drawer.dart +207 -0
- package/templates/mobile-app/lib/widgets/bottom_sheet_selector.dart +79 -0
- package/templates/mobile-app/lib/widgets/button_banner.dart +177 -0
- package/templates/mobile-app/lib/widgets/country_picker.dart +169 -0
- package/templates/mobile-app/lib/widgets/custom_app_bar.dart +30 -0
- package/templates/mobile-app/lib/widgets/email_verification_banner.dart +163 -0
- package/templates/mobile-app/lib/widgets/empty_screen.dart +42 -0
- package/templates/mobile-app/lib/widgets/language_picker.dart +145 -0
- package/templates/mobile-app/lib/widgets/news_banner_widget.dart +264 -0
- package/templates/mobile-app/lib/widgets/remote_config/remote_config_widgets.dart +294 -0
- package/templates/mobile-app/lib/widgets/section_header.dart +23 -0
- package/templates/mobile-app/lib/widgets/success_overlay.dart +117 -0
- package/templates/mobile-app/lib/widgets/top_notification.dart +263 -0
- package/templates/mobile-app/lib/widgets/user_avatar_picker.dart +58 -0
- package/templates/mobile-app/pubspec.yaml +97 -0
- package/templates/mobile-app/rothzerg.template.json +43 -0
- package/templates/web-app/_gitignore +4 -0
- package/templates/web-app/index.html +12 -0
- package/templates/web-app/package.json +23 -0
- package/templates/web-app/rothzerg.template.json +41 -0
- package/templates/web-app/src/App.css +6 -0
- package/templates/web-app/src/App.tsx +12 -0
- package/templates/web-app/src/index.css +14 -0
- package/templates/web-app/src/main.tsx +10 -0
- package/templates/web-app/tsconfig.app.json +20 -0
- package/templates/web-app/tsconfig.json +7 -0
- package/templates/web-app/tsconfig.node.json +18 -0
- package/templates/web-app/vite.config.ts +6 -0
- package/templates/website-blog/overrides/config.ts +76 -0
- package/templates/website-blog/overrides/pages/index.tsx +63 -0
- package/templates/website-blog/rothzerg.template.json +29 -0
- package/templates/website-business/overrides/App.tsx +49 -0
- package/templates/website-business/overrides/components/SiteHeroSection.tsx +33 -0
- package/templates/website-business/overrides/config.ts +76 -0
- package/templates/website-business/overrides/pages/about.tsx +50 -0
- package/templates/website-business/overrides/pages/contact.tsx +61 -0
- package/templates/website-business/overrides/pages/index.tsx +37 -0
- package/templates/website-business/overrides/pages/services.tsx +70 -0
- package/templates/website-business/rothzerg.template.json +18 -0
- package/templates/website-mobile/overrides/App.tsx +62 -0
- package/templates/website-mobile/overrides/components/SiteHeroSection.tsx +18 -0
- package/templates/website-mobile/overrides/config.ts +76 -0
- package/templates/website-mobile/overrides/pages/index.tsx +34 -0
- package/templates/website-mobile/rothzerg.template.json +64 -0
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
export const homeNL: Record<string, any> = {
|
|
2
|
+
"hero": {
|
|
3
|
+
"badge": "Je Fitness Partner",
|
|
4
|
+
"title1": "Transformeer Je Lichaam.",
|
|
5
|
+
"title2": "Verhef Je Leven.",
|
|
6
|
+
"subtitle": "Persoonlijke trainingsplannen, uitdagingen en ondersteunende community.",
|
|
7
|
+
"downloadNow": "Download Nu",
|
|
8
|
+
"exploreFeatures": "Ontdek Functies",
|
|
9
|
+
"workoutPlans": "Trainingsplannen",
|
|
10
|
+
"exercises": "Oefeningen"
|
|
11
|
+
},
|
|
12
|
+
"features": {
|
|
13
|
+
"badge": "Functies",
|
|
14
|
+
"title": "Alles Wat Je Nodig Hebt",
|
|
15
|
+
"subtitle": "Krachtige tools voor je doelen.",
|
|
16
|
+
"workouts": {
|
|
17
|
+
"title": "Trainingsplannen",
|
|
18
|
+
"description": "Plannen met HD video.",
|
|
19
|
+
"list": [
|
|
20
|
+
"200+ plannen",
|
|
21
|
+
"Tutorials",
|
|
22
|
+
"Aanpasbaar"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
"challenges": {
|
|
26
|
+
"title": "Uitdagingen",
|
|
27
|
+
"description": "Neem deel aan uitdagingen.",
|
|
28
|
+
"list": [
|
|
29
|
+
"Wekelijks",
|
|
30
|
+
"Ranglijsten",
|
|
31
|
+
"Beloningen"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
"community": {
|
|
35
|
+
"title": "Sociale Functies",
|
|
36
|
+
"description": "Verbind met vrienden.",
|
|
37
|
+
"list": [
|
|
38
|
+
"Activiteiten",
|
|
39
|
+
"Voortgang",
|
|
40
|
+
"Verbindingen"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"progress": {
|
|
44
|
+
"title": "Voortgang",
|
|
45
|
+
"description": "Statistieken bijhouden.",
|
|
46
|
+
"list": [
|
|
47
|
+
"Grafieken",
|
|
48
|
+
"Metrieken",
|
|
49
|
+
"Geschiedenis"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"badges": {
|
|
53
|
+
"title": "Badges & Beloningen",
|
|
54
|
+
"description": "Prestaties verdienen.",
|
|
55
|
+
"list": [
|
|
56
|
+
"Prestaties",
|
|
57
|
+
"Beloningen",
|
|
58
|
+
"Collectie"
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"highlights": {
|
|
63
|
+
"premium": {
|
|
64
|
+
"title": "Premium Functies",
|
|
65
|
+
"description": "Geavanceerde plannen en exclusieve uitdagingen."
|
|
66
|
+
},
|
|
67
|
+
"multiLanguage": {
|
|
68
|
+
"title": "Meertalige Ondersteuning",
|
|
69
|
+
"description": "Beschikbaar in 19 talen."
|
|
70
|
+
},
|
|
71
|
+
"darkMode": {
|
|
72
|
+
"title": "Donkere Modus",
|
|
73
|
+
"description": "Thema met donkere modus."
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"download": {
|
|
77
|
+
"badge": "Download de App",
|
|
78
|
+
"title": "Begin Je Transformatie",
|
|
79
|
+
"subtitle": "Download Emrius gratis.",
|
|
80
|
+
"appStore": "App Store",
|
|
81
|
+
"googlePlay": "Google Play",
|
|
82
|
+
"getItOn": "Verkrijgbaar op",
|
|
83
|
+
"downloadOn": "Download op"
|
|
84
|
+
}
|
|
85
|
+
};
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
export const homePL: Record<string, any> = {
|
|
2
|
+
"hero": {
|
|
3
|
+
"badge": "Twój Towarzysz Fitness",
|
|
4
|
+
"title1": "Przemień Swoje Ciało.",
|
|
5
|
+
"title2": "Podnieś Jakość Życia.",
|
|
6
|
+
"subtitle": "Spersonalizowane plany, wyzwania i wspierająca społeczność.",
|
|
7
|
+
"downloadNow": "Pobierz Teraz",
|
|
8
|
+
"exploreFeatures": "Poznaj Funkcje",
|
|
9
|
+
"workoutPlans": "Plany Treningowe",
|
|
10
|
+
"exercises": "Ćwiczenia"
|
|
11
|
+
},
|
|
12
|
+
"features": {
|
|
13
|
+
"badge": "Funkcje",
|
|
14
|
+
"title": "Wszystko, Czego Potrzebujesz",
|
|
15
|
+
"subtitle": "Narzędzia do celów fitness.",
|
|
16
|
+
"workouts": {
|
|
17
|
+
"title": "Plany Treningowe",
|
|
18
|
+
"description": "Plany z wideo HD.",
|
|
19
|
+
"list": [
|
|
20
|
+
"200+ planów",
|
|
21
|
+
"Samouczki",
|
|
22
|
+
"Dostosowywalne"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
"challenges": {
|
|
26
|
+
"title": "Wyzwania",
|
|
27
|
+
"description": "Weź udział w wyzwaniach.",
|
|
28
|
+
"list": [
|
|
29
|
+
"Cotygodniowe",
|
|
30
|
+
"Rankingi",
|
|
31
|
+
"Nagrody"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
"community": {
|
|
35
|
+
"title": "Funkcje Społecznościowe",
|
|
36
|
+
"description": "Połącz z przyjaciółmi.",
|
|
37
|
+
"list": [
|
|
38
|
+
"Aktywność",
|
|
39
|
+
"Postępy",
|
|
40
|
+
"Połączenia"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"progress": {
|
|
44
|
+
"title": "Śledzenie Postępów",
|
|
45
|
+
"description": "Monitoruj statystyki.",
|
|
46
|
+
"list": [
|
|
47
|
+
"Wykresy",
|
|
48
|
+
"Metryki",
|
|
49
|
+
"Historia"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"badges": {
|
|
53
|
+
"title": "Odznaki i Nagrody",
|
|
54
|
+
"description": "Zdobywaj osiągnięcia.",
|
|
55
|
+
"list": [
|
|
56
|
+
"Osiągnięcia",
|
|
57
|
+
"Nagrody",
|
|
58
|
+
"Kolekcja"
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"highlights": {
|
|
63
|
+
"premium": {
|
|
64
|
+
"title": "Funkcje Premium",
|
|
65
|
+
"description": "Zaawansowane plany i ekskluzywne wyzwania."
|
|
66
|
+
},
|
|
67
|
+
"multiLanguage": {
|
|
68
|
+
"title": "Obsługa Wielu Języków",
|
|
69
|
+
"description": "Dostępne w 19 językach."
|
|
70
|
+
},
|
|
71
|
+
"darkMode": {
|
|
72
|
+
"title": "Tryb Ciemny",
|
|
73
|
+
"description": "Motyw z trybem ciemnym."
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"download": {
|
|
77
|
+
"badge": "Pobierz Aplikację",
|
|
78
|
+
"title": "Rozpocznij Transformację",
|
|
79
|
+
"subtitle": "Pobierz Emrius za darmo.",
|
|
80
|
+
"appStore": "App Store",
|
|
81
|
+
"googlePlay": "Google Play",
|
|
82
|
+
"getItOn": "Pobierz z",
|
|
83
|
+
"downloadOn": "Pobierz z"
|
|
84
|
+
}
|
|
85
|
+
};
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
export const homePT: Record<string, any> = {
|
|
2
|
+
"hero": {
|
|
3
|
+
"badge": "Seu Companheiro de Fitness",
|
|
4
|
+
"title1": "Transforme Seu Corpo.",
|
|
5
|
+
"title2": "Eleve Sua Vida.",
|
|
6
|
+
"subtitle": "Planos personalizados, desafios e comunidade de apoio.",
|
|
7
|
+
"downloadNow": "Baixar Agora",
|
|
8
|
+
"exploreFeatures": "Explorar Recursos",
|
|
9
|
+
"workoutPlans": "Planos de Treino",
|
|
10
|
+
"exercises": "Exercícios"
|
|
11
|
+
},
|
|
12
|
+
"features": {
|
|
13
|
+
"badge": "Recursos",
|
|
14
|
+
"title": "Tudo Que Você Precisa",
|
|
15
|
+
"subtitle": "Ferramentas para seus objetivos.",
|
|
16
|
+
"workouts": {
|
|
17
|
+
"title": "Planos de Treino",
|
|
18
|
+
"description": "Planos com vídeo HD.",
|
|
19
|
+
"list": [
|
|
20
|
+
"200+ planos profissionais",
|
|
21
|
+
"Tutoriais em vídeo",
|
|
22
|
+
"Horários personalizáveis"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
"challenges": {
|
|
26
|
+
"title": "Desafios",
|
|
27
|
+
"description": "Participe de desafios.",
|
|
28
|
+
"list": [
|
|
29
|
+
"Desafios semanais",
|
|
30
|
+
"Tabelas de líderes",
|
|
31
|
+
"Ganhe recompensas"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
"community": {
|
|
35
|
+
"title": "Recursos Sociais",
|
|
36
|
+
"description": "Conecte-se com amigos.",
|
|
37
|
+
"list": [
|
|
38
|
+
"Feeds",
|
|
39
|
+
"Compartilhar progresso",
|
|
40
|
+
"Conexões"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"progress": {
|
|
44
|
+
"title": "Rastreamento",
|
|
45
|
+
"description": "Monitore suas estatísticas.",
|
|
46
|
+
"list": [
|
|
47
|
+
"Gráficos visuais",
|
|
48
|
+
"Métricas",
|
|
49
|
+
"Histórico"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"badges": {
|
|
53
|
+
"title": "Medalhas e Recompensas",
|
|
54
|
+
"description": "Ganhe conquistas.",
|
|
55
|
+
"list": [
|
|
56
|
+
"Sistema de conquistas",
|
|
57
|
+
"Recompensas",
|
|
58
|
+
"Exibição"
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"highlights": {
|
|
63
|
+
"premium": {
|
|
64
|
+
"title": "Recursos Premium",
|
|
65
|
+
"description": "Planos avançados e desafios exclusivos."
|
|
66
|
+
},
|
|
67
|
+
"multiLanguage": {
|
|
68
|
+
"title": "Suporte Multilíngue",
|
|
69
|
+
"description": "Disponível em 19 idiomas."
|
|
70
|
+
},
|
|
71
|
+
"darkMode": {
|
|
72
|
+
"title": "Modo Escuro",
|
|
73
|
+
"description": "Tema com modo escuro."
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"download": {
|
|
77
|
+
"badge": "Obter o App",
|
|
78
|
+
"title": "Comece Sua Transformação",
|
|
79
|
+
"subtitle": "Baixe o Emrius gratuitamente.",
|
|
80
|
+
"appStore": "App Store",
|
|
81
|
+
"googlePlay": "Google Play",
|
|
82
|
+
"getItOn": "Disponível em",
|
|
83
|
+
"downloadOn": "Baixar em"
|
|
84
|
+
}
|
|
85
|
+
};
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
export const homeRU: 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": "Планы с HD-видео.",
|
|
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,85 @@
|
|
|
1
|
+
export const homeSV: Record<string, any> = {
|
|
2
|
+
"hero": {
|
|
3
|
+
"badge": "Din Fitnesspartner",
|
|
4
|
+
"title1": "Förvandla Din Kropp.",
|
|
5
|
+
"title2": "Höj Ditt Liv.",
|
|
6
|
+
"subtitle": "Personliga träningsplaner, utmaningar och stödjande community.",
|
|
7
|
+
"downloadNow": "Ladda Ner Nu",
|
|
8
|
+
"exploreFeatures": "Utforska Funktioner",
|
|
9
|
+
"workoutPlans": "Träningsplaner",
|
|
10
|
+
"exercises": "Övningar"
|
|
11
|
+
},
|
|
12
|
+
"features": {
|
|
13
|
+
"badge": "Funktioner",
|
|
14
|
+
"title": "Allt Du Behöver",
|
|
15
|
+
"subtitle": "Kraftfulla verktyg för dina mål.",
|
|
16
|
+
"workouts": {
|
|
17
|
+
"title": "Träningsplaner",
|
|
18
|
+
"description": "Planer med HD-video.",
|
|
19
|
+
"list": [
|
|
20
|
+
"200+ planer",
|
|
21
|
+
"Handledningar",
|
|
22
|
+
"Anpassningsbara"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
"challenges": {
|
|
26
|
+
"title": "Utmaningar",
|
|
27
|
+
"description": "Delta i utmaningar.",
|
|
28
|
+
"list": [
|
|
29
|
+
"Veckovisa",
|
|
30
|
+
"Topplistor",
|
|
31
|
+
"Belöningar"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
"community": {
|
|
35
|
+
"title": "Sociala Funktioner",
|
|
36
|
+
"description": "Anslut med vänner.",
|
|
37
|
+
"list": [
|
|
38
|
+
"Flöden",
|
|
39
|
+
"Dela framsteg",
|
|
40
|
+
"Vänner"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"progress": {
|
|
44
|
+
"title": "Framstegsspårning",
|
|
45
|
+
"description": "Övervaka statistik.",
|
|
46
|
+
"list": [
|
|
47
|
+
"Diagram",
|
|
48
|
+
"Mått",
|
|
49
|
+
"Historik"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"badges": {
|
|
53
|
+
"title": "Märken & Belöningar",
|
|
54
|
+
"description": "Tjäna prestationer.",
|
|
55
|
+
"list": [
|
|
56
|
+
"Prestationer",
|
|
57
|
+
"Belöningar",
|
|
58
|
+
"Samling"
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"highlights": {
|
|
63
|
+
"premium": {
|
|
64
|
+
"title": "Premiumfunktioner",
|
|
65
|
+
"description": "Avancerade planer och exklusiva utmaningar."
|
|
66
|
+
},
|
|
67
|
+
"multiLanguage": {
|
|
68
|
+
"title": "Flerspråkigt Stöd",
|
|
69
|
+
"description": "Tillgänglig på 19 språk."
|
|
70
|
+
},
|
|
71
|
+
"darkMode": {
|
|
72
|
+
"title": "Mörkt Läge",
|
|
73
|
+
"description": "Tema med mörkt läge."
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"download": {
|
|
77
|
+
"badge": "Ladda Ner Appen",
|
|
78
|
+
"title": "Börja Din Förvandling",
|
|
79
|
+
"subtitle": "Ladda ner Emrius gratis.",
|
|
80
|
+
"appStore": "App Store",
|
|
81
|
+
"googlePlay": "Google Play",
|
|
82
|
+
"getItOn": "Finns på",
|
|
83
|
+
"downloadOn": "Ladda ner från"
|
|
84
|
+
}
|
|
85
|
+
};
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
export const homeTH: 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": "แผนพร้อมวิดีโอ HD",
|
|
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,85 @@
|
|
|
1
|
+
export const homeTR: Record<string, any> = {
|
|
2
|
+
"hero": {
|
|
3
|
+
"badge": "Fitness Arkadaşınız",
|
|
4
|
+
"title1": "Vücudunuzu Dönüştürün.",
|
|
5
|
+
"title2": "Hayatınızı Yükseltin.",
|
|
6
|
+
"subtitle": "Kişiselleştirilmiş programlar, meydan okumalar ve destekleyici topluluk.",
|
|
7
|
+
"downloadNow": "Şimdi İndir",
|
|
8
|
+
"exploreFeatures": "Özellikleri Keşfet",
|
|
9
|
+
"workoutPlans": "Antrenman Programları",
|
|
10
|
+
"exercises": "Egzersizler"
|
|
11
|
+
},
|
|
12
|
+
"features": {
|
|
13
|
+
"badge": "Özellikler",
|
|
14
|
+
"title": "Başarı İçin Her Şey",
|
|
15
|
+
"subtitle": "Fitness hedeflerine ulaşmak için güçlü araçlar.",
|
|
16
|
+
"workouts": {
|
|
17
|
+
"title": "Antrenman Programları",
|
|
18
|
+
"description": "HD video demonstrasyonlu programlar.",
|
|
19
|
+
"list": [
|
|
20
|
+
"200+ profesyonel plan",
|
|
21
|
+
"Video eğitimler",
|
|
22
|
+
"Özelleştirilebilir"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
"challenges": {
|
|
26
|
+
"title": "Meydan Okumalar",
|
|
27
|
+
"description": "Fitness meydan okumalarına katılın.",
|
|
28
|
+
"list": [
|
|
29
|
+
"Haftalık okumalar",
|
|
30
|
+
"Sıralamalar",
|
|
31
|
+
"Ödüller"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
"community": {
|
|
35
|
+
"title": "Sosyal Özellikler",
|
|
36
|
+
"description": "Arkadaşlarla bağlantı kurun.",
|
|
37
|
+
"list": [
|
|
38
|
+
"Aktivite akışları",
|
|
39
|
+
"İlerleme paylaşımı",
|
|
40
|
+
"Arkadaş bağlantıları"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"progress": {
|
|
44
|
+
"title": "İlerleme Takibi",
|
|
45
|
+
"description": "İstatistiklerinizi izleyin.",
|
|
46
|
+
"list": [
|
|
47
|
+
"Görsel grafikler",
|
|
48
|
+
"Vücut ölçüleri",
|
|
49
|
+
"Antrenman geçmişi"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"badges": {
|
|
53
|
+
"title": "Rozetler ve Ödüller",
|
|
54
|
+
"description": "Başarılar kazanın.",
|
|
55
|
+
"list": [
|
|
56
|
+
"Başarı sistemi",
|
|
57
|
+
"Ödüller",
|
|
58
|
+
"Koleksiyon"
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"highlights": {
|
|
63
|
+
"premium": {
|
|
64
|
+
"title": "Premium Özellikler",
|
|
65
|
+
"description": "Gelişmiş planlar ve özel meydan okumalar."
|
|
66
|
+
},
|
|
67
|
+
"multiLanguage": {
|
|
68
|
+
"title": "Çok Dilli Destek",
|
|
69
|
+
"description": "19 dilde kullanılabilir."
|
|
70
|
+
},
|
|
71
|
+
"darkMode": {
|
|
72
|
+
"title": "Karanlık Mod",
|
|
73
|
+
"description": "Karanlık mod destekli güzel tema."
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"download": {
|
|
77
|
+
"badge": "Uygulamayı İndir",
|
|
78
|
+
"title": "Bugün Dönüşümünüze Başlayın",
|
|
79
|
+
"subtitle": "Emrius'u ücretsiz indirin.",
|
|
80
|
+
"appStore": "App Store",
|
|
81
|
+
"googlePlay": "Google Play",
|
|
82
|
+
"getItOn": "dan indirin",
|
|
83
|
+
"downloadOn": "dan indirin"
|
|
84
|
+
}
|
|
85
|
+
};
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
export const homeVI: Record<string, any> = {
|
|
2
|
+
"hero": {
|
|
3
|
+
"badge": "Người Bạn Fitness",
|
|
4
|
+
"title1": "Biến Đổi Cơ Thể.",
|
|
5
|
+
"title2": "Nâng Cao Cuộc Sống.",
|
|
6
|
+
"subtitle": "Kế hoạch cá nhân, thử thách và cộng đồng hỗ trợ.",
|
|
7
|
+
"downloadNow": "Tải Ngay",
|
|
8
|
+
"exploreFeatures": "Khám Phá",
|
|
9
|
+
"workoutPlans": "Kế Hoạch Tập",
|
|
10
|
+
"exercises": "Bài Tập"
|
|
11
|
+
},
|
|
12
|
+
"features": {
|
|
13
|
+
"badge": "Tính năng",
|
|
14
|
+
"title": "Mọi Thứ Bạn Cần",
|
|
15
|
+
"subtitle": "Công cụ mạnh mẽ cho mục tiêu fitness.",
|
|
16
|
+
"workouts": {
|
|
17
|
+
"title": "Kế Hoạch Tập",
|
|
18
|
+
"description": "Kế hoạch với video HD.",
|
|
19
|
+
"list": [
|
|
20
|
+
"200+ kế hoạch",
|
|
21
|
+
"Hướng dẫn",
|
|
22
|
+
"Tùy chỉnh"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
"challenges": {
|
|
26
|
+
"title": "Thử Thách",
|
|
27
|
+
"description": "Tham gia thử thách.",
|
|
28
|
+
"list": [
|
|
29
|
+
"Hàng tuần",
|
|
30
|
+
"Bảng xếp hạng",
|
|
31
|
+
"Phần thưởng"
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
"community": {
|
|
35
|
+
"title": "Tính Năng Xã Hội",
|
|
36
|
+
"description": "Kết nối với bạn bè.",
|
|
37
|
+
"list": [
|
|
38
|
+
"Feed",
|
|
39
|
+
"Chia sẻ",
|
|
40
|
+
"Kết nối"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"progress": {
|
|
44
|
+
"title": "Theo Dõi",
|
|
45
|
+
"description": "Theo dõi thống kê.",
|
|
46
|
+
"list": [
|
|
47
|
+
"Biểu đồ",
|
|
48
|
+
"Chỉ số",
|
|
49
|
+
"Lịch sử"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"badges": {
|
|
53
|
+
"title": "Huy Hiệu & Phần Thưởng",
|
|
54
|
+
"description": "Nhận thành tích.",
|
|
55
|
+
"list": [
|
|
56
|
+
"Thành tích",
|
|
57
|
+
"Phần thưởng",
|
|
58
|
+
"Bộ sưu tập"
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"highlights": {
|
|
63
|
+
"premium": {
|
|
64
|
+
"title": "Tính Năng Premium",
|
|
65
|
+
"description": "Kế hoạch nâng cao và thử thách độc quyền."
|
|
66
|
+
},
|
|
67
|
+
"multiLanguage": {
|
|
68
|
+
"title": "Hỗ Trợ Đa Ngôn Ngữ",
|
|
69
|
+
"description": "Có sẵn trong 19 ngôn ngữ."
|
|
70
|
+
},
|
|
71
|
+
"darkMode": {
|
|
72
|
+
"title": "Chế Độ Tối",
|
|
73
|
+
"description": "Chủ đề với chế độ tối."
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"download": {
|
|
77
|
+
"badge": "Tải Ứng Dụng",
|
|
78
|
+
"title": "Bắt Đầu Biến Đổi Hôm Nay",
|
|
79
|
+
"subtitle": "Tải Emrius miễn phí.",
|
|
80
|
+
"appStore": "App Store",
|
|
81
|
+
"googlePlay": "Google Play",
|
|
82
|
+
"getItOn": "Có trên",
|
|
83
|
+
"downloadOn": "Tải từ"
|
|
84
|
+
}
|
|
85
|
+
};
|