V 1.1.24+1 Push Notification android, Smartlook activate
This commit is contained in:
parent
9c72df1d67
commit
fd6a5a3145
android
.project
app
.project
bin
build.gradlegoogle-services.json
src
debug
main
AndroidManifest.xml
kotlin/com/aitrainer/aitrainer_app
res
drawable
mipmap-hdpi
mipmap-mdpi
mipmap-xhdpi
mipmap-xxhdpi
mipmap-xxxhdpi
values
profile
coverage
i18n
lib
pubspec.lockpubspec.yaml
28
android/.project
Normal file
28
android/.project
Normal file
@ -0,0 +1,28 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>android</name>
|
||||
<comment>Project android created by Buildship.</comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
|
||||
</natures>
|
||||
<filteredResources>
|
||||
<filter>
|
||||
<id>1633186029318</id>
|
||||
<name></name>
|
||||
<type>30</type>
|
||||
<matcher>
|
||||
<id>org.eclipse.core.resources.regexFilterMatcher</id>
|
||||
<arguments>node_modules|.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
|
||||
</matcher>
|
||||
</filter>
|
||||
</filteredResources>
|
||||
</projectDescription>
|
34
android/app/.project
Normal file
34
android/app/.project
Normal file
@ -0,0 +1,34 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>app</name>
|
||||
<comment>Project app created by Buildship.</comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
|
||||
</natures>
|
||||
<filteredResources>
|
||||
<filter>
|
||||
<id>1633186029325</id>
|
||||
<name></name>
|
||||
<type>30</type>
|
||||
<matcher>
|
||||
<id>org.eclipse.core.resources.regexFilterMatcher</id>
|
||||
<arguments>node_modules|.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
|
||||
</matcher>
|
||||
</filter>
|
||||
</filteredResources>
|
||||
</projectDescription>
|
83
android/app/bin/build.gradle
Normal file
83
android/app/bin/build.gradle
Normal file
@ -0,0 +1,83 @@
|
||||
def localProperties = new Properties()
|
||||
def localPropertiesFile = rootProject.file('local.properties')
|
||||
if (localPropertiesFile.exists()) {
|
||||
localPropertiesFile.withReader('UTF-8') { reader ->
|
||||
localProperties.load(reader)
|
||||
}
|
||||
}
|
||||
|
||||
def flutterRoot = localProperties.getProperty('flutter.sdk')
|
||||
if (flutterRoot == null) {
|
||||
throw new Exception("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
|
||||
}
|
||||
|
||||
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
|
||||
if (flutterVersionCode == null) {
|
||||
flutterVersionCode = '1'
|
||||
}
|
||||
|
||||
def flutterVersionName = localProperties.getProperty('flutter.versionName')
|
||||
if (flutterVersionName == null) {
|
||||
flutterVersionName = '1.0'
|
||||
}
|
||||
|
||||
apply plugin: 'com.android.application'
|
||||
apply plugin: 'kotlin-android'
|
||||
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
|
||||
apply plugin: 'com.google.gms.google-services'
|
||||
|
||||
def keystoreProperties = new Properties()
|
||||
def keystorePropertiesFile = rootProject.file('key.properties')
|
||||
if (keystorePropertiesFile.exists()) {
|
||||
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdkVersion 28
|
||||
|
||||
sourceSets {
|
||||
main.java.srcDirs += 'src/main/kotlin'
|
||||
}
|
||||
|
||||
lintOptions {
|
||||
disable 'InvalidPackage'
|
||||
}
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.aitrainer.aitrainer_app"
|
||||
minSdkVersion 20
|
||||
targetSdkVersion 29
|
||||
versionCode flutterVersionCode.toInteger()
|
||||
versionName flutterVersionName
|
||||
multiDexEnabled true
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
release {
|
||||
keyAlias keystoreProperties['keyAlias']
|
||||
keyPassword keystoreProperties['keyPassword']
|
||||
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
|
||||
storePassword keystoreProperties['storePassword']
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
// Signing with the debug keys for now, so `flutter run --release` works.
|
||||
signingConfig signingConfigs.release
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
flutter {
|
||||
source '../..'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||||
implementation 'com.google.firebase:firebase-analytics:18.0.0'
|
||||
implementation 'com.facebook.android:facebook-login:5.15.3'
|
||||
implementation 'com.android.support:multidex:1.0.3'
|
||||
implementation 'com.google.firebase:firebase-messaging:20.1.0'
|
||||
}
|
||||
sourceCompatibility = '1.8'
|
72
android/app/bin/google-services.json
Normal file
72
android/app/bin/google-services.json
Normal file
@ -0,0 +1,72 @@
|
||||
{
|
||||
"project_info": {
|
||||
"project_number": "926782702216",
|
||||
"firebase_url": "https://aitrainer-af0ec.firebaseio.com",
|
||||
"project_id": "aitrainer-af0ec",
|
||||
"storage_bucket": "aitrainer-af0ec.appspot.com"
|
||||
},
|
||||
"client": [
|
||||
{
|
||||
"client_info": {
|
||||
"mobilesdk_app_id": "1:926782702216:android:94700653fb91484add953d",
|
||||
"android_client_info": {
|
||||
"package_name": "com.aitrainer.aitrainer_app"
|
||||
}
|
||||
},
|
||||
"oauth_client": [
|
||||
{
|
||||
"client_id": "926782702216-237m2fsnnl6e9kufvommqlig6kh0306v.apps.googleusercontent.com",
|
||||
"client_type": 1,
|
||||
"android_info": {
|
||||
"package_name": "com.aitrainer.aitrainer_app",
|
||||
"certificate_hash": "48a14ac298aea01f57a4b1fa85b62b4214529697"
|
||||
}
|
||||
},
|
||||
{
|
||||
"client_id": "926782702216-2f57akehq02uup6sbnuobbu4pth2a5do.apps.googleusercontent.com",
|
||||
"client_type": 1,
|
||||
"android_info": {
|
||||
"package_name": "com.aitrainer.aitrainer_app",
|
||||
"certificate_hash": "35571ad544a6ac0d062eed92a6d2d40f0cb63116"
|
||||
}
|
||||
},
|
||||
{
|
||||
"client_id": "926782702216-4hfe454mnu2bv28m8cqbguvjg3mom3fd.apps.googleusercontent.com",
|
||||
"client_type": 1,
|
||||
"android_info": {
|
||||
"package_name": "com.aitrainer.aitrainer_app",
|
||||
"certificate_hash": "0bed1641af363cf58750d95595f4521e596827f2"
|
||||
}
|
||||
},
|
||||
{
|
||||
"client_id": "926782702216-al3vjap51m6pgpa066d1oni0bdjpu7pr.apps.googleusercontent.com",
|
||||
"client_type": 3
|
||||
}
|
||||
],
|
||||
"api_key": [
|
||||
{
|
||||
"current_key": "AIzaSyDOTAvDONK1PB_fPFDxSZp4X-jr0Cf57Yk"
|
||||
}
|
||||
],
|
||||
"services": {
|
||||
"appinvite_service": {
|
||||
"other_platform_oauth_client": [
|
||||
{
|
||||
"client_id": "926782702216-al3vjap51m6pgpa066d1oni0bdjpu7pr.apps.googleusercontent.com",
|
||||
"client_type": 3
|
||||
},
|
||||
{
|
||||
"client_id": "926782702216-2nsi7d9at3pc5ts8gkobt5697v590kb9.apps.googleusercontent.com",
|
||||
"client_type": 2,
|
||||
"ios_info": {
|
||||
"bundle_id": "com.aitrainer.app",
|
||||
"app_store_id": "1515271425"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"configuration_version": "1"
|
||||
}
|
7
android/app/bin/src/debug/AndroidManifest.xml
Normal file
7
android/app/bin/src/debug/AndroidManifest.xml
Normal file
@ -0,0 +1,7 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.aitrainer.aitrainer_app">
|
||||
<!-- Flutter needs it to communicate with the running application
|
||||
to allow setting breakpoints, to provide hot reload, etc.
|
||||
-->
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
</manifest>
|
57
android/app/bin/src/main/AndroidManifest.xml
Normal file
57
android/app/bin/src/main/AndroidManifest.xml
Normal file
@ -0,0 +1,57 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.aitrainer.aitrainer_app">
|
||||
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
|
||||
calls FlutterMain.startInitialization(this); in its onCreate method.
|
||||
In most cases you can leave this as-is, but you if you want to provide
|
||||
additional functionality it is fine to subclass or reimplement
|
||||
FlutterApplication and put your custom class here. -->
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<application android:name="io.flutter.app.FlutterApplication" android:label="WorkoutTest" android:icon="@mipmap/launcher_icon">
|
||||
<activity android:name="com.aitrainer.aitrainer_app.MainActivity" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize" android:allowBackup="false" android:fullBackupContent="false">
|
||||
<!-- Specifies an Android theme to apply to this Activity as soon as
|
||||
the Android process has started. This theme is visible to the user
|
||||
while the Flutter UI initializes. After that, this theme continues
|
||||
to determine the Window background behind the Flutter UI. -->
|
||||
<meta-data android:name="io.flutter.embedding.android.NormalTheme" android:resource="@style/NormalTheme" />
|
||||
<!-- Displays an Android View that continues showing the launch screen
|
||||
Drawable until Flutter paints its first frame, then this splash
|
||||
screen fades out. A splash screen is useful to avoid any visual
|
||||
gap between the end of Android's launch screen and the painting of
|
||||
Flutter's first frame. -->
|
||||
<meta-data android:name="io.flutter.embedding.android.SplashScreenDrawable" android:resource="@drawable/launch_background" />
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN"/>
|
||||
<category android:name="android.intent.category.LAUNCHER"/>
|
||||
</intent-filter>
|
||||
<intent-filter>
|
||||
<action android:name="FLUTTER_NOTIFICATION_CLICK" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
<!-- Deep Links -->
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.BROWSABLE" />
|
||||
<!-- Accepts URIs that begin with YOUR_SCHEME://YOUR_HOST -->
|
||||
<data android:scheme="https" android:host="aitrainer.page.link" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<!-- Don't delete the meta-data below.
|
||||
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|
||||
<meta-data android:name="flutterEmbedding" android:value="2" />
|
||||
|
||||
<meta-data android:name="com.google.firebase.messaging.default_notification_channel_id" android:value="high_importance_channel" />
|
||||
|
||||
<meta-data android:name="com.facebook.sdk.ApplicationId" android:value="@string/facebook_app_id"/>
|
||||
|
||||
<activity android:name="com.facebook.FacebookActivity" android:configChanges=
|
||||
"keyboard|keyboardHidden|screenLayout|screenSize|orientation" android:label="@string/app_name" />
|
||||
<activity android:name="com.facebook.CustomTabActivity" android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.BROWSABLE" />
|
||||
<data android:scheme="@string/fb_login_protocol_scheme" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
</manifest>
|
@ -0,0 +1,5 @@
|
||||
package com.aitrainer.aitrainer_app
|
||||
|
||||
import io.flutter.embedding.android.FlutterActivity
|
||||
|
||||
class MainActivity: FlutterActivity()
|
12
android/app/bin/src/main/res/drawable/launch_background.xml
Normal file
12
android/app/bin/src/main/res/drawable/launch_background.xml
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Modify this file to customize your launch splash screen -->
|
||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:drawable="@android:color/white" />
|
||||
|
||||
<!-- You can insert your own image assets here -->
|
||||
<!-- <item>
|
||||
<bitmap
|
||||
android:gravity="center"
|
||||
android:src="@mipmap/launch_image" />
|
||||
</item> -->
|
||||
</layer-list>
|
BIN
android/app/bin/src/main/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
android/app/bin/src/main/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 11 KiB |
BIN
android/app/bin/src/main/res/mipmap-hdpi/launcher_icon.png
Normal file
BIN
android/app/bin/src/main/res/mipmap-hdpi/launcher_icon.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 7.0 KiB |
BIN
android/app/bin/src/main/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
android/app/bin/src/main/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 5.8 KiB |
BIN
android/app/bin/src/main/res/mipmap-mdpi/launcher_icon.png
Normal file
BIN
android/app/bin/src/main/res/mipmap-mdpi/launcher_icon.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 4.0 KiB |
BIN
android/app/bin/src/main/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
android/app/bin/src/main/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 18 KiB |
BIN
android/app/bin/src/main/res/mipmap-xhdpi/launcher_icon.png
Normal file
BIN
android/app/bin/src/main/res/mipmap-xhdpi/launcher_icon.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 9.8 KiB |
BIN
android/app/bin/src/main/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
android/app/bin/src/main/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 33 KiB |
BIN
android/app/bin/src/main/res/mipmap-xxhdpi/launcher_icon.png
Normal file
BIN
android/app/bin/src/main/res/mipmap-xxhdpi/launcher_icon.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 16 KiB |
BIN
android/app/bin/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
android/app/bin/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 51 KiB |
BIN
android/app/bin/src/main/res/mipmap-xxxhdpi/launcher_icon.png
Normal file
BIN
android/app/bin/src/main/res/mipmap-xxxhdpi/launcher_icon.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 23 KiB |
13
android/app/bin/src/main/res/values/strings.xml
Normal file
13
android/app/bin/src/main/res/values/strings.xml
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name">WorkoutTest</string>
|
||||
|
||||
<!-- Replace "000000000000" with your Facebook App ID here. -->
|
||||
<string name="facebook_app_id">584181112271127</string>
|
||||
|
||||
<!--
|
||||
Replace "000000000000" with your Facebook App ID here.
|
||||
**NOTE**: The scheme needs to start with `fb` and then your ID.
|
||||
-->
|
||||
<string name="fb_login_protocol_scheme">fb584181112271127</string>
|
||||
</resources>
|
18
android/app/bin/src/main/res/values/styles.xml
Normal file
18
android/app/bin/src/main/res/values/styles.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<!-- Theme applied to the Android Window while the process is starting -->
|
||||
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||
<!-- Show a splash screen on the activity. Automatically removed when
|
||||
Flutter draws its first frame -->
|
||||
<item name="android:windowBackground">@drawable/launch_background</item>
|
||||
</style>
|
||||
<!-- Theme applied to the Android Window as soon as the process has started.
|
||||
This theme determines the color of the Android Window while your
|
||||
Flutter UI initializes, as well as behind your Flutter UI while its
|
||||
running.
|
||||
|
||||
This Theme is only used starting with V2 of Flutter's Android embedding. -->
|
||||
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
|
||||
<item name="android:windowBackground">@android:color/white</item>
|
||||
</style>
|
||||
</resources>
|
7
android/app/bin/src/profile/AndroidManifest.xml
Normal file
7
android/app/bin/src/profile/AndroidManifest.xml
Normal file
@ -0,0 +1,7 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.aitrainer.aitrainer_app">
|
||||
<!-- Flutter needs it to communicate with the running application
|
||||
to allow setting breakpoints, to provide hot reload, etc.
|
||||
-->
|
||||
<uses-permission android:name="android.permission.INTERNET"/>
|
||||
</manifest>
|
804
coverage/lcov.info
Normal file
804
coverage/lcov.info
Normal file
@ -0,0 +1,804 @@
|
||||
SF:lib\model\exercise_plan.dart
|
||||
DA:12,1
|
||||
DA:13,1
|
||||
DA:14,1
|
||||
DA:15,2
|
||||
DA:18,0
|
||||
DA:19,0
|
||||
DA:20,0
|
||||
DA:21,0
|
||||
DA:22,0
|
||||
DA:23,0
|
||||
DA:24,0
|
||||
DA:25,0
|
||||
DA:28,0
|
||||
DA:30,0
|
||||
DA:31,0
|
||||
DA:33,0
|
||||
DA:35,0
|
||||
DA:36,0
|
||||
DA:37,0
|
||||
DA:38,0
|
||||
DA:39,0
|
||||
DA:40,0
|
||||
DA:41,0
|
||||
DA:46,0
|
||||
DA:47,0
|
||||
DA:48,0
|
||||
DA:49,0
|
||||
DA:50,0
|
||||
DA:51,0
|
||||
LF:29
|
||||
LH:4
|
||||
end_of_record
|
||||
SF:lib\model\exercise_plan_detail.dart
|
||||
DA:15,1
|
||||
DA:16,1
|
||||
DA:19,0
|
||||
DA:20,0
|
||||
DA:21,0
|
||||
DA:22,0
|
||||
DA:23,0
|
||||
DA:24,0
|
||||
DA:25,0
|
||||
DA:28,0
|
||||
DA:29,0
|
||||
DA:30,0
|
||||
DA:31,0
|
||||
DA:32,0
|
||||
DA:33,0
|
||||
DA:34,0
|
||||
LF:16
|
||||
LH:2
|
||||
end_of_record
|
||||
SF:lib\model\exercise_type.dart
|
||||
DA:20,0
|
||||
DA:22,0
|
||||
DA:23,0
|
||||
DA:24,0
|
||||
DA:25,0
|
||||
DA:26,0
|
||||
DA:27,0
|
||||
DA:28,0
|
||||
DA:29,0
|
||||
DA:30,0
|
||||
DA:31,0
|
||||
DA:32,0
|
||||
DA:33,0
|
||||
DA:34,0
|
||||
DA:37,0
|
||||
DA:38,0
|
||||
DA:39,0
|
||||
DA:40,0
|
||||
DA:41,0
|
||||
DA:42,0
|
||||
DA:43,0
|
||||
DA:44,0
|
||||
DA:47,0
|
||||
DA:48,0
|
||||
DA:51,0
|
||||
DA:52,0
|
||||
LF:26
|
||||
LH:0
|
||||
end_of_record
|
||||
SF:lib\repository\exercise_plan_repository.dart
|
||||
DA:19,0
|
||||
DA:20,0
|
||||
DA:23,0
|
||||
DA:24,0
|
||||
DA:27,0
|
||||
DA:28,0
|
||||
DA:31,0
|
||||
DA:32,0
|
||||
DA:35,0
|
||||
DA:36,0
|
||||
DA:39,0
|
||||
DA:40,0
|
||||
DA:43,0
|
||||
DA:44,0
|
||||
DA:46,0
|
||||
DA:48,0
|
||||
DA:50,0
|
||||
DA:53,0
|
||||
DA:54,0
|
||||
DA:57,0
|
||||
DA:58,0
|
||||
DA:61,0
|
||||
DA:62,0
|
||||
DA:63,0
|
||||
DA:66,0
|
||||
DA:67,0
|
||||
DA:71,0
|
||||
DA:72,0
|
||||
DA:77,0
|
||||
DA:78,0
|
||||
DA:81,0
|
||||
DA:82,0
|
||||
DA:85,0
|
||||
DA:86,0
|
||||
DA:87,0
|
||||
DA:88,0
|
||||
DA:90,0
|
||||
DA:93,0
|
||||
DA:94,0
|
||||
DA:97,0
|
||||
DA:99,0
|
||||
DA:100,0
|
||||
DA:101,0
|
||||
DA:105,0
|
||||
DA:106,0
|
||||
DA:108,0
|
||||
DA:111,0
|
||||
DA:113,0
|
||||
DA:114,0
|
||||
DA:115,0
|
||||
DA:117,0
|
||||
DA:119,0
|
||||
DA:120,0
|
||||
DA:121,0
|
||||
DA:122,0
|
||||
DA:123,0
|
||||
DA:126,0
|
||||
DA:127,0
|
||||
DA:131,0
|
||||
DA:133,0
|
||||
DA:134,0
|
||||
DA:135,0
|
||||
DA:136,0
|
||||
DA:138,0
|
||||
DA:139,0
|
||||
DA:143,0
|
||||
DA:144,0
|
||||
DA:145,0
|
||||
DA:146,0
|
||||
DA:147,0
|
||||
DA:153,0
|
||||
DA:154,0
|
||||
DA:157,0
|
||||
DA:162,0
|
||||
DA:163,0
|
||||
DA:164,0
|
||||
DA:165,0
|
||||
DA:166,0
|
||||
DA:169,0
|
||||
DA:170,0
|
||||
DA:171,0
|
||||
DA:173,0
|
||||
DA:174,0
|
||||
DA:179,0
|
||||
DA:180,0
|
||||
DA:181,0
|
||||
DA:184,0
|
||||
DA:185,0
|
||||
DA:188,0
|
||||
DA:189,0
|
||||
DA:191,0
|
||||
DA:192,0
|
||||
DA:194,0
|
||||
DA:195,0
|
||||
LF:94
|
||||
LH:0
|
||||
end_of_record
|
||||
SF:lib\localization\app_language.dart
|
||||
DA:5,0
|
||||
DA:9,0
|
||||
DA:10,0
|
||||
DA:13,0
|
||||
DA:15,0
|
||||
DA:16,0
|
||||
DA:19,0
|
||||
DA:21,0
|
||||
DA:22,0
|
||||
DA:23,0
|
||||
DA:24,0
|
||||
DA:26,0
|
||||
DA:28,0
|
||||
DA:30,0
|
||||
DA:33,0
|
||||
DA:34,0
|
||||
DA:36,0
|
||||
DA:38,0
|
||||
DA:39,0
|
||||
DA:44,0
|
||||
DA:45,0
|
||||
DA:46,0
|
||||
DA:49,0
|
||||
DA:50,0
|
||||
DA:51,0
|
||||
DA:52,0
|
||||
DA:54,0
|
||||
DA:55,0
|
||||
DA:56,0
|
||||
DA:58,0
|
||||
LF:30
|
||||
LH:0
|
||||
end_of_record
|
||||
SF:lib\model\cache.dart
|
||||
DA:15,1
|
||||
DA:16,1
|
||||
DA:17,1
|
||||
DA:18,1
|
||||
DA:38,0
|
||||
DA:75,0
|
||||
DA:76,0
|
||||
DA:79,0
|
||||
DA:81,0
|
||||
DA:86,0
|
||||
DA:90,0
|
||||
DA:91,0
|
||||
DA:94,0
|
||||
DA:95,0
|
||||
DA:98,0
|
||||
DA:102,0
|
||||
DA:106,0
|
||||
DA:107,0
|
||||
DA:109,0
|
||||
DA:110,0
|
||||
DA:113,0
|
||||
DA:114,0
|
||||
DA:116,0
|
||||
DA:117,0
|
||||
DA:120,0
|
||||
DA:121,0
|
||||
DA:122,0
|
||||
DA:123,0
|
||||
DA:124,0
|
||||
DA:125,0
|
||||
DA:126,0
|
||||
DA:127,0
|
||||
DA:128,0
|
||||
DA:130,0
|
||||
DA:131,0
|
||||
DA:134,0
|
||||
DA:138,0
|
||||
DA:140,0
|
||||
DA:141,0
|
||||
DA:142,0
|
||||
DA:143,0
|
||||
DA:144,0
|
||||
DA:145,0
|
||||
DA:146,0
|
||||
DA:147,0
|
||||
DA:148,0
|
||||
DA:149,0
|
||||
DA:150,0
|
||||
DA:151,0
|
||||
DA:152,0
|
||||
DA:153,0
|
||||
DA:154,0
|
||||
DA:155,0
|
||||
DA:156,0
|
||||
DA:157,0
|
||||
DA:158,0
|
||||
DA:159,0
|
||||
DA:160,0
|
||||
DA:161,0
|
||||
DA:165,0
|
||||
DA:166,0
|
||||
DA:169,0
|
||||
DA:170,0
|
||||
DA:173,0
|
||||
DA:174,0
|
||||
DA:177,0
|
||||
DA:178,0
|
||||
DA:181,0
|
||||
DA:182,0
|
||||
DA:185,0
|
||||
DA:186,0
|
||||
DA:189,0
|
||||
DA:190,0
|
||||
DA:193,0
|
||||
DA:194,0
|
||||
DA:197,0
|
||||
DA:198,0
|
||||
DA:201,0
|
||||
DA:202,0
|
||||
DA:205,0
|
||||
DA:206,0
|
||||
DA:209,0
|
||||
DA:210,0
|
||||
DA:213,0
|
||||
DA:214,0
|
||||
DA:217,0
|
||||
DA:218,0
|
||||
DA:221,0
|
||||
DA:222,0
|
||||
DA:225,0
|
||||
DA:226,0
|
||||
DA:229,0
|
||||
DA:230,0
|
||||
DA:233,0
|
||||
DA:234,0
|
||||
DA:237,0
|
||||
DA:238,0
|
||||
DA:241,0
|
||||
DA:242,0
|
||||
DA:245,0
|
||||
DA:246,0
|
||||
DA:249,0
|
||||
DA:250,0
|
||||
LF:103
|
||||
LH:4
|
||||
end_of_record
|
||||
SF:lib\model\customer.dart
|
||||
DA:20,0
|
||||
DA:38,0
|
||||
DA:39,0
|
||||
DA:40,0
|
||||
DA:41,0
|
||||
DA:42,0
|
||||
DA:43,0
|
||||
DA:44,0
|
||||
DA:45,0
|
||||
DA:46,0
|
||||
DA:47,0
|
||||
DA:48,0
|
||||
DA:49,0
|
||||
DA:50,0
|
||||
DA:51,0
|
||||
DA:52,0
|
||||
DA:55,0
|
||||
DA:56,0
|
||||
DA:57,0
|
||||
DA:58,0
|
||||
DA:59,0
|
||||
DA:60,0
|
||||
DA:61,0
|
||||
DA:63,0
|
||||
DA:64,0
|
||||
DA:65,0
|
||||
DA:66,0
|
||||
DA:67,0
|
||||
DA:68,0
|
||||
DA:69,0
|
||||
DA:70,0
|
||||
DA:71,0
|
||||
LF:32
|
||||
LH:0
|
||||
end_of_record
|
||||
SF:lib\model\exercise_tree.dart
|
||||
DA:9,0
|
||||
DA:10,0
|
||||
DA:11,0
|
||||
DA:12,0
|
||||
DA:13,0
|
||||
DA:14,0
|
||||
DA:15,0
|
||||
DA:16,0
|
||||
DA:17,0
|
||||
DA:18,0
|
||||
LF:10
|
||||
LH:0
|
||||
end_of_record
|
||||
SF:lib\model\exercise.dart
|
||||
DA:18,0
|
||||
DA:20,0
|
||||
DA:21,0
|
||||
DA:22,0
|
||||
DA:23,0
|
||||
DA:24,0
|
||||
DA:25,0
|
||||
DA:26,0
|
||||
DA:27,0
|
||||
DA:30,0
|
||||
DA:31,0
|
||||
DA:32,0
|
||||
DA:33,0
|
||||
DA:34,0
|
||||
DA:35,0
|
||||
DA:36,0
|
||||
DA:37,0
|
||||
DA:38,0
|
||||
DA:41,0
|
||||
DA:42,0
|
||||
DA:43,0
|
||||
DA:44,0
|
||||
DA:45,0
|
||||
DA:46,0
|
||||
DA:47,0
|
||||
DA:48,0
|
||||
DA:49,0
|
||||
LF:27
|
||||
LH:0
|
||||
end_of_record
|
||||
SF:lib\model\workout_menu_tree.dart
|
||||
DA:23,0
|
||||
DA:26,0
|
||||
DA:27,0
|
||||
DA:28,0
|
||||
DA:29,0
|
||||
DA:30,0
|
||||
DA:31,0
|
||||
DA:32,0
|
||||
DA:33,0
|
||||
DA:34,0
|
||||
DA:35,0
|
||||
DA:36,0
|
||||
DA:37,0
|
||||
LF:13
|
||||
LH:0
|
||||
end_of_record
|
||||
SF:lib\repository\exercise_repository.dart
|
||||
DA:23,0
|
||||
DA:24,0
|
||||
DA:25,0
|
||||
DA:28,0
|
||||
DA:29,0
|
||||
DA:30,0
|
||||
DA:32,0
|
||||
DA:35,0
|
||||
DA:36,0
|
||||
DA:37,0
|
||||
DA:40,0
|
||||
DA:43,0
|
||||
DA:44,0
|
||||
DA:45,0
|
||||
DA:48,0
|
||||
DA:51,0
|
||||
DA:52,0
|
||||
DA:53,0
|
||||
DA:56,0
|
||||
DA:59,0
|
||||
DA:60,0
|
||||
DA:63,0
|
||||
DA:64,0
|
||||
DA:67,0
|
||||
DA:68,0
|
||||
DA:71,0
|
||||
DA:72,0
|
||||
DA:73,0
|
||||
DA:74,0
|
||||
DA:75,0
|
||||
DA:76,0
|
||||
DA:77,0
|
||||
DA:78,0
|
||||
DA:79,0
|
||||
DA:84,0
|
||||
DA:85,0
|
||||
DA:88,0
|
||||
DA:89,0
|
||||
DA:93,0
|
||||
DA:94,0
|
||||
DA:95,0
|
||||
DA:96,0
|
||||
DA:97,0
|
||||
DA:98,0
|
||||
DA:99,0
|
||||
DA:101,0
|
||||
DA:104,0
|
||||
DA:106,0
|
||||
DA:111,0
|
||||
DA:113,0
|
||||
DA:118,0
|
||||
DA:119,0
|
||||
DA:120,0
|
||||
DA:121,0
|
||||
DA:123,0
|
||||
DA:129,0
|
||||
DA:131,0
|
||||
DA:132,0
|
||||
DA:133,0
|
||||
DA:134,0
|
||||
DA:138,0
|
||||
DA:139,0
|
||||
DA:142,0
|
||||
DA:146,0
|
||||
DA:148,0
|
||||
DA:149,0
|
||||
DA:150,0
|
||||
DA:152,0
|
||||
DA:153,0
|
||||
DA:154,0
|
||||
DA:155,0
|
||||
DA:156,0
|
||||
DA:157,0
|
||||
DA:158,0
|
||||
DA:167,0
|
||||
DA:168,0
|
||||
DA:171,0
|
||||
DA:172,0
|
||||
DA:173,0
|
||||
DA:174,0
|
||||
DA:176,0
|
||||
DA:180,0
|
||||
DA:181,0
|
||||
DA:182,0
|
||||
DA:186,0
|
||||
DA:188,0
|
||||
DA:190,0
|
||||
DA:195,0
|
||||
LF:88
|
||||
LH:0
|
||||
end_of_record
|
||||
SF:lib\service\exercise_tree_service.dart
|
||||
DA:10,0
|
||||
DA:11,0
|
||||
DA:12,0
|
||||
DA:13,0
|
||||
DA:14,0
|
||||
DA:15,0
|
||||
LF:6
|
||||
LH:0
|
||||
end_of_record
|
||||
SF:lib\service\exercisetype_service.dart
|
||||
DA:10,0
|
||||
DA:11,0
|
||||
DA:12,0
|
||||
DA:13,0
|
||||
DA:14,0
|
||||
DA:18,0
|
||||
DA:19,0
|
||||
DA:20,0
|
||||
DA:21,0
|
||||
DA:22,0
|
||||
DA:26,0
|
||||
DA:27,0
|
||||
DA:28,0
|
||||
DA:29,0
|
||||
LF:14
|
||||
LH:0
|
||||
end_of_record
|
||||
SF:lib\util\common.dart
|
||||
DA:17,0
|
||||
DA:19,0
|
||||
DA:20,0
|
||||
DA:22,0
|
||||
DA:26,0
|
||||
DA:28,0
|
||||
DA:30,0
|
||||
DA:31,0
|
||||
DA:40,0
|
||||
DA:43,0
|
||||
DA:45,0
|
||||
DA:51,0
|
||||
DA:52,0
|
||||
DA:53,0
|
||||
DA:56,0
|
||||
DA:57,0
|
||||
DA:60,0
|
||||
DA:61,0
|
||||
DA:62,0
|
||||
DA:65,0
|
||||
DA:68,0
|
||||
DA:69,0
|
||||
DA:71,0
|
||||
DA:73,0
|
||||
DA:77,0
|
||||
DA:78,0
|
||||
DA:79,0
|
||||
LF:27
|
||||
LH:0
|
||||
end_of_record
|
||||
SF:lib\model\user.dart
|
||||
DA:7,0
|
||||
DA:10,0
|
||||
DA:11,0
|
||||
DA:12,0
|
||||
DA:13,0
|
||||
LF:5
|
||||
LH:0
|
||||
end_of_record
|
||||
SF:lib\service\exercise_plan_service.dart
|
||||
DA:11,0
|
||||
DA:12,0
|
||||
DA:13,0
|
||||
DA:16,0
|
||||
DA:19,0
|
||||
DA:21,0
|
||||
DA:22,0
|
||||
DA:27,0
|
||||
DA:30,0
|
||||
DA:31,0
|
||||
DA:34,0
|
||||
DA:35,0
|
||||
DA:37,0
|
||||
DA:39,0
|
||||
DA:40,0
|
||||
DA:45,0
|
||||
DA:46,0
|
||||
DA:47,0
|
||||
DA:50,0
|
||||
DA:53,0
|
||||
DA:54,0
|
||||
DA:55,0
|
||||
DA:60,0
|
||||
DA:62,0
|
||||
DA:63,0
|
||||
DA:66,0
|
||||
DA:67,0
|
||||
DA:69,0
|
||||
DA:70,0
|
||||
DA:71,0
|
||||
DA:76,0
|
||||
DA:77,0
|
||||
DA:80,0
|
||||
DA:81,0
|
||||
DA:84,0
|
||||
DA:85,0
|
||||
DA:90,0
|
||||
DA:92,0
|
||||
DA:95,0
|
||||
DA:96,0
|
||||
DA:99,0
|
||||
DA:100,0
|
||||
DA:105,0
|
||||
DA:107,0
|
||||
DA:110,0
|
||||
DA:111,0
|
||||
DA:113,0
|
||||
DA:114,0
|
||||
DA:115,0
|
||||
DA:116,0
|
||||
DA:119,0
|
||||
DA:125,0
|
||||
DA:127,0
|
||||
DA:130,0
|
||||
DA:131,0
|
||||
DA:133,0
|
||||
DA:134,0
|
||||
DA:135,0
|
||||
DA:136,0
|
||||
DA:137,0
|
||||
LF:60
|
||||
LH:0
|
||||
end_of_record
|
||||
SF:lib\service\exercise_service.dart
|
||||
DA:9,0
|
||||
DA:10,0
|
||||
DA:11,0
|
||||
DA:12,0
|
||||
DA:17,0
|
||||
DA:18,0
|
||||
DA:19,0
|
||||
DA:20,0
|
||||
DA:21,0
|
||||
DA:25,0
|
||||
DA:26,0
|
||||
DA:27,0
|
||||
DA:28,0
|
||||
DA:31,0
|
||||
DA:35,0
|
||||
DA:36,0
|
||||
DA:37,0
|
||||
DA:38,0
|
||||
LF:18
|
||||
LH:0
|
||||
end_of_record
|
||||
SF:lib\repository\user_repository.dart
|
||||
DA:7,0
|
||||
DA:8,0
|
||||
DA:11,0
|
||||
DA:12,0
|
||||
DA:15,0
|
||||
DA:16,0
|
||||
DA:19,0
|
||||
DA:20,0
|
||||
DA:23,0
|
||||
DA:24,0
|
||||
DA:25,0
|
||||
DA:28,0
|
||||
DA:29,0
|
||||
DA:30,0
|
||||
LF:14
|
||||
LH:0
|
||||
end_of_record
|
||||
SF:lib\service\customer_service.dart
|
||||
DA:10,0
|
||||
DA:11,0
|
||||
DA:12,0
|
||||
DA:13,0
|
||||
DA:14,0
|
||||
DA:19,0
|
||||
DA:20,0
|
||||
DA:21,0
|
||||
DA:23,0
|
||||
DA:24,0
|
||||
DA:28,0
|
||||
DA:29,0
|
||||
DA:30,0
|
||||
DA:31,0
|
||||
DA:36,0
|
||||
DA:37,0
|
||||
DA:38,0
|
||||
DA:39,0
|
||||
DA:44,0
|
||||
DA:46,0
|
||||
DA:48,0
|
||||
DA:49,0
|
||||
DA:51,0
|
||||
DA:52,0
|
||||
DA:56,0
|
||||
DA:57,0
|
||||
DA:58,0
|
||||
DA:59,0
|
||||
DA:64,0
|
||||
DA:65,0
|
||||
DA:66,0
|
||||
DA:67,0
|
||||
DA:72,0
|
||||
DA:74,0
|
||||
DA:76,0
|
||||
DA:77,0
|
||||
DA:79,0
|
||||
DA:80,0
|
||||
DA:81,0
|
||||
DA:83,0
|
||||
DA:84,0
|
||||
DA:85,0
|
||||
DA:86,0
|
||||
DA:90,0
|
||||
DA:93,0
|
||||
DA:95,0
|
||||
DA:96,0
|
||||
DA:98,0
|
||||
DA:99,0
|
||||
DA:101,0
|
||||
DA:102,0
|
||||
DA:107,0
|
||||
DA:108,0
|
||||
DA:109,0
|
||||
DA:112,0
|
||||
DA:113,0
|
||||
DA:116,0
|
||||
DA:117,0
|
||||
DA:119,0
|
||||
DA:120,0
|
||||
LF:60
|
||||
LH:0
|
||||
end_of_record
|
||||
SF:lib\service\api.dart
|
||||
DA:9,0
|
||||
DA:10,0
|
||||
DA:11,0
|
||||
DA:12,0
|
||||
DA:13,0
|
||||
DA:17,0
|
||||
DA:19,0
|
||||
DA:20,0
|
||||
DA:22,0
|
||||
DA:24,0
|
||||
DA:25,0
|
||||
DA:26,0
|
||||
DA:27,0
|
||||
DA:28,0
|
||||
DA:30,0
|
||||
DA:34,0
|
||||
DA:35,0
|
||||
DA:36,0
|
||||
DA:37,0
|
||||
DA:38,0
|
||||
DA:39,0
|
||||
DA:43,0
|
||||
DA:46,0
|
||||
DA:47,0
|
||||
DA:49,0
|
||||
DA:53,0
|
||||
DA:54,0
|
||||
DA:55,0
|
||||
DA:59,0
|
||||
DA:60,0
|
||||
DA:63,0
|
||||
DA:64,0
|
||||
DA:65,0
|
||||
DA:67,0
|
||||
DA:73,0
|
||||
DA:74,0
|
||||
DA:75,0
|
||||
DA:78,0
|
||||
DA:82,0
|
||||
DA:83,0
|
||||
DA:87,0
|
||||
DA:88,0
|
||||
DA:91,0
|
||||
DA:93,0
|
||||
DA:98,0
|
||||
DA:102,0
|
||||
DA:103,0
|
||||
LF:47
|
||||
LH:0
|
||||
end_of_record
|
||||
SF:lib\util\not_found_exception.dart
|
||||
DA:3,0
|
||||
LF:1
|
||||
LH:0
|
||||
end_of_record
|
324
i18n/en.csv
Normal file
324
i18n/en.csv
Normal file
@ -0,0 +1,324 @@
|
||||
39;39;en;Apple Sign In failure: email address is necessary
|
||||
40;40;en;There is an error: during registration:
|
||||
41;41;en;Cardio
|
||||
42;42;en;400m
|
||||
43;43;en;300m
|
||||
44;44;en;Aerobic
|
||||
45;45;en;Anaerobic
|
||||
46;46;en;Cooper
|
||||
47;47;en;Strength
|
||||
48;48;en;Strength Endurance
|
||||
49;49;en;Pushups
|
||||
50;50;en;Timed Pushups
|
||||
51;51;en;Core
|
||||
52;52;en;Squats
|
||||
53;53;en;Sit-ups
|
||||
54;54;en;1RM
|
||||
55;55;en;Chest Press
|
||||
56;56;en;Pull Ups
|
||||
57;57;en;Biceps
|
||||
58;58;en;Triceps
|
||||
59;59;en;Shoulders
|
||||
60;60;en;Body Compositions
|
||||
61;61;en;BMI
|
||||
62;62;en;BMR
|
||||
63;63;en;Sizes
|
||||
64;64;en;Save Exercise of:
|
||||
65;65;en;Delete
|
||||
66;66;en;<p>The essence of the endurance test is also to suggest the right WEIGHT and number of REPETATIONS for you. It is very important to do the test properly with the requested repetition! If your goal is to maintain long-term strength or you are an athlete, be sure to complete our endurance module as well.</p><p><b>Why endurance?</b></p><p>It improves the oxygen and nutrients supply of the muscles therefore you will be able to move more weights on a longer distance (e.g.: push-ups or pull-ups). It has less weight gain effect, it rather results a more athletic and strong physique if you exercise in a long term.</p>
|
||||
67;67;en;<p>Knowing the maximum of one repetition which also known as 1RM, can be important to you in calculating the right WEIGHT and REPEAT for you. Execute the test correctly!</p><p>This way we can suggest the weights and repetitions that are best for you later. If building muscle or strength is your goal, it is essential to do the 1RM tests!</p><p><b>What is 1RM?</b></p><p>This is the weight what you are able to move at once properly. Upon the maximum weight exercise is performed correctly, we can derive the weight and number of repetitions which fits to your goals.</p>
|
||||
68;68;en;Name
|
||||
69;69;en;Exercise
|
||||
70;70;en;Quantity
|
||||
71;71;en;Unit
|
||||
72;72;en;Exercise date and time
|
||||
73;73;en;Please type the right quantity 0-10000
|
||||
74;74;en;Yes
|
||||
75;75;en;No
|
||||
76;76;en;with
|
||||
77;77;en;Do you save this exercise with these parameters?
|
||||
78;78;en;The number of the exercise
|
||||
79;79;en;The number of the exercise done with
|
||||
80;80;en;Please repeat with
|
||||
81;81;en;Execute the
|
||||
82;82;en;set!
|
||||
83;83;en;repeat
|
||||
84;84;en;meter
|
||||
85;85;en;percent
|
||||
86;86;en;kg
|
||||
87;87;en;kilogram
|
||||
88;88;en;lbs
|
||||
89;89;en;second
|
||||
90;90;en;Email
|
||||
91;91;en;Password
|
||||
92;92;en;OR
|
||||
93;93;en;Password (Leave empty if no change)
|
||||
94;94;en;First Name
|
||||
95;95;en;Birth Year
|
||||
96;96;en;Weight
|
||||
97;97;en;Gender
|
||||
98;98;en;Man
|
||||
99;99;en;Woman
|
||||
100;100;en;Next
|
||||
101;101;en;Select a gender
|
||||
102;102;en;Set Your Goals
|
||||
103;103;en;Gain Muscle
|
||||
104;104;en;Loose Weight
|
||||
105;105;en;Your Fitness State
|
||||
106;106;en;Fitness level
|
||||
107;107;en;Fitness Activity
|
||||
108;108;en;Beginner
|
||||
109;109;en;I am beginner
|
||||
110;110;en;Intermediate
|
||||
111;111;en;1-3 times a week
|
||||
112;112;en;Advanced
|
||||
113;113;en;4+ times a week
|
||||
114;114;en;Professional
|
||||
115;115;en;I am a professional
|
||||
116;116;en;No item selected
|
||||
117;117;en;Your Body Type
|
||||
118;118;en;Ectomorph
|
||||
119;119;en;Endomorph
|
||||
120;120;en;Mesomorph
|
||||
121;121;en;Ecto-Mesomorph
|
||||
122;122;en;Meso-Endomorph
|
||||
123;123;en;<p>Ectomorph is your body type if:<p><ul><li>You have basically a thin physique like a long-distance runner</li><li>Long limbs and narrow shoulders are typical of you</li><li>You have difficulties to build muscles</li><li>If your chest and waist are almost the same width</li><li>You lose muscle easily</li><li>You have a relatively low body fat percentage</li></ul><br/><br/><p>We can’t talk about 100% matching of course but this data is very important for personalization. It happens sometime that an ectomorph can has excess fat. In this case, the thinness of joints and the behaviour of muscles are the crucial aspect.</p>
|
||||
124;124;en;<p>This is your body type if you feel that your physique is the sharp opposite of ectomorph and:</p><ul><li>Despite of your strong-looking physique, your muscles are less visually outlined</li><li>Getting rid of excess fat is difficult for you</li><li>You get stronger very easily</li><li>Your rib cage is wide and large</li><li>You have thick and strong joints</li><li>If your hips are wide and strong</li></ul><p>We can’t talk about 100% matching here too of course but this data is very important for personalization. It can happen that an endomorph is difficult to distinguish from a mesomorph.</p><p>In this case, check the size of the rib cage and the waist. From a side view, a mesomorph may have a flatter chest and abdomen compared to an originally strong and fleshy endomorph. All apple and pear shape are considered as endomorph.</p>
|
||||
125;125;en;<p>This is your body type if:</p><ul><li>You have an athletic physique like a sprinter, swimmer or gymnast</li><li>Wide clavicles and shoulders are typical of you</li><li>Your body is symmetrical</li><li>You have narrow hips and sporty, narrow waist</li><li>You have basically thinner joints but strong bones</li><li>Mesomorphs are more muscular than ectomorphs</li><li>You get muscular quickly</li><li>A mesomorph person has thicker bones and joints than an ectomorph</li><li>Your chest is wide compared to your waist</li><li>You have stronger calves and forearms than an ectomorph</li></ul><p>We can’t talk about 100% matching here too of course but this data is very important for personalisation. A mesomorph person can also has excess fat. In this case, the hip/chest ratio and behaviour of muscles are the deciding factors.</p>
|
||||
126;126;en;Description
|
||||
127;127;en;Make your first test
|
||||
128;128;en;finished
|
||||
129;129;en;-
|
||||
130;130;en;Your 1RM:
|
||||
131;131;en;Your Real 1RM:
|
||||
132;132;en;Check
|
||||
133;133;en;Test Exercise:
|
||||
134;134;en;Summary of your test
|
||||
135;135;en;Test
|
||||
136;136;en;1st Test Exercise
|
||||
137;137;en;2nd Test Exercise
|
||||
138;138;en;3rd Test Exercise
|
||||
139;139;en;Development
|
||||
140;140;en;Training Plan
|
||||
141;141;en;Please add an exercise plan
|
||||
142;142;en;Serie
|
||||
143;143;en;Repeats
|
||||
144;144;en;Save The Exercise To The Exercise Plan
|
||||
145;145;en;The number of the serie done with
|
||||
146;146;en;The number of the repeats of one serie
|
||||
147;147;en;reps
|
||||
148;148;en;1. Chest
|
||||
149;149;en;2. Biceps
|
||||
150;150;en;3. Triceps
|
||||
151;151;en;4. Back
|
||||
152;152;en;5. Shoulders
|
||||
153;153;en;6. Core
|
||||
154;154;en;7. Thigh
|
||||
155;155;en;8. Calf
|
||||
156;156;en;Execute My Selected Training Plan
|
||||
157;157;en;Create My Custom Plan
|
||||
158;158;en;Suggested Training Plan
|
||||
159;159;en;My Special Plan
|
||||
160;160;en;Training Programs
|
||||
161;161;en;My Trainee's Plan
|
||||
162;162;en;Execute My Trainee's Training Plan
|
||||
163;163;en;My Exercise Logs
|
||||
164;164;en;My Whole Body Development
|
||||
165;165;en;Development Of Muscles
|
||||
166;166;en;Predictions
|
||||
167;167;en;My Trainee's Exercise Logs
|
||||
168;168;en;My Development By Muscle
|
||||
169;169;en;Here you see your development in the last period.
|
||||
170;170;en;Sum Of Mass
|
||||
171;171;en;Percent
|
||||
172;172;en;One Rep Max
|
||||
173;173;en;One Rep Max
|
||||
174;174;en;<p>Knowing the maximum of one repetition which also known as 1RM, can be important to you in calculating the right WEIGHT and REPEAT for you. Execute the test correctly!</p><p>This way we can suggest the weights and repetitions that are best for you later. If building muscle or strength is your goal, it is essential to do the 1RM tests!</p><p><b>What is 1RM?</b></p><p>This is the weight what you are able to move at once properly. Upon the maximum weight exercise is performed correctly, we can derive the weight and number of repetitions which fits to your goals.</p>
|
||||
175;175;en;Detailed
|
||||
176;176;en;Weekly
|
||||
177;177;en;Monthly
|
||||
178;178;en;Yearly
|
||||
179;179;en;times!
|
||||
180;180;en;Please repeat with
|
||||
181;181;en;max times!
|
||||
182;182;en;Execute your active Exercise Plan!
|
||||
183;183;en;Select the muscle type and tap on the exercise. One the next page enter the weight and repeat.
|
||||
184;184;en;Custom Exercise Plan
|
||||
185;185;en;Select manually the exercises what you would like to have in your plan. At the end don't forget to save.
|
||||
186;186;en;In this list you can find all your completed exercises sorted by the date.
|
||||
187;187;en;Persistence!
|
||||
188;188;en;Greetings!
|
||||
189;189;en;The purpose is to measure your physical condition. Your first goal is to test all your muscle regions with a 'base' exercise.
|
||||
190;190;en;Go to the menu Strength - One Rep Max - Chest, and select your favourite exercise.
|
||||
191;191;en;Please continue your tests with a
|
||||
192;192;en;I suggest begin your tests with a 'chest' exercise
|
||||
193;193;en;Nice! This is a good start
|
||||
194;194;en;Go on!
|
||||
195;195;en;You are on track
|
||||
196;196;en;Not so much left
|
||||
197;197;en;Almost done!
|
||||
198;198;en;You have only 1-2 exercise left to finish!
|
||||
199;199;en;exercise!
|
||||
200;200;en;Chest
|
||||
201;201;en;Back
|
||||
202;202;en;Thigh
|
||||
203;203;en;Calf
|
||||
204;204;en;Bring me there
|
||||
205;205;en;My Body Development
|
||||
206;206;en;You see here your whole body development by muscle groups.
|
||||
207;207;en;Are you sure to logout?
|
||||
208;208;en;
|
||||
209;209;en;Are you sure to delete this exercise?
|
||||
210;210;en;I forgot the password
|
||||
211;211;en;Customer with the email not found. Please register or reset your password
|
||||
212;212;en;Customer does not exist or the password is wrong
|
||||
213;213;en;Customer does not exist or the password is wrong
|
||||
214;214;en;You have a previous Facebook login operation in progress
|
||||
215;215;en;Facebook login was not successful
|
||||
216;216;en;Facebook login cancelled
|
||||
217;217;en;Facebook login failed
|
||||
218;218;en;The account exists with different credential
|
||||
219;219;en;More »
|
||||
220;220;en;Done
|
||||
221;221;en;Height
|
||||
222;222;en;Height
|
||||
223;223;en;Bodyweight
|
||||
224;224;en;Bodyweight
|
||||
225;225;en;Based on your bodyweight and height your goal for BMI and weight:
|
||||
226;226;en;Body Mass Index
|
||||
227;227;en;first step
|
||||
228;228;en;Step
|
||||
229;229;en;goal
|
||||
230;230;en;Basal Metabolic Rate
|
||||
231;231;en;Resting Metabolic Rate
|
||||
232;232;en;Resting metabolic rate is the rate at which your body burns energy when it is at complete rest.
|
||||
233;233;en;Based on your bodyweight, height and activity this is your daily calory demand.
|
||||
234;234;en;Your Sizes
|
||||
235;235;en;Size Of Your
|
||||
236;236;en;Please type the following data:
|
||||
237;237;en;Cancel
|
||||
238;238;en;Available Devices
|
||||
239;239;en;select your equipments by tapping
|
||||
240;240;en;Available Equipments
|
||||
241;241;en;select your places by tapping
|
||||
242;242;en;Available Training Places
|
||||
243;243;en;Please take a relative bigger weight and repeat 12-30 times
|
||||
244;244;en;Please take a medium weight and repeat 20-30 times
|
||||
245;245;en;Equipment Filter
|
||||
246;246;en;Live-Server
|
||||
247;247;en;Test-Server
|
||||
248;248;en;All Exercises has been filtered out
|
||||
249;249;en;base
|
||||
250;250;en;Hypertrophy
|
||||
251;251;en;Gain Strength
|
||||
252;252;en;repeats
|
||||
253;253;en;minutes
|
||||
254;254;en;Rest time
|
||||
255;255;en;Suggestions based on your test
|
||||
256;256;en;Repeats volume
|
||||
257;257;en;Weight volume
|
||||
258;258;en;Calorie
|
||||
259;259;en;Max BPM
|
||||
260;260;en;Min BPM
|
||||
261;261;en;Average BPM
|
||||
262;262;en;Fatburn %
|
||||
263;263;en;Health Data Summary
|
||||
264;264;en;Congratulation!
|
||||
265;265;en;You have achieved to first 100% test round!
|
||||
266;266;en;Now you have unlocked: Development By Muscles and the Suggested Trainings Plan
|
||||
267;267;en;The
|
||||
268;268;en;the first
|
||||
269;269;en;the second
|
||||
270;270;en;the third
|
||||
271;271;en;Go Premium
|
||||
272;272;en;Unleash your potential with WorkoutTest Premium!
|
||||
273;273;en;feature is reachable after you finished
|
||||
274;274;en;100% test rounds
|
||||
275;275;en;Keep Testing
|
||||
276;276;en;Enjoy also this premium fetaure to show all old evaluation data of your successful exercises.
|
||||
277;277;en;Please define your Exercise Plan
|
||||
278;278;en;Go to: 'Training Plan' - 'Edit My Custom Plan'
|
||||
279;279;en;Jump there »
|
||||
280;280;en;Purchase was not successful
|
||||
281;281;en;Purchase was cancelled
|
||||
282;282;en;Successful Purchase
|
||||
283;283;en;Now you can use the premium features of WorkoutTest!
|
||||
284;284;en;Where do you stand achieving your tests?
|
||||
285;285;en;<p>It shows which muscle group test did your achieved already.</p><h2>When do you reach the 100% test round?</h2><br/><p>If you have sucessfully tested one of the <strong>base</strong> exercises of each muscle group</p>
|
||||
286;286;en;Unleash Your Development Now!
|
||||
287;287;en;Learn about your development, enjoy AI-driven predictions of all of your skills and bodyparts.
|
||||
288;288;en;Subscription Conditions
|
||||
289;289;en;Payment will be charged to your account. Subscription automatically renews unless auto-renew is turned off at least 24 hours before the end of the current period
|
||||
290;290;en;Account will be charged for renewal within 24 hours prior to the end of the current period
|
||||
291;291;en;Montly
|
||||
292;292;en;Annual
|
||||
293;293;en;Predictions with Artificial Intelligence
|
||||
294;294;en;14% discount
|
||||
295;295;en;2 months free
|
||||
296;296;en;Development programs
|
||||
297;297;en;Suggestions based on your actual status
|
||||
298;298;en;Special customized training plans
|
||||
299;299;en;Or type the time manually
|
||||
300;300;en;sec
|
||||
301;301;en;min
|
||||
302;302;en;Edit Profile
|
||||
303;303;en;Activity
|
||||
304;304;en;Body Type
|
||||
305;305;en;Goal
|
||||
306;306;en;Gain Muscle
|
||||
307;307;en;Weight Loss
|
||||
308;308;en;Set your goal
|
||||
309;309;en;Set your fitness level
|
||||
310;310;en;Set your body type
|
||||
311;311;en;These equipments and devices are available
|
||||
312;312;en;Successful Registration
|
||||
313;313;en;Now we would like to know you better to lift the experience of the app.
|
||||
314;314;en;Please go through the pages, it will take couple of minutes!
|
||||
315;315;en;Body Type Analyser
|
||||
316;316;en;How likely is it true about you?
|
||||
317;317;en;Not True
|
||||
318;318;en;Maybe
|
||||
319;319;en;True
|
||||
320;320;en;« Back
|
||||
321;321;en;1. I have basically a thin and bony physique
|
||||
322;322;en;2. Long limbs and narrow shoulders are typical of me
|
||||
323;323;en;3. It is difficult for me to build muscle
|
||||
324;324;en;4. My chest and waist are nearly the same width
|
||||
325;325;en;5. ’Chopstick’ was my nickname in the kindergarten
|
||||
326;326;en;6. I easily lose the muscle I built up
|
||||
327;327;en;7. To my knowledge, my body fat percentage is low
|
||||
328;328;en;8. Basically, I have a sporty and athletic physique
|
||||
329;329;en;9. I have a wide collarbone and shoulders
|
||||
330;330;en;10. My hips are narrow and my waist is sporty
|
||||
331;331;en;11. I get muscular quickly
|
||||
332;332;en;12. My chest is wider than my waist
|
||||
333;333;en;13. I could be the statue of David
|
||||
334;334;en;14. I have a strong calf and forearm
|
||||
335;335;en;15. I have a wide rib cage
|
||||
336;336;en;16. I have thick and wide joints
|
||||
337;337;en;17. My bones are strong
|
||||
338;338;en;18. My body is muscular but a little fatter
|
||||
339;339;en;19. My hips are wider than my chest
|
||||
340;340;en;20. Tun’ could be my nickname too
|
||||
341;341;en;21. I lose weight hard and gain weight more easily
|
||||
342;342;en;22. I have a strong and chunky physique
|
||||
343;343;en;Your Bodytype result
|
||||
344;344;en;Change the weight to
|
||||
345;345;en;Search Exercises...
|
||||
346;346;en;No exercise found
|
||||
347;347;en;Edit Your Training Test Set
|
||||
348;348;en;Start training
|
||||
349;349;en;Enjoy the exercises, good luck with the testing!
|
||||
350;350;en;Please continue with the next exercise in the queue:
|
||||
351;351;en;Or, you can redifine this exercise queue in the Compact Test menu
|
||||
352;352;en;you are able to do 12-20 repeats with
|
||||
353;353;en;You have an active Test Set!
|
||||
354;354;en;Do you want to override it?
|
||||
355;355;en;Press OK to continue
|
||||
356;356;en;Continue
|
||||
357;357;en; your
|
||||
358;358;en;\nyour plan is available for 24 hours
|
||||
359;359;en;Start
|
||||
360;360;en;Compact Test
|
||||
361;361;en;Custom Test
|
||||
362;362;en;Set
|
|
340
i18n/hu.csv
Normal file
340
i18n/hu.csv
Normal file
@ -0,0 +1,340 @@
|
||||
363;1;hu;OK
|
||||
364;2;hu;Hálózati hiba, kérlek próbáld meg később
|
||||
365;3;hu;Főoldal
|
||||
366;4;hu;Ügyfelek
|
||||
367;5;hu;Gyakorlatok
|
||||
368;6;hu;Tesztek
|
||||
369;7;hu;EDZÉS!
|
||||
370;8;hu;Bejelentkezés
|
||||
371;9;hu;Kijelentkezés
|
||||
372;11;hu;Nyelv
|
||||
373;12;hu;A jelszó min. 9 karakterből álljon
|
||||
374;13;hu;Kérlek írj be egy email címet
|
||||
375;17;hu;Regisztráció
|
||||
376;18;hu;Regisztráció
|
||||
378;14;hu;Kérlek fogadd el az adatvédelmi szabályzatunkat
|
||||
379;15;hu;Kérlek fogadd el az adatvédelmi szabályzatunkat.
|
||||
380;16;hu;További információkért kattints az 'Adatkezelés' linkre.
|
||||
381;19;hu;Adatkezelés
|
||||
382;20;hu;Nyelvválasztás
|
||||
383;21;hu;Angol
|
||||
384;22;hu;Magyar
|
||||
385;23;hu;Események
|
||||
386;24;hu;Fiók
|
||||
387;25;hu;Beállítások
|
||||
388;26;hu;Személyes adatok
|
||||
389;27;hu;Választott nyelv
|
||||
390;28;hu;Kérlek jelentkezz be
|
||||
391;29;hu;Kérlek jelentkezz be
|
||||
393;30;hu;A felhasználó nem létezik vagy a jelszó rossz.
|
||||
397;34;hu;Kérlek írj be egy email címet
|
||||
398;35;hu;A jelszó min. 9 karakterből álljon
|
||||
399;37;hu;Az előző bejelentkezés még folyamatban van.
|
||||
400;38;hu;Facebook bejelentkezés megszakítva
|
||||
401;31;hu;Facebook bejelentkezés sikertelen
|
||||
402;33;hu;Ezzel email címmel már regisztráltak
|
||||
403;36;hu;Google bejelentkezés sikertelen
|
||||
404;37;hu;Apple bejelentkezés sikertelen
|
||||
405;38;hu;Apple bejelentkezés megszakítva
|
||||
406;39;hu;Apple bejelentkezés sikertelen: email cím szükséges.
|
||||
407;32;hu;A felhasználói fiók már létezik más névvel
|
||||
409;40;hu;Hiba lépett fel a regisztráció során:
|
||||
411;41;hu;Kardió
|
||||
412;42;hu;400m
|
||||
413;43;hu;300m
|
||||
414;44;hu;Aerob
|
||||
415;45;hu;Anaerob
|
||||
416;46;hu;Cooper teszt
|
||||
417;47;hu;Erő
|
||||
418;48;hu;Erő állóképesség
|
||||
419;49;hu;Fekvőtámasz
|
||||
420;50;hu;Fekvőtámasz időre
|
||||
421;51;hu;Core (plank)
|
||||
422;52;hu;Guggolás
|
||||
423;53;hu;Felülés
|
||||
424;54;hu;1RM - Maxerő
|
||||
425;55;hu;Fekvenyomás
|
||||
426;56;hu;Húzódszkodás
|
||||
427;57;hu;Bicepsz
|
||||
428;58;hu;Tricepsz
|
||||
429;59;hu;Vállak
|
||||
430;60;hu;Testformálás
|
||||
431;61;hu;Testtömegindex
|
||||
432;62;hu;Alapanyagcsere
|
||||
433;53;hu;Méretek
|
||||
434;64;hu;Gyakorlat mentése:
|
||||
436;65;hu;Törlés
|
||||
442;66;hu;<p>Erőállóképességi teszt lényege, ahogy az 1RM tesztnél is, hogy a Neked megfelelő SÚLY és ISMÉTLÉS számot tudjuk javasolni. </p><p>Nagyon fontos, hogy szabályosan és a kért ismétléssel dolgozz!</p><p> Ha a célod a hosszabb távú erő fenntartása, netán sportoló vagy, akkor feltétlen teszteld az erőállóképességi modulunkat is.</p><br/><h2>Miért az erőállóképesség?</h2><p>Javítja az izmok oxigén és tápanyagellátottságát és ezáltal képes leszel egyre nagyobb súlyok egyre hosszabbtávon való megmozgatására. Például egyre több fekvőtámaszra és húzódzkodásra. </p><p>Kevésbé tömegnövelő hatású, ámbár atlétikus és nagyon erős testalkatot kölcsönöz, ha hosszútávon gyakorlod.</p>
|
||||
443;67;hu;<p>Az egy ismétléses maximum, vagy más néven 1RM ismerete számodra fontos lehet a Neked megfelelő SÚLY és ISMÉTLÉS kiszámításában. <p>Végezd el szabályosan(!) a tesztet, hogy a Neked legmegfelelőbb súlyokat és ismétléseket tudjuk javasolni a későbbiekben.</p> <p>Ha a célod az izom, vagy az erőnövelés, akkor feltétlen csináld meg az 1RM teszteket!</p><br/><h2>Mi az 1RM?</h2><p>Az a súly, amit egyetlen egyszer lennél képes szabályosan megmozgatni. Az egyszer szabályosan végrehajtott maximális súlyú gyakorlatból származtatjuk a céloknak megfelelő súly és ismétlésszámokat.</p>
|
||||
444;68;hu;Vezetéknév
|
||||
445;69;hu;Gyakorlat
|
||||
446;70;hu;Mennyiség
|
||||
447;71;hu;Egység
|
||||
448;72;hu;A gyakorlat időpontja
|
||||
449;73;hu;Kérlek írj be egy helyes számot 0-10000 között
|
||||
450;74;hu;Igen
|
||||
451;75;hu;Nem
|
||||
452;76;hu;
|
||||
453;77;hu;Elmented a gyakorlatot?
|
||||
454;83;hu;ismétlés
|
||||
455;84;hu;méter
|
||||
456;85;hu;százalék
|
||||
457;86;hu;kg
|
||||
458;87;hu;kilogramm
|
||||
459;88;hu;lbs
|
||||
460;89;hu;másodperc
|
||||
461;90;hu;Email
|
||||
462;91;hu;Jelszó
|
||||
463;92;hu;VAGY
|
||||
464;93;hu;Jelszó (üres, ha nincs változás)
|
||||
465;94;hu;Keresztnév
|
||||
466;95;hu;Születési év
|
||||
467;96;hu;Tömeg
|
||||
468;97;hu;Nemed
|
||||
469;98;hu;Férfi
|
||||
470;99;hu;Nő
|
||||
471;100;hu;Tovább
|
||||
472;101;hu;Válaszd ki a nemet
|
||||
473;102;hu;Mi a célod?
|
||||
474;103;hu;Izomépítés
|
||||
475;104;hu;Fogyás
|
||||
476;105;hu;Milyen a fizikai állapotod?
|
||||
477;106;hu;Fizikai állapot
|
||||
478;107;hu;Fizikai aktivitás
|
||||
479;108;hu;Kezdő
|
||||
480;109;hu;Kezdő / Újrakezdő vagyok
|
||||
481;110;hu;Középhaladó
|
||||
482;111;hu;1-3-szor mozgok egy héten
|
||||
483;112;hu;Haladó
|
||||
484;113;hu;4+ alkalommal sportolok egy héten
|
||||
485;114;hu;Professzionális
|
||||
486;115;hu;Professzionális sportoló vagyok
|
||||
487;117;hu;Milyen a testtípusod?
|
||||
488;116;hu;Nincs kiválasztott elem
|
||||
489;118;hu;Ektomorf
|
||||
490;119;hu;Endomorf
|
||||
491;120;hu;Mezomorf
|
||||
492;121;hu;Ekto-Mesomorf
|
||||
493;122;hu;Mezo-Endomorf
|
||||
494;123;hu;<p>A Te testtípusod, ha:</p><ul><li>alapvetően vékony testalkat vagy, mint a hosszútávfutók</li><li>hosszú végtagok, keskenyebb vállak</li><li>nehezen tudsz izomtömeget növelni</li><li>Mellkas és a derék szinte egyforma szélességű</li><li>Könnyen elveszíted a felszedett izmot</li><li>Meglehetősen alacsony a testzsírszázalék jellemez</li></ul><p>Természetesen, mint a többi testtípusnál itt sem beszélhetünk 100%-os egyezésről, de fontos a választás a személyre szabottság érdekében. Előfordul, hogy egy ectomorph zsírfelesleggel is rendelkezik. Ekkor az ízületek vékonysága és az izomzat viselkedése a döntő szempont.</p>,
|
||||
495;124;hu;<p>A te testtípusod, ha úgy érzed, hogy a testalkatod az ektomorf szöges ellentéte.</p><ul><li>Ha az erős megjelenésű testalkatod ellenére kevésbé érvényesülnek vizuálisan az izmok.</li><li>Ha nehezen szabadulsz meg a fölöslegtől</li><li>Nagyon könnyen erősödsz</li><li>Széles nagy térfogatú a bordakosár</li><li>Vastag erős ízületeid vannak</li><li>Ha a csípőben vagy erősebb</li></ul><p>Itt sem beszélhetünk 100%-os egyezésről, de fontos a személyre szabottság miatt. Előfordul, hogy egy endomorf nehezen különböztethető meg a mezomorftól. Ekkor vedd figyelembe a bordakosár méretét és a derekat. Oldalról egy mezomorf laposabb mellkassal, hassal rendelkezhet az eredendően „erős” tömöttebb endomorfhoz képest. Minden alma és körte forma ide sorolható.</p>
|
||||
496;125;hu;<p>A testtípusod, ha</p><ul><li>Sportos testalkat vagy, mint egy sprinter, úszó vagy tornász</li><li>Széles kulcscsontok és vállak</li><li>Szimmetrikus felépítés</li><li>Keskeny csípő és sportos keskeny derék</li><li>alapvetően vékonyabb ízületek, de erős csontok jellemeznek</li><li>izmosabbak, mint az ektomorfok</li><li>Gyorsan izmosodsz</li><li>vastagabbak a csontok és az ízületek az ekromorfhoz képest</li><li>mellkas a derékhez képest széles</li><li>erősebb vádli és alkar</li></ul><p>Természetesen, mint a többi testtípusnál itt sem beszélhetünk 100%-os egyezésről, de fontos a személyre szabottság miatt. Előfordul, hogy egy mezomorf zsírfelesleggel is rendelkezik. Ekkor a csípőcsont/mellkas arány és az izomzat viselkedése a döntő szempont.</p>
|
||||
497;126;hu;Leírás
|
||||
498;127;hu;Végezd el az első tesztet
|
||||
499;128;hu;végrehajtva
|
||||
500;129;hu;Miért szükséges a tesztgyakorlat?
|
||||
501;130;hu;Maxerőd (1RM):
|
||||
502;131;hu;Ellenőrzött maxerő:
|
||||
503;132;hu;Ellenőrzés
|
||||
504;139;hu;Fejlődésem
|
||||
505;140;hu;Edzéstervem
|
||||
506;141;hu;Kérlek add meg az edzéstervet a gyakorlathoz
|
||||
507;142;hu;Sorozat
|
||||
508;143;hu;Ismétlés
|
||||
509;144;hu;Gyakorlat mentése az edzéstervhez
|
||||
510;145;hu;Mennyi szériát csinálsz
|
||||
511;146;hu;Hány ismétlést csinálsz egy gyakorlaton belül
|
||||
512;148;hu;1. Mell
|
||||
513;149;hu;2. Bicepsz
|
||||
514;150;hu;3. Tricepsz
|
||||
515;151;hu;4. Hát
|
||||
516;152;hu;5. Váll
|
||||
517;152;hu;6. Has
|
||||
518;154;hu;7. Comb
|
||||
519;155;hu;8. Vádli
|
||||
520;156;hu;Edzésterv végrehajtása
|
||||
521;157;hu;Edzésterv létrehozása
|
||||
522;158;hu;Javasolt edzésterv
|
||||
523;159;hu;Speciális edzésterv
|
||||
524;160;hu;Edzés programok
|
||||
525;162;hu;Kliensem edzéstervének végrehajtása
|
||||
526;163;hu;Edzésnaplóm
|
||||
527;164;hu;Testem fejlődése
|
||||
528;165;hu;Izomcsoportok fejlődése
|
||||
529;166;hu;Előrejelzések
|
||||
530;167;hu;Kliensem edzésnaplőja
|
||||
531;168;hu;Izomcsoportok fejlődése
|
||||
532;169;hu;
|
||||
533;170;hu;Össztömeg
|
||||
534;171;hu;Százalék
|
||||
535;172;hu;Maxerő
|
||||
536;173;hu;Maxerő
|
||||
537;175;hu;Részletes
|
||||
538;176;hu;Heti
|
||||
539;177;hu;Havi
|
||||
540;178;hu;Éves
|
||||
541;179;hu;ismétléssel!
|
||||
542;180;hu;Kérlek ismételd meg
|
||||
543;181;hu; max. számú ismétléssel!
|
||||
544;182;hu;Hajtsd végre az aktív edzéstervedet
|
||||
545;183;hu;Válaszd ki az izomcsoporton belül a gyakorlatot, és a következő oldalon add meg a súlyt és az ismétlés számot.
|
||||
546;184;hu;Egyedi edzésterv
|
||||
547;185;hu;Állítsd össze a kívánt edzésedet! Add meg a gyakorlatot, a kívánt sorozat, ismétlés és a súly mennyiségét. Ha nem vagy biztos bennük, tesztelj! Sorozatok után vidd be a valós adatokat! Jó edzést!
|
||||
548;186;hu;Ebben a listában találod az eddig végrehajtott gyakorlataid dátum szerint csoportosítva.
|
||||
549;187;hu;Kitartás!
|
||||
550;188;hu;Üdvözöllek!
|
||||
551;189;hu;A cél a jelenlegi fizikai állapotod felmérése. Az első feladatod az összes izomcsoport tesztelése egy 'alap' gyakorlattal.
|
||||
553;190;hu;Menj a menüben az Erő - Max Erő - Mell menüpontba, és válaszd ki a kedvenc gyakorlatod.
|
||||
554;191;hu;Kérlek folytasd tesztelést egy
|
||||
555;192;hu;Azt javaslom, kezdd a teszteket egy 'mell' gyakorlattal
|
||||
556;193;hu;Nagyon jó! Ez egy kitűnő start a teszthez
|
||||
557;194;hu;Gyerünk tovább!
|
||||
558;195;hu;Jó úton haladsz
|
||||
559;196;hu;Már nincs sok hátra
|
||||
560;197;hu;Majdnem a végén vagy!
|
||||
561;198;hu;Már csak 1-2 gyakorlat van a hátra!
|
||||
562;199;hu;gyakorlattal!
|
||||
563;200;hu;mell
|
||||
564;201;hu;hát
|
||||
565;202;hu;comb
|
||||
566;203;hu;vádli
|
||||
567;204;hu;Vigyél oda
|
||||
568;205;hu;Testem fejlődése
|
||||
569;206;hu;Itt láthatod a tested fejlődését izomcsoportonként
|
||||
570;207;hu;Biztos, hogy kijelentkezel?
|
||||
571;208;hu; -mal
|
||||
579;209;hu;Biztos, hogy törlöd a gyakorlatot?
|
||||
580;210;hu;Elfelejtett jelszó
|
||||
581;212;hu;Ezzel az email címmel nem található felhasználó. Kérlek regisztálj vagy kérj jelszóemlékeztetőt
|
||||
582;219;hu;Részletek »
|
||||
583;220;hu;Kész
|
||||
584;221;hu;Magasság
|
||||
585;222;hu;Magasság
|
||||
586;223;hu;Testtömeg
|
||||
587;224;hu;Testtömeg
|
||||
588;225;hu;A jelenlegi adataid alapján kiszámoltuk Neked, hogy az ideális cél elérése érdekében az első lépést kell mihamarabb teljesítened. El tudod érni! Sok sikert!
|
||||
589;226;hu;Testtömegindex
|
||||
590;227;hu;első lépés
|
||||
591;229;hu;cél
|
||||
592;230;hu;Minimum energiaszükséglet
|
||||
593;231;hu;
|
||||
594;232;hu;Alapanyagcsere
|
||||
595;233;hu;A megadott adataid és aktivitásod alapján megközelítőleg ennyi a napi kalóriaszükségleted.
|
||||
596;234;hu;Méreteid
|
||||
597;235;hu;Testméret:
|
||||
598;236;hu;Kérlek írd be a következő adatot:
|
||||
599;237;hu;Mégsem
|
||||
600;238;hu;Edzés eszközök
|
||||
601;239;hu;válaszd ki az eszközeidet, kattints a képre
|
||||
602;240;hu;Elérhető eszközök
|
||||
603;241;hu;kattints az edzéshelyszínre
|
||||
604;242;hu;Elérhető edzéshelyszínek
|
||||
605;243;hu;Válassz egy relatív nagyobb súlyt, amivel maximum 12-20 közötti ismétlésre vagy képes
|
||||
606;245;hu;Eszköz szűrő
|
||||
607;246;hu;Live-Server
|
||||
608;247;hu;Test-Server
|
||||
609;248;hu;Az összes gyakorlatot kiszűrted
|
||||
610;249;hu;alap
|
||||
611;250;hu;Izomnövelés
|
||||
612;251;hu;Erőnövelés
|
||||
613;252;hu;ismétlés
|
||||
614;254;hu;Pihenőidő
|
||||
615;253;hu;perc
|
||||
616;255;hu;Javaslatok a teszted alapján
|
||||
617;256;hu;Össz. ismétlés
|
||||
618;257;hu;Össztömeg
|
||||
619;258;hu;Kalória
|
||||
620;258;hu;Max pulzus
|
||||
621;260;hu;Min pulzus
|
||||
622;261;hu;Átl pulzus
|
||||
623;262;hu;Zsírégetés %
|
||||
624;263;hu;Egészségadatok összefoglalás
|
||||
626;264;hu;Gratulálok!
|
||||
627;265;hu;Teljesítetted az első 100%-os tesztköröd!
|
||||
628;266;hu;Mostantól elérheted az 'Izomcsoportok fejlődése' és a 'Javasolt edzésterv' kategóriákat.
|
||||
629;267;hu;A
|
||||
630;268;hu;az első
|
||||
631;269;hu;a második
|
||||
632;270;hu;a harmadik
|
||||
633;271;hu;Válts Prémiumra
|
||||
634;272;hu;Bontakoztasd ki az erősségeidet WorkoutTest Prémiummal!
|
||||
635;273;hu;funkció elérhető számodra, miután teljesítetted
|
||||
636;274;hu;100%-os teszt-köröd
|
||||
637;275;hu;Folytasd a tesztelést
|
||||
638;276;hu;Élvezd ezt a prémium funkciót is, amely megjeleníti a korábbi gyakorlatok teljes kiértékelését
|
||||
639;277;hu;Kérlek készíts edzéstervet!
|
||||
640;278;hu;Menj a 'Edzéstervem' - 'Egyéni edzésterv' menübe
|
||||
641;279;hu;Vigyél oda »
|
||||
642;280;hu;A vásárlás sikertelen volt
|
||||
643;281;hu;A vásárlás megszakadt
|
||||
644;282;hu;Sikeres vásárlás!
|
||||
645;283;hu;Most már eléred a WorkoutTest prémium tartalmait.
|
||||
646;284;hu;Hol tartasz a tesztek végrehajtásában?
|
||||
647;285;hu;<p>Az előrehaladás jelző megmutatja, hogy hány százalékon állsz a tesztek végrehajtásában.</p><h2>Mikor éred el a 100%-os tesztkört?</h2><br/><p>Ha <strong>minden</strong> izomcsoportnál legalább egy <strong>alapgyakorlatot</strong> teljesítesz.<p>Az alapgyakorlatokat a menüponton narancssárgya <strong>alap</strong> pecséttel jelöltük</p>
|
||||
648;286;hu;Indítsd el a fejlődésed most!
|
||||
649;287;hu;Kövesd nyomon a fejlődésed, élvezd a mesterséges intelligenciával támogatott javaslatokat és előrejelzéseket.
|
||||
650;288;hu;Előfizetési feltételek
|
||||
651;289;hu;A számládat megterheljük az adott összeggel. Az előfizetés automatikusan meghosszabodik, hacsak nem kapcsolod ki az automatikus megújítást legkésőbb 24 órával a meghosszabbítás előtt.
|
||||
652;290;hu;Az előfizetési periódus végén a számládat megterheljuk 24 órával a lejárat előtt.
|
||||
653;291;hu;Havi
|
||||
654;292;hu;Éves
|
||||
655;293;hu;Mesterséges Intelligencia előrejelzések
|
||||
656;294;hu;14% kedvezmény
|
||||
657;295;hu;2 hónap ingyen
|
||||
658;296;hu;Fejlesztési programok
|
||||
659;297;hu;Intelligens javaslatok az állapotod alapján
|
||||
660;298;hu;Speciális testreszabott edzéstervek
|
||||
662;299;hu;Vagy jelöld ki az időt kézzel
|
||||
663;300;hu;mp
|
||||
664;301;hu;perc
|
||||
665;302;hu;Profil szerkesztése
|
||||
666;303;hu;Fizikai állapot
|
||||
667;304;hu;Testtípus
|
||||
668;305;hu;Cél
|
||||
669;306;hu;Izomépítés
|
||||
670;307;hu;Fogyás
|
||||
671;308;hu;Mi a célod?
|
||||
672;309;hu;Milyen a fizikai állapotod?
|
||||
673;310;hu;Milyen a testtípusod?
|
||||
674;311;hu;Ezek az eszközök állnak a rendelkezésedre
|
||||
675;312;hu;Sikeres regisztráció
|
||||
676;313;hu;Most meg szeretnénk téged jobban ismerni, hogy az applikáció jobban illeszkedjen hozzád.
|
||||
677;314;hu;Kérlek menj át a következő oldalakon, néhány percet vesz csak igénybe!
|
||||
678;315;hu;Testtípus analizátor
|
||||
679;316;hu;Mennyire igaz rád az állítás?
|
||||
680;317;hu;Biztos nem
|
||||
681;318;hu;Talán
|
||||
682;319;hu;Biztosan
|
||||
683;320;hu;« Vissza
|
||||
684;321;hu;1. Alapvetően vékony, csontos testalkat vagyok
|
||||
685;322;hu;2. Hosszú végtagok, keskeny vállak jellemzőek rám
|
||||
686;323;hu;3. Nehezen tudok izmot növelni
|
||||
687;324;hu;4. Mellkasom, derekam közel egyforma szélességű
|
||||
688;325;hu;5. Pálcika volt a becenevem az oviban
|
||||
689;326;hu;6. Könnyen elveszítem a felszedett izmot
|
||||
690;327;hu;7. Tudtommal alacsony a testzsírom
|
||||
691;328;hu;8. Alapvetően sportos, atletikus testalkat vagyok
|
||||
692;329;hu;9. Széles kulcscsontom és vállam van
|
||||
693;330;hu;10. Keskeny a csípőm és sportos a derekam
|
||||
694;331;hu;11. Gyorsan izmosodok
|
||||
695;332;hu;12. Szélesebb a mellkasom a derekamnál
|
||||
696;333;hu;13. Akár lehetnék én a Dávid szobor
|
||||
697;334;hu;14. Erős vádli és alkar jellemez
|
||||
698;335;hu;15. Széles bordakosaram van
|
||||
699;336;hu;16. Vastag, széles ízületeim vannak
|
||||
700;337;hu;17. Erős a csontozatom
|
||||
701;338;hu;18. Zsírosabb, de izmos vagyok
|
||||
702;339;hu;19. Szélesebb a csípőm a mellkasomnál
|
||||
703;340;hu;20. Hordó is lehetne a becenevem
|
||||
704;341;hu;21. Nehezen fogyok, könnyebben hízok
|
||||
705;342;hu;22. Erős, vaskos testalkat vagyok
|
||||
706;343;hu;Testtípus eredményed
|
||||
707;344;hu;Súly változtatása
|
||||
708;345;hu;Gyakorlat keresése...
|
||||
709;346;hu;Nincs ilyen gyakorlat
|
||||
710;347;hu;Válaszd ki a gyakorlatokat
|
||||
711;348;hu;Edzés kezdése
|
||||
712;349;hu;Élvezd a gyakorlatokat, sok sikert a teszteléshez!
|
||||
713;350;hu;Kérlek folytasd a következő gyakorlattal:
|
||||
714;351;hu;Vagy változtatsd meg a gyakorlatokat a Tesztközpontban
|
||||
715;352;hu;amivel képes vagy 12-20 ismétlésre
|
||||
716;353;hu;Van egy aktiv tesztköröd!
|
||||
717;354;hu;Felülírod?
|
||||
718;355;hu;Nyomd meg az OK-t a folytatáshoz
|
||||
719;356;hu;Folytatsd
|
||||
720;357;hu;
|
||||
721;358;hu;\na teszt 24 óráig aktív
|
||||
722;359;hu;Kezdd el
|
||||
723;360;hu;Kompakt teszt
|
||||
724;361;hu;Egyedi teszt
|
||||
725;362;hu;Széria
|
|
362
i18n/key.csv
Normal file
362
i18n/key.csv
Normal file
@ -0,0 +1,362 @@
|
||||
1;OK;;0
|
||||
2;Network Error, please try again later;;0
|
||||
3;Home;;0
|
||||
4;Customers;;0
|
||||
5;Exercises;;0
|
||||
6;TRAINING!;;0
|
||||
7;Login;;0
|
||||
8;Logout;;0
|
||||
9;SignUp with Email;;0
|
||||
10;Tests;;0
|
||||
11;Change Language;;0
|
||||
12;Password too short;;0
|
||||
13;Please type an email address;;0
|
||||
14;"Exception; Please accept our data policy";;0
|
||||
15;Please accept our data protection policy.;;0
|
||||
16;For more information please click on 'Privacy';;0
|
||||
17;SignUp;;0
|
||||
18;SignUpLink;;0
|
||||
19;Privacy;;0
|
||||
20;Change App Language;;0
|
||||
21;English;;0
|
||||
22;Hungarian;;0
|
||||
23;Events;;0
|
||||
24;Account;;0
|
||||
25;Settings;;0
|
||||
26;Profile;;0
|
||||
27;Selected Language;;0
|
||||
28;Please log in;;0
|
||||
29;Exception: Please log in;;0
|
||||
30;Exception. Customer does not exist or the password is wrong;;0
|
||||
31;Exception: Facebook signup was not successful. Please try another method;;0
|
||||
32;Exception: Customer exists;;0
|
||||
33;Exception: The email address has been registered already;;0
|
||||
34;Exception: Please type an email address;;0
|
||||
35;Exception: Password too short;;0
|
||||
36;Exception: Google Sign In failed;;0
|
||||
37;Exception: Apple Sign-In failed;;0
|
||||
38;Exception: Apple Sign-In cancelled;;0
|
||||
39;"Exception: Apple Sign In failure; email address is necessary";;0
|
||||
40;There is an error: during registration:;;0
|
||||
41;Cardio;;0
|
||||
42;400m;;0
|
||||
43;300m;;0
|
||||
44;Aerobic;;0
|
||||
45;Anaerobic;;0
|
||||
46;Cooper;;0
|
||||
47;Strength;;0
|
||||
48;Endurance;;0
|
||||
49;Pushups;;0
|
||||
50;Timed Pushups;;0
|
||||
51;Core;;0
|
||||
52;Squats;;0
|
||||
53;Sit-ups;;0
|
||||
54;1RM;;0
|
||||
55;Chest Press;;0
|
||||
56;Pull Ups;;0
|
||||
57;Biceps;;0
|
||||
58;Triceps;;0
|
||||
59;Shoulders;;0
|
||||
60;Body Compositions;;0
|
||||
61;BMI;;0
|
||||
62;BMR;;0
|
||||
63;Sizes;;0
|
||||
64;Save Exercise;;0
|
||||
65;Delete;;0
|
||||
66;Endurance_desc;;0
|
||||
67;OneRepMax_desc;;0
|
||||
68;Name;;0
|
||||
69;Exercise;;0
|
||||
70;Quantity;;0
|
||||
71;Unit;;0
|
||||
72;Exercise date and time;;0
|
||||
73;Please type the right quantity 0-1000;;0
|
||||
74;Yes;;0
|
||||
75;No;;0
|
||||
76;with;;0
|
||||
77;Do you save this exercise with these parameters?;;0
|
||||
78;The number of the exercise;;0
|
||||
79;The number of the exercise done with;;0
|
||||
80;Please repeat with;;0
|
||||
81;Execute the;;0
|
||||
82;set!;;0
|
||||
83;repeat;;0
|
||||
84;meter;;0
|
||||
85;percent;;0
|
||||
86;kg;;0
|
||||
87;kilogram;;0
|
||||
88;lbs;;0
|
||||
89;second;;0
|
||||
90;Email;;0
|
||||
91;Password;;0
|
||||
92;OR;;0
|
||||
93;Password (Leave empty if no change);;0
|
||||
94;First Name;;0
|
||||
95;Birth Year;;0
|
||||
96;Weight;;0
|
||||
97;Gender;;0
|
||||
98;Man;;0
|
||||
99;Woman;;0
|
||||
100;Next;;0
|
||||
101;Select a gender;;0
|
||||
102;Set Your Goals;;0
|
||||
103;Gain Muscle;;0
|
||||
104;Loose Weight;;0
|
||||
105;Your Fitness State;;0
|
||||
106;Fitness level;;0
|
||||
107;Fitness Activity;;0
|
||||
108;Beginner;;0
|
||||
109;I am beginner;;0
|
||||
110;Intermediate;;0
|
||||
111;I am intermediate;;0
|
||||
112;Advanced;;0
|
||||
113;I am advanced;;0
|
||||
114;Professional;;0
|
||||
115;I am professional;;0
|
||||
116;No item selected;;0
|
||||
117;Your Body Type;;0
|
||||
118;Ectomorph;;0
|
||||
119;Endomorph;;0
|
||||
120;Mesomorph;;0
|
||||
121;Ecto-Mesomorph;;0
|
||||
122;Meso-Endomorph;;0
|
||||
123;Ectomorph_desc;;0
|
||||
124;Endomorph_desc;;0
|
||||
125;Mesomorph_desc;;0
|
||||
126;Description;;0
|
||||
127;Make your first test;;0
|
||||
128;finished;;0
|
||||
129;Why do you need Exercise Control? ;;0
|
||||
130;"Your 1RM;";;0
|
||||
131;"Your Real 1RM;";;0
|
||||
132;Check;;0
|
||||
133;"Control Exercise;";;0
|
||||
134;Summary of your test;;0
|
||||
135;Test;;0
|
||||
136;1st Control;;0
|
||||
137;2nd Control;;0
|
||||
138;3rd Control;;0
|
||||
139;My Development;;0
|
||||
140;My Training Plan;;0
|
||||
141;Please add an exercise plan;;0
|
||||
142;Serie;;0
|
||||
143;Repeats;;0
|
||||
144;Save The Exercise To The Exercise Plan;;0
|
||||
145;The number of the serie done with;;0
|
||||
146;The number of the repeats of one serie;;0
|
||||
147;reps;;0
|
||||
148;1. Chest;;0
|
||||
149;2. Biceps;;0
|
||||
150;3. Triceps;;0
|
||||
151;4. Back;;0
|
||||
152;5. Shoulders;;0
|
||||
153;6. Core;;0
|
||||
154;7. Thigh;;0
|
||||
155;8. Calf;;0
|
||||
156;Execute My Selected Training Plan;;0
|
||||
157;Edit My Custom Plan;;0
|
||||
158;Suggested Training Plan;;0
|
||||
159;My Special Plan;;0
|
||||
160;Training Programs;;0
|
||||
161;My Trainee's Plan;;0
|
||||
162;Execute My Trainee's Training Plan;;0
|
||||
163;My Exercise Logs;;0
|
||||
164;My Whole Body Development;;0
|
||||
165;Development Of Muscles;;0
|
||||
166;Predictions;;0
|
||||
167;My Trainee's Exercise Logs;;0
|
||||
168;My Development By Muscle;;0
|
||||
169;Here you see you development in the last period. ;;0
|
||||
170;Sum Of Mass;;0
|
||||
171;Percent;;0
|
||||
172;One Rep Max;;0
|
||||
173;OneRepMax;;0
|
||||
174;onerepmax_desc;;0
|
||||
175;Detailed;;0
|
||||
176;Weekly;;0
|
||||
177;Monthly;;0
|
||||
178;Yearly;;0
|
||||
179;times!;;0
|
||||
180;Please repeat with ;;0
|
||||
181;max times!;;0
|
||||
182;Execute your active Exercise Plan!;;0
|
||||
183;Select the muscle type and tap on the exercise. One the next page enter the weight and repeat.;;0
|
||||
184;Custom Exercise Plan;;0
|
||||
185;Select manually the exercises what you would like to have in your plan. At the end don't forget to save.;;0
|
||||
186;In this list you will find all your executed exercises grouped by the date.;;0
|
||||
187;Persistence!;;0
|
||||
188;Greetings!;;0
|
||||
189;The purpose is to measure you physical condition;;0
|
||||
190;Go to the menu Strength - One Rep Max - Chest, and select your favourite exercise.;;0
|
||||
191;Please continue your tests with a;;0
|
||||
192;I suggest begin your tests with a;;0
|
||||
193;Nice! This is a good start;;0
|
||||
194;Go on!;;0
|
||||
195;You are on track;;0
|
||||
196;Not so much left;;0
|
||||
197;Almost!;;0
|
||||
198;You have only 1-2 exercise left to finish!;;0
|
||||
199;exercise!;;0
|
||||
200;Chest;;0
|
||||
201;Back;;0
|
||||
202;Thigh;;0
|
||||
203;Calf;;0
|
||||
204;Bring me there;;0
|
||||
205;My Body Development;;0
|
||||
206;You see here your whole body development by muscle groups.;;0
|
||||
207;Are you sure to logout?;;0
|
||||
208;hu_with;;0
|
||||
209;Are you sure to delete this exercise?;;0
|
||||
210;I forgot the password;;0
|
||||
211;"Exception; Instance of 'NotFoundException'";;0
|
||||
212;Customer does not exist or the password is wrong;;0
|
||||
213;The email does not exist or the password is wrong;;0
|
||||
214;"Exception; You have a previous Facebook login operation in progress";;0
|
||||
215;"Exception; Facebook login was not successful";;0
|
||||
216;"Exception; Facebook login cancelled";;0
|
||||
217;"Exception; Facebook login failed";;0
|
||||
218;"Exception; The account exists with different credential";;0
|
||||
219;More »;;0
|
||||
220;Done;;0
|
||||
221;Height;;0
|
||||
222;Actual Height;;0
|
||||
223;Actual Weight;;0
|
||||
224;Bodyweight;;0
|
||||
225;"Based on your weight and height your goal for BMI and weight;";;0
|
||||
226;Body Mass Index;;0
|
||||
227;first step;;0
|
||||
228;Step;;0
|
||||
229;goal;;0
|
||||
230;Basal Metabolic Rate;;0
|
||||
231;Resting Metabolic Rate;;0
|
||||
232;Resting metabolic rate is the rate at which your body burns energy when it is at complete rest.;;0
|
||||
233;Based on your weight, height and activity your BMR value;;0
|
||||
234;Your Sizes;;0
|
||||
235;Size Of Your;;0
|
||||
236;"Please type the following data;";;0
|
||||
237;Cancel;;0
|
||||
238;Available Devices;;0
|
||||
239;select your equipments by tapping;;0
|
||||
240;Available Equipments;;0
|
||||
241;select your places by tapping;;0
|
||||
242;Available Training Places;;0
|
||||
243;Please take a relative bigger weight and repeat 12-30 times;;0
|
||||
244;Please take a medium weight and repeat 20-30 times;;0
|
||||
245;Equipment Filter;;0
|
||||
246;Live-Server;;0
|
||||
247;Test-Server;;0
|
||||
248;All Exercises has been filtered out;;0
|
||||
249;base;;0
|
||||
250;Hypertrophy;;0
|
||||
251;Gain Strength;;0
|
||||
252;repeats;;0
|
||||
253;minutes;;0
|
||||
254;Rest time;;0
|
||||
255;Suggestions based on your test;;0
|
||||
256;Repeats volume;;0
|
||||
257;Weight volume;;0
|
||||
258;Calorie;;0
|
||||
259;Max BPM;;0
|
||||
260;Min BPM;;0
|
||||
261;Average BPM;;0
|
||||
262;Fatburn %;;0
|
||||
263;Health Data Summary;;0
|
||||
264;Congratulation!;;0
|
||||
265;You have achieved to first 100% test-round!;;0
|
||||
266;"Now you unlocked; Development By Muscles and the Suggested Trainings Plan";;0
|
||||
267;The;;0
|
||||
268;the first;;0
|
||||
269;the second;;0
|
||||
270;the third;;0
|
||||
271;Go Premium;;0
|
||||
272;Unleash your potential with WorkoutTest Premium!;;0
|
||||
273;feature is reachable after you finished;;0
|
||||
274;100% test circles;;0
|
||||
275;Keep testing;;0
|
||||
276;Enjoy also this premium fetaure to show all old evaluation data of your successful exercises.;;0
|
||||
277;Please define your Exercise Plan;;0
|
||||
278;"Go to; 'Training Plan' - 'Edit My Custom Plan'";;0
|
||||
279;Jump there »;;0
|
||||
280;"Exception; Purchase was not successful";;0
|
||||
281;"Exception; Purchase was cancelled";;0
|
||||
282;Successful Purchase;;0
|
||||
283;Now you can use the premium features of WorkoutTest!;;0
|
||||
284;Progressindicator for the tests;;0
|
||||
285;Progressindicator_desc;;0
|
||||
286;Unleash Your Development Now!;;0
|
||||
287;Learn about your development, enjoy AI-driven predictions of all of your skills and bodyparts.;;0
|
||||
288;Subscription Conditions;;0
|
||||
289;Payment will be charged to your account. Subscription automatically renews unless auto-renew is turned off at least 24 hours before the end of the current period;;0
|
||||
290;Account will be charged for renewal within 24 hours prior to the end of the current period;;0
|
||||
291;Montly;;0
|
||||
292;Annual;;0
|
||||
293;Predictions with Artificial Intelligence;;0
|
||||
294;14% discount;;0
|
||||
295;2 months free;;0
|
||||
296;Development programs;;0
|
||||
297;Suggestions based on your actual status;;0
|
||||
298;Special customized training plans;;0
|
||||
299;"Or type the time manually;";;0
|
||||
300;sec;;0
|
||||
301;min;;0
|
||||
302;Edit Profile;;0
|
||||
303;Activity;;0
|
||||
304;Body Type;;0
|
||||
305;Goal;;0
|
||||
306;gain_muscle;;0
|
||||
307;weight_loss;;0
|
||||
308;Set your goal;;0
|
||||
309;Set your fitness level;;0
|
||||
310;Set your body type;;0
|
||||
311;These equipments and devices are available;;0
|
||||
312;Successful Registration;;0
|
||||
313;Now we would like to know you better to lift the experience of the app.;;0
|
||||
314;Please go through the pages, it will take couple of minutes!;;0
|
||||
315;Body Type Analyser;;0
|
||||
316;How likely is it true about you?;;0
|
||||
317;Very unlikely;;0
|
||||
318;Maybe;;0
|
||||
319;Very likely;;0
|
||||
320;« Back;;0
|
||||
321;1. Basicly I am skinny and bonny;;0
|
||||
322;2. question;;0
|
||||
323;3. question;;0
|
||||
324;4. question;;0
|
||||
325;5. question;;0
|
||||
326;6. question;;0
|
||||
327;7. question;;0
|
||||
328;8. question;;0
|
||||
329;9. question;;0
|
||||
330;10. question;;0
|
||||
331;11. question;;0
|
||||
332;12. question;;0
|
||||
333;13. question;;0
|
||||
334;14. question;;0
|
||||
335;15. question;;0
|
||||
336;16. question;;0
|
||||
337;17. question;;0
|
||||
338;18. question;;0
|
||||
339;19. question;;0
|
||||
340;20. question;;0
|
||||
341;21. question;;0
|
||||
342;22. question;;0
|
||||
343;Your Bodytype result;;0
|
||||
344;Change the weight to;;0
|
||||
345;Search Exercises...;;0
|
||||
346;No exercise found;;0
|
||||
347;Edit Your Training Test Set;;0
|
||||
348;Start training;;0
|
||||
349;Enjoy the exercises, good luck with the testing!;;0
|
||||
350;"Please continue with the next exercise in the queue;";;0
|
||||
351;Or, you can redifine this exercise queue in the Compact Test menu;;0
|
||||
352;you are able to do 12-20 repeats with;;0
|
||||
353;You have an active Test Set!;;0
|
||||
354;Do you want to override it?;;0
|
||||
355;Press OK to continue;;0
|
||||
356;Continue;;0
|
||||
357; your ;;0
|
||||
358;\nyour plan is available for 24 hours;;0
|
||||
359;Start;;0
|
||||
360;Compact Test;;0
|
||||
361;Custom Test;;0
|
||||
362;Set;;0
|
|
@ -56,6 +56,7 @@ import 'package:aitrainer_app/util/app_localization.dart';
|
||||
import 'package:flutter_uxcam/flutter_uxcam.dart';
|
||||
import 'package:google_fonts/google_fonts.dart';
|
||||
import 'package:sentry_flutter/sentry_flutter.dart';
|
||||
import 'package:smartlook/smartlook.dart';
|
||||
import 'package:upgrader/upgrader.dart';
|
||||
import 'bloc/account/account_bloc.dart';
|
||||
import 'bloc/body_development/body_development_bloc.dart';
|
||||
@ -146,8 +147,15 @@ Future<Null> main() async {
|
||||
WidgetsFlutterBinding.ensureInitialized();
|
||||
if (!isInDebugMode) {
|
||||
FlutterUxcam.startWithKey("wvdstyoml4tiwfd");
|
||||
|
||||
SetupOptions options = (
|
||||
new SetupOptionsBuilder('682883e5cd71a46160c4f6ed070530ee593f49c6')
|
||||
).build();
|
||||
Smartlook.setupAndStartRecording(options);
|
||||
}
|
||||
|
||||
|
||||
|
||||
print(" -- FireBase init..");
|
||||
|
||||
runApp(MultiBlocProvider(
|
||||
|
@ -38,6 +38,7 @@ import 'package:package_info/package_info.dart';
|
||||
import 'package:shared_preferences/shared_preferences.dart';
|
||||
import 'package:aitrainer_app/model/exercise_type.dart';
|
||||
import 'package:intl/intl.dart';
|
||||
import 'package:smartlook/smartlook.dart';
|
||||
|
||||
import 'customer_exercise_device.dart';
|
||||
import 'exercise_device.dart';
|
||||
@ -689,9 +690,9 @@ class Cache with Logging {
|
||||
|
||||
if (!isInDebugMode) {
|
||||
FlurryData.setUserId(customerId.toString());
|
||||
//Smartlook.setUserIdentifier(customerId.toString());
|
||||
FlutterUxcam.setUserProperty("username", customerId.toString());
|
||||
FlutterUxcam.setUserIdentity(customerId.toString());
|
||||
Smartlook.setUserIdentifier(customerId.toString());
|
||||
Track().track(TrackingEvent.enter);
|
||||
}
|
||||
|
||||
@ -701,7 +702,7 @@ class Cache with Logging {
|
||||
});
|
||||
|
||||
print("Firebase token save: $firebaseMessageToken");
|
||||
if (userLoggedIn!.firebaseRegToken == null && firebaseMessageToken != null) {
|
||||
if (firebaseMessageToken != null) {
|
||||
userLoggedIn!.firebaseRegToken = firebaseMessageToken;
|
||||
CustomerRepository customerRepository = CustomerRepository();
|
||||
customerRepository.customer = userLoggedIn;
|
||||
|
@ -62,10 +62,20 @@ class FirebaseApi with logging.Logging {
|
||||
badge: true,
|
||||
sound: true,
|
||||
);
|
||||
this.firebaseRegToken = await FirebaseMessaging.instance.getToken();
|
||||
this.firebaseRegToken = await FirebaseMessaging.instance.getToken();
|
||||
Cache().firebaseMessageToken = firebaseRegToken;
|
||||
FirebaseMessaging.onBackgroundMessage(_firebaseMessagingBackgroundHandler);
|
||||
log("FirebaseMessaging token $firebaseRegToken");
|
||||
|
||||
FirebaseMessaging.onBackgroundMessage(_firebaseMessagingBackgroundHandler);
|
||||
FirebaseMessaging.onMessage.listen((RemoteMessage message) {
|
||||
print('Got a message whilst in the foreground!');
|
||||
print('Message data: ${message.data}');
|
||||
|
||||
if (message.notification != null) {
|
||||
print('Message also contained a notification: ${message.notification}');
|
||||
}
|
||||
});
|
||||
|
||||
} catch (e) {
|
||||
// Set `_error` state to true if Firebase initialization fails
|
||||
log("Error initializing Firebase");
|
||||
|
@ -8,6 +8,7 @@ import 'package:firebase_analytics/firebase_analytics.dart';
|
||||
import 'package:firebase_messaging/firebase_messaging.dart';
|
||||
import 'package:flurry_data/flurry_data.dart';
|
||||
import 'package:flutter_uxcam/flutter_uxcam.dart';
|
||||
import 'package:smartlook/smartlook.dart';
|
||||
|
||||
class Track with Logging {
|
||||
static final Track _singleton = Track._internal();
|
||||
@ -22,7 +23,7 @@ class Track with Logging {
|
||||
void track(TrackingEvent event, {String eventValue = ""}) {
|
||||
if (!isInDebugMode) {
|
||||
FlurryData.logEvent(event.enumToString());
|
||||
// Smartlook.setGlobalEventProperty(event.toString(), eventValue, false);
|
||||
Smartlook.setGlobalEventProperty(event.toString(), eventValue, false);
|
||||
FlutterUxcam.logEventWithProperties(event.enumToString(), {"value": eventValue});
|
||||
model.Tracking tracking = model.Tracking();
|
||||
//analytics.logEvent(name: event.enumToString(), parameters: {"value": eventValue});
|
||||
|
127
pubspec.lock
127
pubspec.lock
@ -7,14 +7,14 @@ packages:
|
||||
name: _fe_analyzer_shared
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "19.0.0"
|
||||
version: "27.0.0"
|
||||
analyzer:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: analyzer
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.3.0"
|
||||
version: "2.4.0"
|
||||
animated_widgets:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@ -42,7 +42,7 @@ packages:
|
||||
name: async
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.6.1"
|
||||
version: "2.8.1"
|
||||
badges:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@ -56,14 +56,14 @@ packages:
|
||||
name: bloc
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "7.0.0"
|
||||
version: "7.2.1"
|
||||
bloc_test:
|
||||
dependency: "direct dev"
|
||||
description:
|
||||
name: bloc_test
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "8.1.0"
|
||||
version: "8.2.0"
|
||||
boolean_selector:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -77,42 +77,42 @@ packages:
|
||||
name: build
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.0.0"
|
||||
version: "2.1.1"
|
||||
build_config:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: build_config
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.4.7"
|
||||
version: "1.0.0"
|
||||
build_daemon:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: build_daemon
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.1.10"
|
||||
version: "3.0.1"
|
||||
build_resolvers:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: build_resolvers
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.0.0"
|
||||
version: "2.0.4"
|
||||
build_runner:
|
||||
dependency: "direct dev"
|
||||
description:
|
||||
name: build_runner
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.12.2"
|
||||
version: "2.1.4"
|
||||
build_runner_core:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: build_runner_core
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "6.1.12"
|
||||
version: "7.2.2"
|
||||
built_collection:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -147,7 +147,7 @@ packages:
|
||||
name: charcode
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.2.0"
|
||||
version: "1.3.1"
|
||||
checked_yaml:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -161,7 +161,7 @@ packages:
|
||||
name: chewie
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.0.0"
|
||||
version: "1.1.0"
|
||||
chewie_audio:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -189,7 +189,7 @@ packages:
|
||||
name: code_builder
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "3.7.0"
|
||||
version: "4.1.0"
|
||||
collection:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -252,14 +252,14 @@ packages:
|
||||
name: cupertino_icons
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.0.2"
|
||||
version: "1.0.3"
|
||||
dart_style:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: dart_style
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.0.0"
|
||||
version: "2.2.0"
|
||||
device_info:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -336,7 +336,7 @@ packages:
|
||||
name: firebase_analytics
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "8.3.0"
|
||||
version: "8.3.3"
|
||||
firebase_analytics_platform_interface:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -357,28 +357,28 @@ packages:
|
||||
name: firebase_auth
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "3.0.2"
|
||||
version: "3.1.2"
|
||||
firebase_auth_platform_interface:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: firebase_auth_platform_interface
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "6.0.1"
|
||||
version: "6.1.1"
|
||||
firebase_auth_web:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: firebase_auth_web
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "3.0.1"
|
||||
version: "3.1.1"
|
||||
firebase_core:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
name: firebase_core
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.5.0"
|
||||
version: "1.7.0"
|
||||
firebase_core_platform_interface:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -399,49 +399,49 @@ packages:
|
||||
name: firebase_dynamic_links
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.0.8"
|
||||
version: "2.0.10"
|
||||
firebase_in_app_messaging:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
name: firebase_in_app_messaging
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.5.0+8"
|
||||
version: "0.5.0+10"
|
||||
firebase_messaging:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
name: firebase_messaging
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "10.0.5"
|
||||
version: "10.0.8"
|
||||
firebase_messaging_platform_interface:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: firebase_messaging_platform_interface
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "3.0.4"
|
||||
version: "3.0.6"
|
||||
firebase_messaging_web:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: firebase_messaging_web
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.0.4"
|
||||
version: "2.0.6"
|
||||
firebase_remote_config:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
name: firebase_remote_config
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.10.0+4"
|
||||
version: "0.11.0+1"
|
||||
firebase_remote_config_platform_interface:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: firebase_remote_config_platform_interface
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.3.0+4"
|
||||
version: "0.3.0+6"
|
||||
fixnum:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -481,14 +481,14 @@ packages:
|
||||
name: flutter_bloc
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "7.1.0"
|
||||
version: "7.2.0"
|
||||
flutter_facebook_auth:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
name: flutter_facebook_auth
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "3.5.1"
|
||||
version: "3.5.2"
|
||||
flutter_facebook_auth_platform_interface:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -542,14 +542,14 @@ packages:
|
||||
name: flutter_math_fork
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.3.3"
|
||||
version: "0.4.1"
|
||||
flutter_secure_storage:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
name: flutter_secure_storage
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "4.2.0"
|
||||
version: "4.2.1"
|
||||
flutter_svg:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -574,6 +574,13 @@ packages:
|
||||
description: flutter
|
||||
source: sdk
|
||||
version: "0.0.0"
|
||||
frontend_server_client:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: frontend_server_client
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.1.2"
|
||||
glob:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -594,7 +601,7 @@ packages:
|
||||
name: google_sign_in
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "5.0.3"
|
||||
version: "5.1.1"
|
||||
google_sign_in_platform_interface:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -615,7 +622,7 @@ packages:
|
||||
name: graphs
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.0.0"
|
||||
version: "2.1.0"
|
||||
html:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -727,7 +734,7 @@ packages:
|
||||
name: meta
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.3.0"
|
||||
version: "1.7.0"
|
||||
mime:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -741,7 +748,7 @@ packages:
|
||||
name: mockito
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "5.0.3"
|
||||
version: "5.0.16"
|
||||
mocktail:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -769,7 +776,7 @@ packages:
|
||||
name: node_preamble
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.0.0"
|
||||
version: "2.0.1"
|
||||
package_config:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -944,7 +951,7 @@ packages:
|
||||
name: provider
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "5.0.0"
|
||||
version: "6.0.1"
|
||||
pub_semver:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -1007,14 +1014,14 @@ packages:
|
||||
name: sentry
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "5.1.0-beta.1"
|
||||
version: "6.0.1"
|
||||
sentry_flutter:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
name: sentry_flutter
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "5.1.0-beta.1"
|
||||
version: "6.0.1"
|
||||
share:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -1098,19 +1105,26 @@ packages:
|
||||
name: sign_in_with_apple
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "3.0.0"
|
||||
version: "3.2.0"
|
||||
sky_engine:
|
||||
dependency: transitive
|
||||
description: flutter
|
||||
source: sdk
|
||||
version: "0.0.99"
|
||||
smartlook:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
name: smartlook
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.0.1"
|
||||
source_gen:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: source_gen
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.0.0"
|
||||
version: "1.1.1"
|
||||
source_map_stack_trace:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -1145,14 +1159,14 @@ packages:
|
||||
name: sqflite
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.0.0+3"
|
||||
version: "2.0.0+4"
|
||||
sqflite_common:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: sqflite_common
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "2.0.0+2"
|
||||
version: "2.0.1+1"
|
||||
stack_trace:
|
||||
dependency: transitive
|
||||
description:
|
||||
@ -1250,21 +1264,21 @@ packages:
|
||||
name: test
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "1.16.8"
|
||||
version: "1.17.10"
|
||||
test_api:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: test_api
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.3.0"
|
||||
version: "0.4.2"
|
||||
test_core:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: test_core
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.3.19"
|
||||
version: "0.4.0"
|
||||
timeline_tile:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@ -1285,7 +1299,7 @@ packages:
|
||||
name: timing
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.1.1+3"
|
||||
version: "1.0.0"
|
||||
toggle_switch:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
@ -1425,27 +1439,34 @@ packages:
|
||||
name: wakelock
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.4.0"
|
||||
version: "0.5.6"
|
||||
wakelock_macos:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: wakelock_macos
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.1.0"
|
||||
version: "0.4.0"
|
||||
wakelock_platform_interface:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: wakelock_platform_interface
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.2.0"
|
||||
version: "0.3.0"
|
||||
wakelock_web:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: wakelock_web
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.4.0"
|
||||
wakelock_windows:
|
||||
dependency: transitive
|
||||
description:
|
||||
name: wakelock_windows
|
||||
url: "https://pub.dartlang.org"
|
||||
source: hosted
|
||||
version: "0.2.0"
|
||||
watcher:
|
||||
dependency: transitive
|
||||
@ -1518,5 +1539,5 @@ packages:
|
||||
source: hosted
|
||||
version: "3.1.0"
|
||||
sdks:
|
||||
dart: ">=2.12.0 <3.0.0"
|
||||
flutter: ">=2.0.0"
|
||||
dart: ">=2.14.0 <3.0.0"
|
||||
flutter: ">=2.5.0"
|
||||
|
38
pubspec.yaml
38
pubspec.yaml
@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
||||
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||
# Read more about iOS versioning at
|
||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||
version: 1.1.23+98
|
||||
version: 1.1.24+99
|
||||
|
||||
environment:
|
||||
sdk: ">=2.12.0 <3.0.0"
|
||||
@ -27,8 +27,8 @@ dependencies:
|
||||
cupertino_icons: ^1.0.0
|
||||
google_fonts: ^2.1.0
|
||||
devicelocale: ^0.4.1
|
||||
sentry_flutter: ^5.1.0-beta.1
|
||||
flutter_bloc: ^7.1.0
|
||||
sentry_flutter: ^6.0.1
|
||||
flutter_bloc: ^7.2.0
|
||||
equatable: ^2.0.3
|
||||
|
||||
spider_chart: ^0.1.5
|
||||
@ -44,7 +44,7 @@ dependencies:
|
||||
#location: ^3.2.4
|
||||
modal_progress_hud_nsn: ^0.1.0-nullsafety-1
|
||||
flutter_html: ^2.0.0
|
||||
wakelock: ^ 0.4.0
|
||||
wakelock: ^ 0.5.6
|
||||
timeline_tile: ^2.0.0
|
||||
purchases_flutter: ^3.2.2
|
||||
package_info: ^2.0.0
|
||||
@ -61,32 +61,32 @@ dependencies:
|
||||
mailto: ^2.0.0
|
||||
url_launcher: ^6.0.9
|
||||
|
||||
firebase_core: ^1.5.0
|
||||
firebase_analytics: ^8.1.0
|
||||
firebase_messaging: ^10.0.0
|
||||
firebase_auth: ^3.0.2
|
||||
firebase_remote_config: ^0.10.0+4
|
||||
firebase_dynamic_links: ^2.0.8
|
||||
firebase_in_app_messaging: ^0.5.0+8
|
||||
firebase_core: ^1.7.0
|
||||
firebase_analytics: ^8.3.2
|
||||
firebase_messaging: ^10.0.8
|
||||
firebase_auth: ^3.1.2
|
||||
firebase_remote_config: ^0.11.0+1
|
||||
firebase_dynamic_links: ^2.0.10
|
||||
firebase_in_app_messaging: ^0.5.0+10
|
||||
|
||||
syncfusion_flutter_gauges: ^19.2.60
|
||||
syncfusion_flutter_datagrid: ^19.1.63
|
||||
syncfusion_flutter_charts: ^19.2.60
|
||||
syncfusion_flutter_calendar: ^19.2.60
|
||||
|
||||
flutter_facebook_auth: ^3.5.1
|
||||
google_sign_in: ^5.0.3
|
||||
sign_in_with_apple: ^3.0.0
|
||||
flutter_facebook_auth: ^3.5.2
|
||||
google_sign_in: ^5.1.1
|
||||
sign_in_with_apple: ^3.2.0
|
||||
|
||||
#smartlook: ^1.0.7
|
||||
smartlook: ^2.0.1
|
||||
flurry_data: ^0.0.1
|
||||
flutter_uxcam: ^2.0.0
|
||||
|
||||
animated_widgets: ^1.0.6
|
||||
|
||||
mockito: ^5.0.3
|
||||
sqflite: ^2.0.0+3
|
||||
flutter_secure_storage: ^4.2.0
|
||||
mockito: ^5.0.16
|
||||
sqflite: ^2.0.0+4
|
||||
flutter_secure_storage: ^4.2.1
|
||||
#social_share: ^2.1.1
|
||||
|
||||
flutter_localizations:
|
||||
@ -99,7 +99,7 @@ dev_dependencies:
|
||||
test: '>=1.0.0 <2.0.0'
|
||||
flutter_test:
|
||||
sdk: flutter
|
||||
bloc_test: ^8.1.0
|
||||
bloc_test: ^8.2.0
|
||||
|
||||
build_runner:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user