Flutter application

- Created generated_plugin_registrant.cc and generated_plugin_registrant.h to manage plugin registration.
- Added generated_plugins.cmake for plugin configuration in CMake.
- Implemented CMakeLists.txt for the Windows runner, defining build settings and dependencies.
- Created Runner.rc for application resources including versioning and icons.
- Developed flutter_window.cpp and flutter_window.h to manage the Flutter window lifecycle.
- Implemented main.cpp as the entry point for the Windows application.
- Added resource.h for resource definitions.
- Included app icon in resources.
- Created runner.exe.manifest for application settings.
- Developed utils.cpp and utils.h for console management and command line argument handling.
- Implemented win32_window.cpp and win32_window.h for high DPI-aware window management.
This commit is contained in:
Vaibhav Surve 2025-04-17 12:30:38 +05:30
parent 54f0157576
commit 99902e743c
367 changed files with 222155 additions and 0 deletions

43
.gitignore vendored Normal file
View File

@ -0,0 +1,43 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Flutter/Dart/Pub related
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.pub-cache/
.pub/
/build/
# Symbolication related
app.*.symbols
# Obfuscation related
app.*.map.json
# Android Studio will place build artifacts here
/android/app/debug
/android/app/profile
/android/app/release

45
.metadata Normal file
View File

@ -0,0 +1,45 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.
version:
revision: "2663184aa79047d0a33a14a3b607954f8fdd8730"
channel: "stable"
project_type: app
# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
base_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
- platform: android
create_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
base_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
- platform: ios
create_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
base_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
- platform: linux
create_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
base_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
- platform: macos
create_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
base_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
- platform: web
create_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
base_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
- platform: windows
create_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
base_revision: 2663184aa79047d0a33a14a3b607954f8fdd8730
# User provided section
# List of Local paths (relative to this file) that should be
# ignored by the migrate tool.
#
# Files that are not part of the templates will be ignored by default.
unmanaged_files:
- 'lib/main.dart'
- 'ios/Runner.xcodeproj/project.pbxproj'

16
README.md Normal file
View File

@ -0,0 +1,16 @@
# marco
A new Flutter project.
## Getting Started
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
For help getting started with Flutter development, view the
[online documentation](https://docs.flutter.dev/), which offers tutorials,
samples, guidance on mobile development, and a full API reference.

40
analysis_options.yaml Normal file
View File

@ -0,0 +1,40 @@
# This file configures the analyzer, which statically analyzes Dart code to
# check for errors, warnings, and lints.
#
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
# invoked from the command line by running `flutter analyze`.
# The following line activates a set of recommended lints for Flutter apps,
# packages, and plugins designed to encourage good coding practices.
include: package:flutter_lints/flutter.yaml
linter:
# The lint rules applied to this project can be customized in the
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
# included above or to enable additional rules. A list of all available lints
# and their documentation is published at https://dart.dev/lints.
#
# Instead of disabling a lint rule for the entire project in the
# section below, it can also be suppressed for a single line of code
# or a specific dart file by using the `// ignore: name_of_lint` and
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
# producing the lint.
rules:
prefer_const_constructors: false
prefer_const_declarations: false
prefer_const_constructors_in_immutables: false
prefer_const_literals_to_create_immutables: false
prefer_interpolation_to_compose_strings: true
unnecessary_string_interpolations: false
unnecessary_brace_in_string_interps: false
library_private_types_in_public_api: false
always_use_package_imports: true
empty_catches: false
use_build_context_synchronously: false
use_key_in_widget_constructors: false
# avoid_print: false # Uncomment to disable the `avoid_print` rule
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
# Additional information about this file can be found at
# https://dart.dev/guides/language/analysis-options

13
android/.gitignore vendored Normal file
View File

@ -0,0 +1,13 @@
gradle-wrapper.jar
/.gradle
/captures/
/gradlew
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
# Remember to never publicly share your keystore.
# See https://flutter.dev/to/reference-keystore
key.properties
**/*.keystore
**/*.jks

44
android/app/build.gradle Normal file
View File

@ -0,0 +1,44 @@
plugins {
id "com.android.application"
id "kotlin-android"
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
id "dev.flutter.flutter-gradle-plugin"
}
android {
namespace = "com.example.marco"
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.example.marco"
// You can update the following values to match your application needs.
// For more information, see: https://flutter.dev/to/review-gradle-config.
minSdk = flutter.minSdkVersion
targetSdk = flutter.targetSdkVersion
versionCode = flutter.versionCode
versionName = flutter.versionName
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig = signingConfigs.debug
}
}
}
flutter {
source = "../.."
}

View File

@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool 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>

View File

@ -0,0 +1,45 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="marco"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:taskAffinity=""
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- 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"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</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" />
</application>
<!-- Required to query activities that can process text, see:
https://developer.android.com/training/package-visibility and
https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
<queries>
<intent>
<action android:name="android.intent.action.PROCESS_TEXT"/>
<data android:mimeType="text/plain"/>
</intent>
</queries>
</manifest>

View File

@ -0,0 +1,5 @@
package com.example.marco
import io.flutter.embedding.android.FlutterActivity
class MainActivity: FlutterActivity()

View 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:colorBackground" />
<!-- You can insert your own image assets here -->
<!-- <item>
<bitmap
android:gravity="center"
android:src="@mipmap/launch_image" />
</item> -->
</layer-list>

View 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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine 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:colorBackground</item>
</style>
</resources>

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
<!-- Show a splash screen on the activity. Automatically removed when
the Flutter engine 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.Light.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>

View File

@ -0,0 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool 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>

18
android/build.gradle Normal file
View File

@ -0,0 +1,18 @@
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = "../build"
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(":app")
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}

View File

@ -0,0 +1,3 @@
org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError
android.useAndroidX=true
android.enableJetifier=true

View File

@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip

25
android/settings.gradle Normal file
View File

@ -0,0 +1,25 @@
pluginManagement {
def flutterSdkPath = {
def properties = new Properties()
file("local.properties").withInputStream { properties.load(it) }
def flutterSdkPath = properties.getProperty("flutter.sdk")
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
return flutterSdkPath
}()
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "8.1.0" apply false
id "org.jetbrains.kotlin.android" version "1.8.22" apply false
}
include ":app"

BIN
assets/auth_background.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 970 KiB

BIN
assets/avatar/avatar_1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

BIN
assets/avatar/avatar_10.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

BIN
assets/avatar/avatar_2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

BIN
assets/avatar/avatar_3.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

BIN
assets/avatar/avatar_4.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

BIN
assets/avatar/avatar_5.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

BIN
assets/avatar/avatar_6.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

BIN
assets/avatar/avatar_7.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

BIN
assets/avatar/avatar_8.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

BIN
assets/avatar/avatar_9.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

BIN
assets/coin/bitcoin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

BIN
assets/coin/chainlink.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

BIN
assets/coin/dogecoin.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
assets/coin/ethereum.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

BIN
assets/coin/polkadot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
assets/coin/tether.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
assets/country/canada.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
assets/country/germany.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
assets/country/malaysia.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

BIN
assets/country/mexico.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

BIN
assets/country/russia.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

95737
assets/data/australia.json Normal file

File diff suppressed because it is too large Load Diff

192
assets/data/chat.json Normal file
View File

@ -0,0 +1,192 @@
[
{
"id": 1,
"first_name": "James Carter",
"email": "james.carter@example.com",
"messages": [
{
"message": "How is your day going?",
"send_at": "2024-11-15T10:05:10Z",
"from_me": false
},
{
"message": "Reminder about the project meeting tomorrow",
"send_at": "2023-06-20T14:23:11Z",
"from_me": true
},
{
"message": "Can we meet today for a quick chat?",
"send_at": "2023-04-19T17:30:08Z",
"from_me": false
},
{
"message": "Yes, all is good. See you tomorrow at 2 PM for the meeting",
"send_at": "2023-03-22T11:09:45Z",
"from_me": false
}
]
},
{
"id": 2,
"first_name": "Sophia Lee",
"email": "sophia.lee@example.com",
"messages": [
{
"message": "Are we meeting today for the weekly catch-up?",
"send_at": "2023-09-10T08:45:36Z",
"from_me": false
},
{
"message": "Please review these updated documents",
"send_at": "2023-11-17T11:22:33Z",
"from_me": true
},
{
"message": "Good morning, How are you? When is our next meeting?",
"send_at": "2023-05-13T09:25:18Z",
"from_me": true
}
]
},
{
"id": 3,
"first_name": "Ethan Scott",
"email": "ethan.scott@example.com",
"messages": [
{
"message": "Are you available for a quick call? Need to discuss something",
"send_at": "2023-12-05T07:40:21Z",
"from_me": false
},
{
"message": "Let's meet today, shall we?",
"send_at": "2023-03-17T14:00:12Z",
"from_me": true
}
]
},
{
"id": 4,
"first_name": "Olivia Brown",
"email": "olivia.brown@example.com",
"messages": [
{
"message": "Let's meet today for a team discussion",
"send_at": "2023-05-30T11:55:10Z",
"from_me": false
},
{
"message": "Hope you're having a great day. Let's catch up soon",
"send_at": "2023-07-12T12:36:44Z",
"from_me": true
},
{
"message": "I need to go buy some groceries this afternoon, I'll be a bit late.",
"send_at": "2024-01-10T13:20:45Z",
"from_me": true
}
]
},
{
"id": 5,
"first_name": "Charlotte Miller",
"email": "charlotte.miller@example.com",
"messages": [
{
"message": "Are you available for a quick chat?",
"send_at": "2023-11-11T16:50:09Z",
"from_me": false
},
{
"message": "I just sent you the updated contract documents for review.",
"send_at": "2023-10-04T18:22:56Z",
"from_me": true
}
]
},
{
"id": 6,
"first_name": "Jackson Harris",
"email": "jackson.harris@example.com",
"messages": [
{
"message": "How's everything going? Any updates on the project?",
"send_at": "2023-08-25T11:10:30Z",
"from_me": false
},
{
"message": "Sending over the latest draft for your review",
"send_at": "2023-12-02T10:14:50Z",
"from_me": true
}
]
},
{
"id": 7,
"first_name": "Aiden Cooper",
"email": "aiden.cooper@example.com",
"messages": [
{
"message": "Do you have time today for a discussion?",
"send_at": "2023-10-05T09:18:22Z",
"from_me": false
},
{
"message": "The new update is ready for deployment, please check it.",
"send_at": "2024-01-25T11:29:13Z",
"from_me": true
}
]
},
{
"id": 8,
"first_name": "Lily King",
"email": "lily.king@example.com",
"messages": [
{
"message": "Would you be able to meet today for a catch-up?",
"send_at": "2023-06-18T13:12:09Z",
"from_me": false
},
{
"message": "I have finished reviewing the files, please take a look.",
"send_at": "2023-12-18T16:47:02Z",
"from_me": true
}
]
},
{
"id": 9,
"first_name": "Max Taylor",
"email": "max.taylor@example.com",
"messages": [
{
"message": "Please check the attached file and confirm if everything is okay.",
"send_at": "2023-09-29T14:10:33Z",
"from_me": false
},
{
"message": "Sending over the revised schedule for the next phase.",
"send_at": "2024-01-02T17:12:11Z",
"from_me": true
}
]
},
{
"id": 10,
"first_name": "Avery Clark",
"email": "avery.clark@example.com",
"messages": [
{
"message": "Are we ready for the meeting today?",
"send_at": "2023-08-22T12:43:50Z",
"from_me": false
},
{
"message": "I updated the timeline. Let me know if you have any questions.",
"send_at": "2023-12-15T10:55:29Z",
"from_me": true
}
]
}
]

View File

@ -0,0 +1,82 @@
[
{
"id": 1,
"asset": "Alaska Air Group, Inc.",
"date": "2024-06-17T12:59:41Z",
"ip_address": "113.9.18.110",
"status": "Unpaid",
"amount": 7061
},
{
"id": 2,
"asset": "T2 Biosystems, Inc.",
"date": "2024-09-09T00:20:08Z",
"ip_address": "45.51.68.143",
"status": "Unpaid",
"amount": 5677
},
{
"id": 3,
"asset": "North American Energy Partners, Inc.",
"date": "2024-07-17T10:46:42Z",
"ip_address": "221.131.122.193",
"status": "Unpaid",
"amount": 5420
},
{
"id": 4,
"asset": "Finjan Holdings, Inc.",
"date": "2024-01-20T20:10:26Z",
"ip_address": "50.242.43.22",
"status": "Success",
"amount": 6433
},
{
"id": 5,
"asset": "Omega Healthcare Investors, Inc.",
"date": "2024-11-14T23:08:09Z",
"ip_address": "109.125.5.131",
"status": "Success",
"amount": 6317
},
{
"id": 6,
"asset": "MediciNova, Inc.",
"date": "2024-01-12T18:20:33Z",
"ip_address": "54.103.156.190",
"status": "Unpaid",
"amount": 7952
},
{
"id": 7,
"asset": "PowerShares LadderRite 0-5 Year Corporate Bond Portfolio",
"date": "2024-04-26T00:44:42Z",
"ip_address": "169.190.183.205",
"status": "Success",
"amount": 6294
},
{
"id": 8,
"asset": "VelocityShares Daily 2x VIX Medium-Term ETN",
"date": "2024-02-01T12:47:59Z",
"ip_address": "144.189.211.137",
"status": "Success",
"amount": 4419
},
{
"id": 9,
"asset": "Liberty TripAdvisor Holdings, Inc.",
"date": "2023-12-29T14:49:59Z",
"ip_address": "166.41.221.149",
"status": "Unpaid",
"amount": 4195
},
{
"id": 10,
"asset": "Scorpio Tankers Inc.",
"date": "2023-12-02T11:36:44Z",
"ip_address": "27.151.0.226",
"status": "Success",
"amount": 8395
}
]

202
assets/data/customer.json Normal file
View File

@ -0,0 +1,202 @@
[
{
"id": 1,
"first_name": "Sabina",
"last_name": "Brothwood",
"project_name": "Wunsch, DuBuque and Green",
"phone_number": "541-568-8047",
"balance": "31907",
"order_count": 7,
"last_order": "2022-10-07T03:43:16Z"
},
{
"id": 2,
"first_name": "Felic",
"last_name": "Parlor",
"project_name": "Dare LLC",
"phone_number": "866-349-3385",
"balance": "02260",
"order_count": 26,
"last_order": "2023-07-12T07:52:19Z"
},
{
"id": 3,
"first_name": "Marnie",
"last_name": "Kofax",
"project_name": "Von LLC",
"phone_number": "821-779-3766",
"balance": "663",
"order_count": 21,
"last_order": "2022-10-14T21:19:33Z"
},
{
"id": 4,
"first_name": "Tine",
"last_name": "Meron",
"project_name": "Stracke Inc",
"phone_number": "901-149-2915",
"balance": "84",
"order_count": 8,
"last_order": "2023-04-06T12:36:09Z"
},
{
"id": 5,
"first_name": "Shanon",
"last_name": "Ivashchenko",
"project_name": "Satterfield, Schultz and Jones",
"phone_number": "452-728-1072",
"balance": "0878",
"order_count": 34,
"last_order": "2023-04-03T15:07:21Z"
},
{
"id": 6,
"first_name": "Guthrey",
"last_name": "Crossland",
"project_name": "Medhurst and Sons",
"phone_number": "212-991-7314",
"balance": "0291",
"order_count": 7,
"last_order": "2022-12-03T04:24:53Z"
},
{
"id": 7,
"first_name": "Florie",
"last_name": "Chestnutt",
"project_name": "Beer-Kunze",
"phone_number": "935-525-9749",
"balance": "07984",
"order_count": 69,
"last_order": "2023-01-14T10:42:28Z"
},
{
"id": 8,
"first_name": "Wittie",
"last_name": "Damsell",
"project_name": "Daniel, Legros and Roberts",
"phone_number": "632-787-4799",
"balance": "22844",
"order_count": 41,
"last_order": "2023-01-18T09:38:50Z"
},
{
"id": 9,
"first_name": "Aimee",
"last_name": "Dibdall",
"project_name": "Schuster LLC",
"phone_number": "404-339-9261",
"balance": "460",
"order_count": 41,
"last_order": "2023-04-15T03:08:51Z"
},
{
"id": 10,
"first_name": "Inna",
"last_name": "Juggins",
"project_name": "Johnson Group",
"phone_number": "769-573-9516",
"balance": "77",
"order_count": 18,
"last_order": "2022-09-13T05:14:51Z"
},
{
"id": 11,
"first_name": "Cathyleen",
"last_name": "Went",
"project_name": "DuBuque LLC",
"phone_number": "558-736-4450",
"balance": "24",
"order_count": 98,
"last_order": "2023-07-05T05:26:12Z"
},
{
"id": 12,
"first_name": "Kora",
"last_name": "Dowderswell",
"project_name": "Harber, Daugherty and West",
"phone_number": "721-147-2917",
"balance": "32",
"order_count": 5,
"last_order": "2022-10-22T07:47:42Z"
},
{
"id": 13,
"first_name": "Loni",
"last_name": "Armin",
"project_name": "Fadel-Kerluke",
"phone_number": "251-582-9867",
"balance": "2122",
"order_count": 4,
"last_order": "2023-01-26T19:56:37Z"
},
{
"id": 14,
"first_name": "Kalle",
"last_name": "Spybey",
"project_name": "Kshlerin, Torp and Koelpin",
"phone_number": "245-661-6328",
"balance": "61034",
"order_count": 70,
"last_order": "2022-12-29T15:38:20Z"
},
{
"id": 15,
"first_name": "Verena",
"last_name": "Skerme",
"project_name": "Dach, Abshire and Crooks",
"phone_number": "227-694-0272",
"balance": "68921",
"order_count": 3,
"last_order": "2022-11-29T23:02:11Z"
},
{
"id": 16,
"first_name": "Lisle",
"last_name": "McGowan",
"project_name": "White, Murphy and Sawayn",
"phone_number": "196-817-6277",
"balance": "7250",
"order_count": 34,
"last_order": "2023-06-14T11:10:56Z"
},
{
"id": 17,
"first_name": "Bryce",
"last_name": "Pires",
"project_name": "Crooks Group",
"phone_number": "424-217-0372",
"balance": "549",
"order_count": 50,
"last_order": "2023-01-08T17:58:09Z"
},
{
"id": 18,
"first_name": "Ibrahim",
"last_name": "Battram",
"project_name": "Schmidt, Feil and Schaden",
"phone_number": "836-473-5900",
"balance": "3",
"order_count": 86,
"last_order": "2023-08-05T01:46:22Z"
},
{
"id": 19,
"first_name": "Josepha",
"last_name": "Grishkov",
"project_name": "Welch-Wisozk",
"phone_number": "928-393-5306",
"balance": "528",
"order_count": 38,
"last_order": "2023-08-18T19:01:25Z"
},
{
"id": 20,
"first_name": "Ellis",
"last_name": "Barfoot",
"project_name": "Davis, Ondricka and Schaefer",
"phone_number": "169-236-9311",
"balance": "169",
"order_count": 11,
"last_order": "2023-02-21T16:29:59Z"
}
]

View File

@ -0,0 +1,72 @@
[
{
"id": 1,
"image": "assets/dummy/dummy_1.jpg",
"name": "Meir O'Leahy",
"user_name": "moleahy0",
"contact_number": "817-666-8080"
},
{
"id": 2,
"image": "assets/dummy/dummy_2.jpg",
"name": "Ernie Ayling",
"user_name": "eayling1",
"contact_number": "890-910-3243"
},
{
"id": 3,
"image": "assets/dummy/dummy_3.jpg",
"name": "Mead Ezzle",
"user_name": "mezzle2",
"contact_number": "293-162-4468"
},
{
"id": 4,
"image": "assets/dummy/dummy_4.jpg",
"name": "Esta Norewood",
"user_name": "enorewood3",
"contact_number": "532-164-0604"
},
{
"id": 5,
"image": "assets/dummy/dummy_5.jpg",
"name": "Bartram Cottell",
"user_name": "bcottell4",
"contact_number": "940-143-2842"
},
{
"id": 6,
"image": "assets/dummy/dummy_1.jpg",
"name": "Nicola Reolfo",
"user_name": "nreolfo5",
"contact_number": "356-558-8324"
},
{
"id": 7,
"image": "assets/dummy/dummy_2.jpg",
"name": "Normy Gilhoolie",
"user_name": "ngilhoolie6",
"contact_number": "256-770-5288"
},
{
"id": 8,
"image": "assets/dummy/dummy_3.jpg",
"name": "Octavia Margerrison",
"user_name": "omargerrison7",
"contact_number": "744-595-1968"
},
{
"id": 9,
"image": "assets/dummy/dummy_4.jpg",
"name": "Stella Barriball",
"user_name": "sbarriball8",
"contact_number": "906-522-1874"
},
{
"id": 10,
"image": "assets/dummy/dummy_5.jpg",
"name": "Panchito Chase",
"user_name": "pchase9",
"contact_number": "929-922-7735"
}
]

54614
assets/data/europe_map.json Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,102 @@
[
{
"id": 1,
"candidate": "Patrica",
"category": "Manufacture",
"designation": "Sr.UI Developer",
"mail": "pbeedie0@ustream.tv",
"location": "Pojan",
"date": "2024-08-09T06:03:25Z",
"type": "Freelancer"
},
{
"id": 2,
"candidate": "Angelique",
"category": "Marketing",
"designation": "Team Lead",
"mail": "asamwayes1@fotki.com",
"location": "Jiangluo",
"date": "2023-11-17T10:23:18Z",
"type": "Hybride"
},
{
"id": 3,
"candidate": "Garnet",
"category": "Marketing",
"designation": "Team Lead",
"mail": "gjarrelt2@dailymail.co.uk",
"location": "Wissembourg",
"date": "2024-03-18T15:31:21Z",
"type": "Freelancer"
},
{
"id": 4,
"candidate": "Guglielmo",
"category": "Manufacture",
"designation": "Sales Executive",
"mail": "gcarlone3@ted.com",
"location": "Aoqiao",
"date": "2024-04-08T22:04:13Z",
"type": "Part Time"
},
{
"id": 5,
"candidate": "Reggie",
"category": "Manufacture",
"designation": "Team Lead",
"mail": "rmacieiczyk4@booking.com",
"location": "Insrom",
"date": "2024-01-09T06:29:40Z",
"type": "Freelancer"
},
{
"id": 6,
"candidate": "Florri",
"category": "Manufacture",
"designation": "Sales Executive",
"mail": "fharesign5@yellowbook.com",
"location": "Itambacuri",
"date": "2024-09-05T11:09:36Z",
"type": "Part Time"
},
{
"id": 7,
"candidate": "Annabella",
"category": "Manufacture",
"designation": "Team Lead",
"mail": "aossipenko6@ucoz.com",
"location": "Watthana Nakhon",
"date": "2024-07-27T16:17:23Z",
"type": "Full Time"
},
{
"id": 8,
"candidate": "Arlene",
"category": "Manufacture",
"designation": "Team Lead",
"mail": "agook7@google.com.hk",
"location": "Hayama",
"date": "2024-09-14T13:32:31Z",
"type": "Freelancer"
},
{
"id": 9,
"candidate": "Shurlocke",
"category": "Manufacture",
"designation": "Sales Executive",
"mail": "sgallehawk8@squidoo.com",
"location": "Bel Air Rivière Sèche",
"date": "2024-06-18T00:23:24Z",
"type": "Freelancer"
},
{
"id": 10,
"candidate": "Ricoriki",
"category": "Service",
"designation": "Sales Executive",
"mail": "rgillio9@mapy.cz",
"location": "Tawangsari",
"date": "2024-06-14T19:59:41Z",
"type": "Freelancer"
}
]

View File

@ -0,0 +1,112 @@
[
{
"id": 1,
"first_name": "Bordy",
"email": "bjeffreys0@macromedia.com",
"phone_number": "217-779-9808",
"company_name": "Voonyx",
"status": "Won Lead",
"location": "Presidencia Roque Sáenz Peña",
"date": "2024-06-20T06:26:12Z",
"amount": 52397
},
{
"id": 2,
"first_name": "Collin",
"email": "cgething1@paginegialle.it",
"phone_number": "124-897-0512",
"company_name": "Rhyzio",
"status": "New Lead",
"location": "Nombre de Jesús",
"date": "2023-11-20T12:12:32Z",
"amount": 58203
},
{
"id": 3,
"first_name": "Bear",
"email": "bfowlds2@booking.com",
"phone_number": "391-249-1041",
"company_name": "Blogtag",
"status": "Lost Lead",
"location": "Shani",
"date": "2024-11-09T07:57:49Z",
"amount": 18717
},
{
"id": 4,
"first_name": "Robers",
"email": "raujouanet3@google.cn",
"phone_number": "128-604-5632",
"company_name": "Quire",
"status": "Lost Lead",
"location": "Benghazi",
"date": "2023-12-09T17:33:39Z",
"amount": 11267
},
{
"id": 5,
"first_name": "Shirlene",
"email": "sjoiris4@theglobeandmail.com",
"phone_number": "471-884-5686",
"company_name": "Voonder",
"status": "New Lead",
"location": "Krasnaye",
"date": "2024-01-15T03:06:07Z",
"amount": 66877
},
{
"id": 6,
"first_name": "Erik",
"email": "ebudden5@zdnet.com",
"phone_number": "957-550-9950",
"company_name": "Digitube",
"status": "Won Lead",
"location": "Taouloukoult",
"date": "2024-01-21T03:05:01Z",
"amount": 55766
},
{
"id": 7,
"first_name": "Sabina",
"email": "sdenman6@ning.com",
"phone_number": "612-207-4109",
"company_name": "Kwinu",
"status": "Lost Lead",
"location": "Minneapolis",
"date": "2024-05-19T15:59:28Z",
"amount": 24691
},
{
"id": 8,
"first_name": "Andi",
"email": "aschruyer7@imdb.com",
"phone_number": "410-936-5855",
"company_name": "Photojam",
"status": "Won Lead",
"location": "Masina",
"date": "2024-09-30T18:31:07Z",
"amount": 7228
},
{
"id": 9,
"first_name": "Kathy",
"email": "kstandall8@woothemes.com",
"phone_number": "840-267-7381",
"company_name": "Quinu",
"status": "Won Lead",
"location": "Shashi",
"date": "2024-04-21T18:00:25Z",
"amount": 85726
},
{
"id": 10,
"first_name": "Lenka",
"email": "llennon9@hexun.com",
"phone_number": "962-993-3146",
"company_name": "Skaboo",
"status": "Won Lead",
"location": "Shireet",
"date": "2024-06-19T12:27:05Z",
"amount": 10069
}
]

View File

@ -0,0 +1,197 @@
[
{
"id": 1,
"name": "Mints - Striped Red",
"description": "Laceration of ulnar artery at wrs/hnd lv of unsp arm",
"price": 54,
"stock": 72,
"category": "Scallops 60/80 Iqf",
"order_counts": 10,
"created_at": "2022-07-20T09:52:34Z",
"rating": 2.49,
"rating_count": 42,
"sku": "RCII"
},
{
"id": 2,
"name": "Pasta - Ravioli",
"description": "Oth disp fx of upper end l humer, subs for fx w delay heal",
"price": 35,
"stock": 64,
"category": "Chocolate - Mi - Amere Semi",
"order_counts": 45,
"created_at": "2023-03-25T22:32:10Z",
"rating": 4.66,
"rating_count": 82,
"sku": "RDS.A"
},
{
"id": 3,
"name": "Soup - Campbells Chili",
"description": "Nondisp fx of anterior wall of left acetab, init for opn fx",
"price": 27,
"stock": 21,
"category": "Tomatoes - Cherry, Yellow",
"order_counts": 53,
"created_at": "2022-05-18T15:56:06Z",
"rating": 3.05,
"rating_count": 66,
"sku": "STNG"
},
{
"id": 4,
"name": "Fennel - Seeds",
"description": "Displ spiral fx shaft of ulna, r arm, 7thD",
"price": 124,
"stock": 56,
"category": "Squid - U - 10 Thailand",
"order_counts": 13,
"created_at": "2022-04-21T11:32:39Z",
"rating": 0.59,
"rating_count": 55,
"sku": "FEUZ"
},
{
"id": 5,
"name": "Salt - Celery",
"description": "Interstitial myositis, lower leg",
"price": 25,
"stock": 78,
"category": "Gatorade - Lemon Lime",
"order_counts": 30,
"created_at": "2023-01-01T01:15:44Z",
"rating": 1.42,
"rating_count": 10,
"sku": "VER"
},
{
"id": 6,
"name": "Flour - Chickpea",
"description": "Oth fx upr end unsp rad, 7thJ",
"price": 131,
"stock": 50,
"category": "Sweet Pea Sprouts",
"order_counts": 11,
"created_at": "2023-04-09T04:41:43Z",
"rating": 4.05,
"rating_count": 24,
"sku": "HDS"
},
{
"id": 7,
"name": "Chips - Miss Vickies",
"description": "Contusion of right hip, initial encounter",
"price": 52,
"stock": 63,
"category": "Extract - Almond",
"order_counts": 62,
"created_at": "2022-06-24T05:25:56Z",
"rating": 3.35,
"rating_count": 6,
"sku": "MACQW"
},
{
"id": 8,
"name": "Ice Cream - Super Sandwich",
"description": "Acute post-traumatic headache",
"price": 87,
"stock": 44,
"category": "Bread - Wheat Baguette",
"order_counts": 63,
"created_at": "2022-07-06T05:37:09Z",
"rating": 0.96,
"rating_count": 38,
"sku": "AA"
},
{
"id": 9,
"name": "Alize Gold Passion",
"description": "War op involving explosion of marine weapons, civilian",
"price": 113,
"stock": 72,
"category": "Lid - Translucent, 3.5 And 6 Oz",
"order_counts": 23,
"created_at": "2022-07-09T18:19:37Z",
"rating": 3.25,
"rating_count": 64,
"sku": "EVOK"
},
{
"id": 10,
"name": "Mushrooms - Honey",
"description": "Sltr-haris Type IV physl fx low end l femr, 7thP",
"price": 98,
"stock": 64,
"category": "Lemon Balm - Fresh",
"order_counts": 5,
"created_at": "2022-08-05T22:14:06Z",
"rating": 3.51,
"rating_count": 0,
"sku": "TDG"
},
{
"id": 11,
"name": "Bread Base - Goodhearth",
"description": "Unspecified injury of axillary artery",
"price": 81,
"stock": 56,
"category": "Beef - Bones, Marrow",
"order_counts": 76,
"created_at": "2023-04-22T03:11:41Z",
"rating": 4.07,
"rating_count": 22,
"sku": "GPAC"
},
{
"id": 12,
"name": "Veal - Heart",
"description": "Laceration without foreign body of left buttock, subs encntr",
"price": 93,
"stock": 13,
"category": "Peach - Fresh",
"order_counts": 12,
"created_at": "2023-02-18T16:15:16Z",
"rating": 2.08,
"rating_count": 87,
"sku": "PAH"
},
{
"id": 13,
"name": "Tomatoes - Grape",
"description": "Nondisplaced bicondylar fracture of left tibia",
"price": 132,
"stock": 13,
"category": "Veal - Striploin",
"order_counts": 24,
"created_at": "2022-06-08T20:49:59Z",
"rating": 3.32,
"rating_count": 82,
"sku": "ENZL"
},
{
"id": 14,
"name": "Tomato Paste",
"description": "Abrasion of unspecified part of neck, initial encounter",
"price": 48,
"stock": 24,
"category": "Juice - Tomato, 48 Oz",
"order_counts": 4,
"created_at": "2022-12-03T04:03:52Z",
"rating": 4.11,
"rating_count": 66,
"sku": "LTEA"
},
{
"id": 15,
"name": "Cheese - Roquefort Pappillon",
"description": "Wedge comprsn fx first thor vertebra, init for opn fx",
"price": 15,
"stock": 68,
"category": "Veal - Insides, Grains",
"order_counts": 72,
"created_at": "2022-09-22T06:22:33Z",
"rating": 1.54,
"rating_count": 40,
"sku": "AIF"
}
]

View File

@ -0,0 +1,102 @@
[
{
"order_id": "TWT76911",
"customer_name": "Robinson",
"location": "Lyubokhna",
"order_date": "2023-09-17T00:35:06Z",
"quantity": 6,
"payments": "COD",
"price": 336,
"status": "New"
},
{
"order_id": "TWT23890",
"customer_name": "Claudina",
"location": "Maracha",
"order_date": "2023-09-11T15:01:04Z",
"quantity": 8,
"payments": "American Express",
"price": 428,
"status": "Shopping"
},
{
"order_id": "TWT84616",
"customer_name": "Dewain",
"location": "Fuji",
"order_date": "2023-12-26T02:42:54Z",
"quantity": 6,
"payments": "Credit Card",
"price": 410,
"status": "Shopping"
},
{
"order_id": "TWT66711",
"customer_name": "Margette",
"location": "Chicago",
"order_date": "2024-01-09T18:24:04Z",
"quantity": 10,
"payments": "Paypal",
"price": 268,
"status": "Pending"
},
{
"order_id": "TWT50711",
"customer_name": "Brittany",
"location": "Hakha",
"order_date": "2023-09-28T14:17:02Z",
"quantity": 2,
"payments": "Visa Card",
"price": 229,
"status": "New"
},
{
"order_id": "TWT37588",
"customer_name": "Venus",
"location": "Sioguí Arriba",
"order_date": "2023-10-16T18:22:32Z",
"quantity": 5,
"payments": "Visa Card",
"price": 211,
"status": "Delivered"
},
{
"order_id": "TWT36092",
"customer_name": "Norry",
"location": "Hongqi",
"order_date": "2024-01-28T16:50:34Z",
"quantity": 7,
"payments": "American Express",
"price": 111,
"status": "Shopping"
},
{
"order_id": "TWT99659",
"customer_name": "Rabbi",
"location": "Macari",
"order_date": "2023-03-27T17:42:51Z",
"quantity": 9,
"payments": "COD",
"price": 268,
"status": "Pending"
},
{
"order_id": "TWT21952",
"customer_name": "Hesther",
"location": "København",
"order_date": "2024-02-08T00:16:01Z",
"quantity": 9,
"payments": "Credit Card",
"price": 392,
"status": "Delivered"
},
{
"order_id": "TWT66885",
"customer_name": "Sioux",
"location": "Taohua",
"order_date": "2023-10-23T16:25:29Z",
"quantity": 1,
"payments": "Paypal",
"price": 337,
"status": "New"
}
]

View File

@ -0,0 +1,82 @@
[
{
"id": 1,
"title": "Marketing Manager",
"assign_to": "Hercules",
"date": "2024-03-10T00:14:27Z",
"priority": "High",
"status": "Pending"
},
{
"id": 2,
"title": "Community Outreach Specialist",
"assign_to": "Fayre",
"date": "2024-10-07T06:24:18Z",
"priority": "High",
"status": "Pending"
},
{
"id": 3,
"title": "Senior Quality Engineer",
"assign_to": "Nancy",
"date": "2024-01-11T18:22:29Z",
"priority": "Medium",
"status": "In Progress"
},
{
"id": 4,
"title": "VP Sales",
"assign_to": "Jemimah",
"date": "2024-06-17T17:57:40Z",
"priority": "Low",
"status": "Finished"
},
{
"id": 5,
"title": "Sales Associate",
"assign_to": "Raquel",
"date": "2024-05-06T11:11:43Z",
"priority": "Medium",
"status": "Finished"
},
{
"id": 6,
"title": "Dental Hygienist",
"assign_to": "Vasili",
"date": "2024-05-31T21:16:27Z",
"priority": "High",
"status": "Finished"
},
{
"id": 7,
"title": "Occupational Therapist",
"assign_to": "Lulu",
"date": "2024-03-28T21:07:00Z",
"priority": "Medium",
"status": "Pending"
},
{
"id": 8,
"title": "Analyst Programmer",
"assign_to": "Egor",
"date": "2023-12-11T08:16:01Z",
"priority": "High",
"status": "Finished"
},
{
"id": 9,
"title": "Research Assistant III",
"assign_to": "Max",
"date": "2024-02-15T21:59:34Z",
"priority": "High",
"status": "Pending"
},
{
"id": 10,
"title": "Developer II",
"assign_to": "Kaela",
"date": "2024-06-24T07:29:47Z",
"priority": "High",
"status": "Cancelled"
}
]

View File

@ -0,0 +1,47 @@
[
{
"id": 1,
"product_name": "Theobald",
"quantity": 2,
"customer": "Theobald Southcott",
"status": "Shipped",
"price": 361,
"order_date": "2023-12-11T23:48:54Z"
},
{
"id": 2,
"product_name": "Carla",
"quantity": 3,
"customer": "Carla Grgic",
"status": "Pending",
"price": 329,
"order_date": "2024-05-25T09:37:51Z"
},
{
"id": 3,
"product_name": "Liana",
"quantity": 3,
"customer": "Liana Swannell",
"status": "Delivery",
"price": 120,
"order_date": "2024-04-06T19:02:14Z"
},
{
"id": 4,
"product_name": "Radcliffe",
"quantity": 4,
"customer": "Radcliffe Venard",
"status": "Shipped",
"price": 750,
"order_date": "2024-10-27T10:44:12Z"
},
{
"id": 5,
"product_name": "Delmer",
"quantity": 3,
"customer": "Delmer Vamplew",
"status": "Delivery",
"price": 469,
"order_date": "2024-10-16T15:55:22Z"
}
]

View File

@ -0,0 +1,91 @@
[
{
"id": 1,
"title": "Finish report",
"description": "Complete the quarterly report for the team meeting.",
"due_date": "2024-07-14T00:37:09Z",
"priority": "High",
"status": "Pending"
},
{
"id": 2,
"title": "Team meeting",
"description": "Attend the weekly project meeting and provide updates.",
"due_date": "2024-04-18T01:25:27Z",
"priority": "Medium",
"status": "Completed"
},
{
"id": 3,
"title": "Buy groceries",
"description": "Purchase ingredients for dinner and weekly supplies.",
"due_date": "2024-02-17T16:32:03Z",
"priority": "Low",
"status": "Pending"
},
{
"id": 4,
"title": "Update website",
"description": "Update the homepage with new content and images.",
"due_date": "2024-07-16T15:49:59Z",
"priority": "Medium",
"status": "Pending"
},
{
"id": 5,
"title": "Send emails",
"description": "Send out follow-up emails to clients from last week's meeting.",
"due_date": "2024-09-24T11:08:14Z",
"priority": "High",
"status": "Completed"
},
{
"id": 6,
"title": "Organize workspace",
"description": "Declutter desk and organize office supplies.",
"due_date": "2024-10-06T11:49:14Z",
"priority": "Low",
"status": "Pending"
},
{
"id": 7,
"title": "Prepare presentation",
"description": "Create slides for next week's client pitch.",
"due_date": "2024-05-20T04:38:51Z",
"priority": "High",
"status": "In Progress"
},
{
"id": 8,
"title": "Write blog post",
"description": "Write a blog post about industry trends for the company website.",
"due_date": "2024-01-13T07:46:34Z",
"priority": "Medium",
"status": "Pending"
},
{
"id": 9,
"title": "Schedule doctor's appointment",
"description": "Call and book a check-up appointment with the doctor.",
"due_date": "2024-09-22T10:54:21Z",
"priority": "Low",
"status": "Pending"
},
{
"id": 10,
"title": "Review budget",
"description": "Review and adjust monthly budget for expenses.",
"due_date": "2024-08-20T03:57:48Z",
"priority": "Medium",
"status": "Pending"
}
]

View File

@ -0,0 +1,62 @@
[
{
"id": 1,
"first_name": "Roobbie",
"last_name": "Ivashintsov",
"email": "rivashintsov0@symantec.com"
},
{
"id": 2,
"first_name": "Cissy",
"last_name": "Salmons",
"email": "csalmons1@unicef.org"
},
{
"id": 3,
"first_name": "Jillene",
"last_name": "Besnardeau",
"email": "jbesnardeau2@china.com.cn"
},
{
"id": 4,
"first_name": "Catriona",
"last_name": "Wrennall",
"email": "cwrennall3@godaddy.com"
},
{
"id": 5,
"first_name": "Risa",
"last_name": "Rumens",
"email": "rrumens4@un.org"
},
{
"id": 6,
"first_name": "Gianina",
"last_name": "Pavlenkov",
"email": "gpavlenkov5@ted.com"
},
{
"id": 7,
"first_name": "Tripp",
"last_name": "Blowick",
"email": "tblowick6@reuters.com"
},
{
"id": 8,
"first_name": "Ephrem",
"last_name": "Pfertner",
"email": "epfertner7@godaddy.com"
},
{
"id": 9,
"first_name": "Jacinda",
"last_name": "Tomkies",
"email": "jtomkies8@si.edu"
},
{
"id": 10,
"first_name": "Traver",
"last_name": "Poile",
"email": "tpoile9@phoca.cz"
}
]

View File

@ -0,0 +1,56 @@
[
{
"id": 1,
"session_duration": "2023-08-18T14:47:41Z",
"channel": "Organic Search",
"session": 547,
"bounce_rate": 27.2,
"target_reached": 843,
"page_per_session": 4.4
},
{
"id": 2,
"session_duration": "2023-04-20T20:13:24Z",
"channel": "Direct",
"session": 855,
"bounce_rate": 25.8,
"target_reached": 998,
"page_per_session": 6.6
},
{
"id": 3,
"session_duration": "2023-09-05T02:15:03Z",
"channel": "Referral",
"session": 337,
"bounce_rate": 12.4,
"target_reached": 509,
"page_per_session": 8.0
},
{
"id": 4,
"session_duration": "2023-06-23T13:50:55Z",
"channel": "Social",
"session": 279,
"bounce_rate": 40.4,
"target_reached": 860,
"page_per_session": 7.3
},
{
"id": 5,
"session_duration": "2023-09-14T09:01:34Z",
"channel": "Email",
"session": 118,
"bounce_rate": 46.2,
"target_reached": 168,
"page_per_session": 3.0
},
{
"id": 6,
"session_duration": "2023-07-14T01:46:51Z",
"channel": "Paid Search",
"session": 205,
"bounce_rate": 32.8,
"target_reached": 583,
"page_per_session": 2.5
}
]

42679
assets/data/world_map.json Normal file

File diff suppressed because it is too large Load Diff

BIN
assets/dummy/dummy_1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 KiB

BIN
assets/dummy/dummy_2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

BIN
assets/dummy/dummy_3.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

BIN
assets/dummy/dummy_4.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 179 KiB

BIN
assets/dummy/dummy_5.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 277 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 396 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 316 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 375 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 380 KiB

BIN
assets/lang/ar.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

239
assets/lang/ar.json Normal file
View File

@ -0,0 +1,239 @@
{
"elevated_button": "زر مرتفع",
"primary": "أساسي",
"secondary": "ثانوي",
"success": "نجاح",
"warning": "تحذير",
"info": "معلومات",
"danger": "خطر",
"elevated_rounded_button": "زر مستدير مرتفع",
"flat_button": "زر مسطح",
"rounded_button": "زر مدور",
"outline_button": "زر مخطط تفصيلي",
"outline_rounded_button": "زر تقريب المخطط التفصيلي",
"soft_button": "زر ناعم",
"soft_rounded_button": "زر مستدير ناعم",
"text_button": "زر النص",
"text_rounded_button": "زر نص مقرب",
"sized_button": "زر الحجم",
"small": "صغير",
"medium": "واسطة",
"large": "كبير",
"button_group": "مجموعة الأزرار",
"light": "ضوء",
"dark": "مظلم",
"system": "نظام",
"buttons": "أزرار",
"ui": "واجهة المستخدم",
"cards": "البطاقات",
"card_title": "عنوان البطاقة",
"click_me": "انقر فوق لي",
"text_actions": "إجراءات النص",
"ok": "نعم",
"cancel": "يلغي",
"subtitle_is_more_useful": "الترجمة مفيدة أكثر",
"no_shadow": "لا الظل",
"bordered": "يحدها",
"shadow": "ظل",
"very_high": "عالي جدا",
"card_customizer": "مخصص البطاقة",
"shadow_position": "موقف الظل",
"shadow_size": "حجم الظل",
"shadow_color": "لون الظل",
"result": "نتيجة",
"animated": "مفعم بالحيوية",
"carousels": "دائري",
"simple": "بسيط",
"dialogs": "الحوارات",
"type_/_size": "النوع / الحجم",
"alert": "يُحذًِر",
"standard": "معيار",
"full_width": "العرض الكامل",
"positions": "المناصب",
"left": "غادر",
"top": "قمة",
"right": "يمين",
"bottom": "قاع",
"other": "آخر",
"static": "ثابتة",
"confirmation?": "تأكيد؟",
"are_you_sure,_you_want_to_delete_history?": "هل أنت متأكد أنك تريد حذف التاريخ؟",
"close": "يغلق",
"save": "يحفظ",
"dialog_title": "عنوان الحوار",
"right_dialog": "الحوار الصحيح",
"bottom_dialog": "مربع الحوار السفلي",
"top_dialog": "مربع الحوار العلوي",
"left_dialog": "الحوار الأيسر",
"static_dialog": "حوار ثابت",
"notifications": "إشعارات",
"banner": "لافتة",
"toast": "خبز محمص",
"type": "يكتب",
"title_text": "نص العنوان",
"toast_text": "toast_text",
"color_variant": "متغير اللون",
"floating_type": "نوع عائم",
"actions": "أجراءات",
"show_close_icon": "إظهار رمز الإغلاق",
"show_ok_action": "عرض العمل الجيد",
"show_leading_icon": "إظهار رمز القيادة",
"timeout": "نفذ الوقت",
"infinite": "لانهائي",
"show": "يعرض",
"tabs": "نوافذ التبويب",
"default_tabs": "علامات التبويب الافتراضية",
"home": "بيت",
"profile": "حساب تعريفي",
"messages": "رسائل",
"background_indicator": "مؤشر الخلفية",
"bordered_indicator": "مؤشر يحد",
"soft_indicator": "مؤشر ناعم",
"custom_indicator": "مؤشر مخصص",
"dashboard": "لوحة القيادة",
"ecommerce": "التجارة الإلكترونية",
"total_revenue": "إجمالي الإيرادات",
"today_sales": "مبيعات اليوم",
"on_delivery": "عند التسليم",
"website_visits": "زيارات الموقع",
"revenue": "ربح",
"target": "هدف",
"last_week": "الأسبوع الماضي",
"last_month": "الشهر الماضي",
"product_comparison": "مقارنة السلعة",
"product": "منتج",
"trending_products": "المنتجات الرائجة",
"view_all": "مشاهدة الكل",
"id": "بطاقة تعريف",
"name": "اسم",
"price": "سعر",
"stock": "مخزون",
"order": "طلبات",
"action": "فعل",
"customers": "عملاء",
"products": "منتجات",
"create_product": "إنشاء منتج",
"rating": "تقييم",
"sku": "SKU",
"created_at": "أنشئت في",
"add_products": "أضف المنتجات",
"general": "عام",
"product_name": "اسم المنتج",
"shop_name": "اسم المحل",
"description": "وصف",
"category": "فئة",
"status": "حالة",
"tags": "العلامات",
"balance": "توازن",
"last_order_at": "آخر طلب في",
"basic_forms": "النماذج الأساسية",
"forms": "نماذج",
"basic": "أساسي",
"boxed_style": "أسلوب محاصر",
"outline_style": "نمط المخطط التفصيلي",
"example_form": "شكل مثال",
"first_name": "الاسم الأول",
"last_name": "اسم العائلة",
"email_address": "عنوان البريد الإلكتروني",
"password": "كلمة المرور",
"basic_input": "المدخلات الأساسية",
"gender": "جنس",
"other_settings": "اعدادات اخرى",
"set_profile_to_private": "تعيين ملف التعريف إلى خاص",
"opt-in_daily_newsletter_at_the_email": "الاشتراك في النشرة الإخبارية اليومية على البريد الإلكتروني",
"i_agree_with ": "أنا أتفق مع",
"terms_&_conditions": "البنود و الظروف",
"submit": "يُقدِّم",
"more_inputs": "المزيد من المدخلات",
"date_time_pickers": "منتقي التاريخ والوقت",
"select_date": "حدد تاريخ",
"select_time": "حدد الوقت",
"select_range": "اختر نطاقا",
"select_date_&_time": "حدد التاريخ والوقت",
"sliders": "المتزلجون",
"builder": "باني",
"floating_label_type": "نوع الملصق العائم",
"border_type": "نوع الحدود",
"filled": "مملوء",
"output": "انتاج |",
"validation_forms": "نماذج التحقق من الصحة",
"validation": "تصديق",
"full_name": "الاسم الكامل",
"clear": "واضح",
"wizard": "ساحر",
"enable_validation": "تفعيل التحقق",
"username": "اسم المستخدم",
"next": "التالي",
"phone_number": "رقم التليفون",
"date_of_birth": "تاريخ الميلاد",
"prev": "السابق",
"your_registration_process_is_finished": "انتهت عملية التسجيل الخاصة بك",
"finish": "ينهي",
"account": "حساب",
"complete": "مكتمل",
"basic_tables": "الجداول الأساسية",
"basic_table": "الجدول الأساسي",
"code": "شفرة",
"qty": "الكمية",
"google_map": "خرائط جوجل",
"map": "خريطة",
"syncfusion_charts": "مخططات Syncfusion",
"charts": "الرسوم البيانية",
"area_chart": "مخطط المنطقة",
"bar_chart": "شريط الرسم البياني",
"bubble_chart": "مخطط فقاعي",
"column_chart": "مخطط عمودي",
"doughnut_chart": "مخطط دائري مجوف",
"pie_chart": "مخطط دائري",
"radial_chart": "مخطط شعاعي",
"pyramid_chart": "مخطط هرمي",
"product_a": "المنتج أ",
"product_b": "المنتج ب",
"average_sales_comparison": "متوسط مقارنة المبيعات",
"tourism_-_number": "السياحة - رقم",
"of_arrivals": "من الوافدين",
"world_countries_details": "تفاصيل دول العالم",
"literacy_rate": "معدل معرفة القراءة والكتابة",
"gdp_growth_rate": "معدل نمو الناتج المحلي الإجمالي",
"population_growth_of_various_countries": "النمو السكاني في مختلف البلدان",
"composition_of_ocean_water": "تكوين مياه المحيطات",
"sales_by_sales_person": "المبيعات من قبل مندوب المبيعات",
"shot_put_distance": "تسديده مسافة",
"comparison_of_calories": "مقارنة السعرات الحرارية",
"login": "تسجيل الدخول",
"forgot_password": "هل نسيت كلمة السر",
"i_haven_t_account": "ليس لدي حساب",
"back_to_log_in": "العودة لتسجيل الدخول",
"register": "يسجل",
"email_password": "كلمة مرور البريد الإلكتروني",
"reset_password": "إعادة تعيين كلمة المرور",
"your_password_will_be_reset": "سيتم إعادة تعيين كلمة المرور الخاصة بك",
"confirm_password": "تأكيد كلمة المرور",
"confirm": "يتأكد",
"locked": "مقفل",
"unlock": "الغاء القفل",
"faqs": "أسئلة وأجوبة",
"extra_pages": "صفحات اضافية",
"frequently_asked_questions": "أسئلة مكررة",
"contact_us": "اتصل بنا",
"email_us_your_question": "أرسل لنا سؤالك",
"license_&_copyright": "الترخيص وحقوق التأليف والنشر",
"apps": "تطبيقات",
"add_product": "أضف منتج",
"pages": "الصفحات",
"auth": "المصادقة",
"widgets": "الحاجيات",
"form": "استمارة",
"validations": "عمليات التحقق",
"starter": "بداية",
"FAQs": "الأسئلة الشائعة",
"syncfusion_chart": "مخطط Syncfusion",
"purchase_now": "شراء الآن",
"Product": "منتج",
"phone": "هاتف",
"forgot_password?": "هل نسيت كلمة السر؟",
"oK": "نعم",
"Basic": "أساسي",
"i_agree_with": "أنا أتفق مع",
"search": "يبحث"
}

BIN
assets/lang/en.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

239
assets/lang/en.json Normal file
View File

@ -0,0 +1,239 @@
{
"elevated_button": "Elevated button",
"primary": "Primary",
"secondary": "Secondary",
"success": "Success",
"warning": "Warning",
"info": "Info",
"danger": "Danger",
"elevated_rounded_button": "Elevated rounded button",
"flat_button": "Flat button",
"rounded_button": "Rounded button",
"outline_button": "Outline Button",
"outline_rounded_button": "Outline rounded button",
"soft_button": "Soft button",
"soft_rounded_button": "Soft rounded button",
"text_button": "Text button",
"text_rounded_button": "Text rounded button",
"sized_button": "Sized button",
"small": "Small",
"medium": "Medium",
"large": "Large",
"button_group": "Button group",
"light": "Light",
"dark": "Dark",
"system": "System",
"buttons": "Buttons",
"ui": "UI",
"cards": "Cards",
"card_title": "Card title",
"click_me": "Click me",
"text_actions": "Text actions",
"ok": "OK",
"cancel": "Cancel",
"subtitle_is_more_useful": "Subtitle is more useful",
"no_shadow": "No shadow",
"bordered": "Bordered",
"shadow": "Shadow",
"very_high": "Very high",
"card_customizer": "Card customizer",
"shadow_position": "Shadow position",
"shadow_size": "Shadow size",
"shadow_color": "Shadow color",
"result": "Result",
"animated": "Animated",
"carousels": "Carousels",
"simple": "Simple",
"dialogs": "Dialogs",
"type_/_size": "Type / size",
"alert": "Alert",
"standard": "Standard",
"full_width": "Full width",
"positions": "Positions",
"left": "Left",
"top": "Top",
"right": "Right",
"bottom": "Bottom",
"other": "Other",
"static": "Static",
"confirmation?": "Confirmation?",
"are_you_sure,_you_want_to_delete_history?": "Are you sure, you want to delete history?",
"close": "Close",
"save": "Save",
"dialog_title": "Dialog title",
"right_dialog": "Right dialog",
"bottom_dialog": "Bottom dialog",
"top_dialog": "Top dialog",
"left_dialog": "Left dialog",
"static_dialog": "Static dialog",
"notifications": "Notifications",
"banner": "Banner",
"toast": "Toast",
"type": "Type",
"title_text": "Title text",
"toast_text": "toast_text",
"color_variant": "Color variant",
"floating_type": "Floating type",
"actions": "Actions",
"show_close_icon": "Show close icon",
"show_ok_action": "Show ok action",
"show_leading_icon": "Show leading icon",
"timeout": "Timeout",
"infinite": "Infinite",
"show": "Show",
"tabs": "Tabs",
"default_tabs": "Default tabs",
"home": "Home",
"profile": "Profile",
"messages": "Messages",
"background_indicator": "Background indicator",
"bordered_indicator": "Bordered indicator",
"soft_indicator": "Soft indicator",
"custom_indicator": "Custom indicator",
"dashboard": "Dashboard",
"ecommerce": "Ecommerce",
"total_revenue": "Total revenue",
"today_sales": "Today sales",
"on_delivery": "On delivery",
"website_visits": "Website visits",
"revenue": "Revenue",
"target": "Target",
"last_week": "Last week",
"last_month": "Last month",
"product_comparison": "Product comparison",
"product": "Product",
"trending_products": "Trending products",
"view_all": "View all",
"id": "ID",
"name": "Name",
"price": "Price",
"stock": "Stock",
"order": "Orders",
"action": "Action",
"customers": "Customers",
"products": "Products",
"create_product": "Create product",
"rating": "Rating",
"sku": "SKU",
"created_at": "Created at",
"add_products": "Add products",
"general": "GENERAL",
"product_name": "Product name",
"shop_name": "Shop name",
"description": "Description",
"category": "Category",
"status": "Status",
"tags": "Tags",
"balance": "Balance",
"last_order_at": "Last order at",
"basic_forms": "Basic forms",
"forms": "Forms",
"basic": "Basic",
"boxed_style": "Boxed style",
"outline_style": "Outline style",
"example_form": "Example form",
"first_name": "First name",
"last_name": "Last name",
"email_address": "Email address",
"password": "Password",
"basic_input": "Basic input",
"gender": "Gender",
"other_settings": "Other settings",
"set_profile_to_private": "Set profile to private",
"opt-in_daily_newsletter_at_the_email": "Opt-in daily newsletter at the email",
"i_agree_with ": "I agree with ",
"terms_&_conditions": "terms & conditions",
"submit": "Submit",
"more_inputs": "More inputs",
"date_time_pickers": "Date time pickers",
"select_date": "Select date",
"select_time": "Select time",
"select_range": "Select range",
"select_date_&_time": "Select date & time",
"sliders": "Sliders",
"builder": "Builder",
"floating_label_type": "Floating label type",
"border_type": "Border type",
"filled": "Filled",
"output": "Output",
"validation_forms": "Validation forms",
"validation": "Validation",
"full_name": "Full name",
"clear": "Clear",
"wizard": "Wizard",
"enable_validation": "Enable validation",
"username": "Username",
"next": "Next",
"phone_number": "Phone number",
"date_of_birth": "Date of birth",
"prev": "Prev",
"your_registration_process_is_finished": "Your registration process is finished",
"finish": "Finish",
"account": "Account",
"complete": "Complete",
"basic_tables": "Basic tables",
"basic_table": "Basic table",
"code": "Code",
"qty": "Qty",
"google_map": "Google map",
"map": "Map",
"syncfusion_charts": "Syncfusion charts",
"charts": "Charts",
"area_chart": "Area chart",
"bar_chart": "Bar chart",
"bubble_chart": "Bubble chart",
"column_chart": "Column chart",
"doughnut_chart": "Doughnut chart",
"pie_chart": "Pie chart",
"radial_chart": "Radial chart",
"pyramid_chart": "Pyramid chart",
"product_a": "Product a",
"product_b": "Product b",
"average_sales_comparison": "Average sales comparison",
"tourism_-_number": "Tourism - number",
"of_arrivals": "of arrivals",
"world_countries_details": "World countries details",
"literacy_rate": "Literacy rate",
"gdp_growth_rate": "GDP growth rate",
"population_growth_of_various_countries": "Population growth of various countries",
"composition_of_ocean_water": "Composition of ocean water",
"sales_by_sales_person": "Sales by sales person",
"shot_put_distance": "Shot put distance",
"comparison_of_calories": "Comparison of calories",
"login": "Login",
"forgot_password": "Forgot password",
"i_haven_t_account": "I haven't account",
"back_to_log_in": "Back to log in",
"register": "Register",
"email_password": "Email password",
"reset_password": "Reset password",
"your_password_will_be_reset": "Your password will be reset",
"confirm_password": "Confirm password",
"confirm": "Confirm",
"locked": "Locked",
"unlock": "Unlock",
"faqs": "FAQs",
"extra_pages": "Extra pages",
"frequently_asked_questions": "Frequently asked questions",
"contact_us": "Contact us",
"email_us_your_question": "Email us your question",
"license_&_copyright": "License & copyright",
"apps": "Apps",
"add_product": "Add product",
"pages": "Pages",
"auth": "Auth",
"widgets": "Widgets",
"form": "Form",
"validations": "Validations",
"starter": "Starter",
"FAQs": "Faqs",
"syncfusion_chart": "Syncfusion chart",
"purchase_now": "Purchase now",
"Product": "Product",
"phone": "Phone",
"forgot_password?": "Forgot password?",
"oK": "Ok",
"Basic": "Basic",
"i_agree_with": "I agree with",
"search": "Search"
}

BIN
assets/lang/es.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

239
assets/lang/es.json Normal file
View File

@ -0,0 +1,239 @@
{
"elevated_button": "Botón elevado",
"primary": "Primario",
"secondary": "Secundario",
"success": "Éxito",
"warning": "Advertencia",
"info": "Información",
"danger": "Peligro",
"elevated_rounded_button": "Botón redondeado elevado",
"flat_button": "botón plano",
"rounded_button": "botón redondeado",
"outline_button": "Botón de esquema",
"outline_rounded_button": "Botón redondeado de contorno",
"soft_button": "botón suave",
"soft_rounded_button": "Botón redondeado suave",
"text_button": "Botón de texto",
"text_rounded_button": "Botón de texto redondeado",
"sized_button": "Botón de tamaño",
"small": "Pequeño",
"medium": "Medio",
"large": "Grande",
"button_group": "Grupo de botones",
"light": "Luz",
"dark": "Oscuro",
"system": "Sistema",
"buttons": "Botones",
"ui": "interfaz de usuario",
"cards": "Tarjetas",
"card_title": "Título de la tarjeta",
"click_me": "Haz click en mi",
"text_actions": "Acciones de texto",
"ok": "DE ACUERDO",
"cancel": "Cancelar",
"subtitle_is_more_useful": "El subtítulo es más útil.",
"no_shadow": "Sin sombra",
"bordered": "Bordeado",
"shadow": "Sombra",
"very_high": "Muy alto",
"card_customizer": "personalizador de tarjetas",
"shadow_position": "Posición de la sombra",
"shadow_size": "Tamaño de la sombra",
"shadow_color": "color de sombra",
"result": "Resultado",
"animated": "Animado",
"carousels": "Carruseles",
"simple": "Simple",
"dialogs": "Diálogos",
"type_/_size": "Tipo / tamaño",
"alert": "Alerta",
"standard": "Estándar",
"full_width": "Ancho completo",
"positions": "Posiciones",
"left": "Izquierda",
"top": "Arriba",
"right": "Bien",
"bottom": "Abajo",
"other": "Otro",
"static": "Estático",
"confirmation?": "¿Confirmación?",
"are_you_sure,_you_want_to_delete_history?": "¿Está seguro de que desea eliminar el historial?",
"close": "Cerca",
"save": "Ahorrar",
"dialog_title": "Título del diálogo",
"right_dialog": "Diálogo derecho",
"bottom_dialog": "Diálogo inferior",
"top_dialog": "Diálogo superior",
"left_dialog": "Diálogo izquierdo",
"static_dialog": "diálogo estático",
"notifications": "Notificaciones",
"banner": "Bandera",
"toast": "Tostada",
"type": "Tipo",
"title_text": "Texto del título",
"toast_text": "texto_brindis",
"color_variant": "variante de color",
"floating_type": "tipo flotante",
"actions": "Comportamiento",
"show_close_icon": "Mostrar icono de cierre",
"show_ok_action": "Mostrar acción ok",
"show_leading_icon": "Mostrar icono principal",
"timeout": "Se acabó el tiempo",
"infinite": "Infinito",
"show": "Espectáculo",
"tabs": "Pestañas",
"default_tabs": "Pestañas predeterminadas",
"home": "Hogar",
"profile": "Perfil",
"messages": "Mensajes",
"background_indicator": "Indicador de fondo",
"bordered_indicator": "Indicador bordeado",
"soft_indicator": "Indicador suave",
"custom_indicator": "Indicador personalizado",
"dashboard": "Panel",
"ecommerce": "Comercio electrónico",
"total_revenue": "Los ingresos totales",
"today_sales": "Ventas de hoy",
"on_delivery": "En la entrega",
"website_visits": "Visitas al sitio web",
"revenue": "Ganancia",
"target": "Objetivo",
"last_week": "La semana pasada",
"last_month": "El mes pasado",
"product_comparison": "Comparación de productos",
"product": "Producto",
"trending_products": "Productos de tendencia",
"view_all": "Ver todo",
"id": "IDENTIFICACIÓN",
"name": "Nombre",
"price": "Precio",
"stock": "Existencias",
"order": "Pedidos",
"action": "Acción",
"customers": "Clientes",
"products": "productos",
"create_product": "Crear producto",
"rating": "Clasificación",
"sku": "SKU",
"created_at": "Creado en",
"add_products": "Agregar productos",
"general": "GENERAL",
"product_name": "Nombre del producto",
"shop_name": "Nombre de tienda",
"description": "Descripción",
"category": "Categoría",
"status": "Estado",
"tags": "Etiquetas",
"balance": "Balance",
"last_order_at": "último pedido en",
"basic_forms": "Formularios básicos",
"forms": "formularios",
"basic": "Básico",
"boxed_style": "Estilo en caja",
"outline_style": "estilo de contorno",
"example_form": "Formulario de ejemplo",
"first_name": "Nombre de pila",
"last_name": "Apellido",
"email_address": "Dirección de correo electrónico",
"password": "Contraseña",
"basic_input": "Entrada básica",
"gender": "Género",
"other_settings": "Otros ajustes",
"set_profile_to_private": "Establecer perfil como privado",
"opt-in_daily_newsletter_at_the_email": "Optar por el boletín diario en el correo electrónico",
"i_agree_with ": "estoy de acuerdo con",
"terms_&_conditions": "Términos y condiciones",
"submit": "Entregar",
"more_inputs": "Más entradas",
"date_time_pickers": "Selectores de fecha y hora",
"select_date": "Seleccione fecha",
"select_time": "Seleccionar hora",
"select_range": "Seleccionar rango",
"select_date_&_time": "Seleccionar fecha y hora",
"sliders": "Controles deslizantes",
"builder": "Constructor",
"floating_label_type": "Tipo de etiqueta flotante",
"border_type": "tipo de borde",
"filled": "Completado",
"output": "Producción",
"validation_forms": "Formularios de validación",
"validation": "Validación",
"full_name": "Nombre completo",
"clear": "Claro",
"wizard": "Mago",
"enable_validation": "Habilitar validación",
"username": "Nombre de usuario",
"next": "Próximo",
"phone_number": "Número de teléfono",
"date_of_birth": "Fecha de nacimiento",
"prev": "Anterior",
"your_registration_process_is_finished": "Su proceso de registro ha finalizado",
"finish": "Finalizar",
"account": "Cuenta",
"complete": "Completo",
"basic_tables": "Tablas básicas",
"basic_table": "Mesa básica",
"code": "Código",
"qty": "Cantidad",
"google_map": "mapa de Google",
"map": "Mapa",
"syncfusion_charts": "Gráficos de fusión sincronizada",
"charts": "Gráficos",
"area_chart": "gráfico de área",
"bar_chart": "Gráfico de barras",
"bubble_chart": "Gráfico de burbujas",
"column_chart": "Gráfico de columnas",
"doughnut_chart": "gráfico de anillos",
"pie_chart": "Gráfico circular",
"radial_chart": "carta radial",
"pyramid_chart": "Gráfico piramidal",
"product_a": "Producto un",
"product_b": "Producto b",
"average_sales_comparison": "Comparación de ventas promedio",
"tourism_-_number": "Turismo - número",
"of_arrivals": "de llegadas",
"world_countries_details": "Detalles de países del mundo",
"literacy_rate": "Tasa de alfabetización",
"gdp_growth_rate": "Tasa de crecimiento del PIB",
"population_growth_of_various_countries": "Crecimiento demográfico de varios países.",
"composition_of_ocean_water": "Composición del agua del océano",
"sales_by_sales_person": "Ventas por vendedor",
"shot_put_distance": "Distancia de lanzamiento de peso",
"comparison_of_calories": "Comparación de calorías",
"login": "Acceso",
"forgot_password": "Has olvidado tu contraseña",
"i_haven_t_account": "no tengo cuenta",
"back_to_log_in": "Atrás para iniciar sesión",
"register": "Registro",
"email_password": "Contraseña de Email",
"reset_password": "Restablecer la contraseña",
"your_password_will_be_reset": "Su contraseña será restablecida",
"confirm_password": "Confirmar Contraseña",
"confirm": "Confirmar",
"locked": "bloqueado",
"unlock": "desbloquear",
"faqs": "preguntas frecuentes",
"extra_pages": "páginas adicionales",
"frequently_asked_questions": "Preguntas frecuentes",
"contact_us": "Contáctenos",
"email_us_your_question": "Envíenos un correo electrónico con su pregunta",
"license_&_copyright": "Licencia y derechos de autor",
"apps": "aplicaciones",
"add_product": "Agregar producto",
"pages": "Paginas",
"auth": "Autorización",
"widgets": "Widgets",
"form": "Forma",
"validations": "Validaciones",
"starter": "Inicio",
"FAQs": "Preguntas frecuentes",
"syncfusion_chart": "gráfico de fusión sincronizada",
"purchase_now": "Comprar ahora",
"Product": "Producto",
"phone": "Teléfono",
"forgot_password?": "¿Has olvidado tu contraseña?",
"oK": "De acuerdo",
"Basic": "Básico",
"i_agree_with": "estoy de acuerdo con",
"search": "Buscar"
}

BIN
assets/lang/fr.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

239
assets/lang/fr.json Normal file
View File

@ -0,0 +1,239 @@
{
"elevated_button": "Bouton surélevé",
"primary": "Primaire",
"secondary": "Secondaire",
"success": "Succès",
"warning": "Avertissement",
"info": "Info",
"danger": "Danger",
"elevated_rounded_button": "Bouton arrondi surélevé",
"flat_button": "Bouton plat",
"rounded_button": "Bouton arrondi",
"outline_button": "Bouton Contour",
"outline_rounded_button": "Contour bouton arrondi",
"soft_button": "Bouton souple",
"soft_rounded_button": "Bouton arrondi doux",
"text_button": "Bouton Texte",
"text_rounded_button": "Bouton arrondi de texte",
"sized_button": "Bouton de taille",
"small": "Petit",
"medium": "Moyen",
"large": "Grand",
"button_group": "Groupe de boutons",
"light": "Lumière",
"dark": "Sombre",
"system": "Système",
"buttons": "Boutons",
"ui": "interface utilisateur",
"cards": "Cartes",
"card_title": "Titre de la carte",
"click_me": "Cliquez sur moi",
"text_actions": "Actions de texte",
"ok": "D'ACCORD",
"cancel": "Annuler",
"subtitle_is_more_useful": "Le sous-titre est plus utile",
"no_shadow": "Pas d'ombre",
"bordered": "Bordé",
"shadow": "Ombre",
"very_high": "Très haut",
"card_customizer": "Personnalisateur de carte",
"shadow_position": "Emplacement de l'ombre",
"shadow_size": "Taille de l'ombre",
"shadow_color": "Couleur de l'ombre",
"result": "Résultat",
"animated": "Animé",
"carousels": "Carrousels",
"simple": "Simple",
"dialogs": "Dialogues",
"type_/_size": "Type / taille",
"alert": "Alerte",
"standard": "Standard",
"full_width": "Pleine largeur",
"positions": "Postes",
"left": "Gauche",
"top": "Haut",
"right": "Droite",
"bottom": "Bas",
"other": "Autre",
"static": "Statique",
"confirmation?": "Confirmation?",
"are_you_sure,_you_want_to_delete_history?": "Êtes-vous sûr de vouloir supprimer l'historique ?",
"close": "Fermer",
"save": "Sauvegarder",
"dialog_title": "Titre de la boîte de dialogue",
"right_dialog": "Boîte de dialogue droite",
"bottom_dialog": "Boîte de dialogue inférieure",
"top_dialog": "Boîte de dialogue supérieure",
"left_dialog": "Boîte de dialogue de gauche",
"static_dialog": "Boîte de dialogue statique",
"notifications": "Avis",
"banner": "Bannière",
"toast": "Griller",
"type": "Taper",
"title_text": "Texte du titre",
"toast_text": "toast_text",
"color_variant": "Variante de couleur",
"floating_type": "Type flottant",
"actions": "Actions",
"show_close_icon": "Afficher l'icône de fermeture",
"show_ok_action": "Afficher l'action correcte",
"show_leading_icon": "Afficher l'icône principale",
"timeout": "Temps libre",
"infinite": "Infini",
"show": "Montrer",
"tabs": "Onglets",
"default_tabs": "Onglets par défaut",
"home": "Maison",
"profile": "Profil",
"messages": "messages",
"background_indicator": "Indicateur de fond",
"bordered_indicator": "Indicateur bordé",
"soft_indicator": "Indicateur doux",
"custom_indicator": "Indicateur personnalisé",
"dashboard": "Tableau de bord",
"ecommerce": "Commerce électronique",
"total_revenue": "Revenu total",
"today_sales": "Ventes d'aujourd'hui",
"on_delivery": "À la livraison",
"website_visits": "Visites du site Web",
"revenue": "Revenu",
"target": "Cible",
"last_week": "La semaine dernière",
"last_month": "Le mois dernier",
"product_comparison": "Comparaison de produits",
"product": "Produit",
"trending_products": "Produits tendance",
"view_all": "Voir tout",
"id": "IDENTIFIANT",
"name": "Nom",
"price": "Prix",
"stock": "Action",
"order": "Ordres",
"action": "Action",
"customers": "Clients",
"products": "Des produits",
"create_product": "Créer un produit",
"rating": "Notation",
"sku": "UGS",
"created_at": "Créé à",
"add_products": "Ajouter des produits",
"general": "GÉNÉRAL",
"product_name": "Nom du produit",
"shop_name": "Nom de la boutique",
"description": "Description",
"category": "Catégorie",
"status": "Statut",
"tags": "Mots clés",
"balance": "Équilibre",
"last_order_at": "Dernière commande à",
"basic_forms": "Formulaires de base",
"forms": "Formes",
"basic": "Basique",
"boxed_style": "Modèle en boîte",
"outline_style": "Style de contour",
"example_form": "Exemple de formulaire",
"first_name": "Prénom",
"last_name": "Nom de famille",
"email_address": "Adresse e-mail",
"password": "Mot de passe",
"basic_input": "Entrée de base",
"gender": "Genre",
"other_settings": "Autres réglages",
"set_profile_to_private": "Définir le profil sur privé",
"opt-in_daily_newsletter_at_the_email": "Inscrivez-vous à la newsletter quotidienne par e-mail",
"i_agree_with ": "je suis d'accord avec",
"terms_&_conditions": "termes et conditions",
"submit": "Soumettre",
"more_inputs": "Plus d'entrées",
"date_time_pickers": "Sélecteurs de date et d'heure",
"select_date": "Sélectionner une date",
"select_time": "Sélectionnez l'heure",
"select_range": "Sélectionnez la gamme",
"select_date_&_time": "Sélectionnez la date et l'heure",
"sliders": "Curseurs",
"builder": "Constructeur",
"floating_label_type": "Type d'étiquette flottante",
"border_type": "Type de bordure",
"filled": "Rempli",
"output": "Sortir",
"validation_forms": "Formulaires de validation",
"validation": "Validation",
"full_name": "Nom et prénom",
"clear": "Clair",
"wizard": "Magicien",
"enable_validation": "Activer la validation",
"username": "Nom d'utilisateur",
"next": "Suivant",
"phone_number": "Numéro de téléphone",
"date_of_birth": "Date de naissance",
"prev": "Précédent",
"your_registration_process_is_finished": "Votre processus d'inscription est terminé",
"finish": "Finir",
"account": "Compte",
"complete": "Complet",
"basic_tables": "Tableaux de base",
"basic_table": "Tableau de base",
"code": "Code",
"qty": "Qté",
"google_map": "Google Map",
"map": "Carte",
"syncfusion_charts": "Graphiques de synchronisation",
"charts": "Graphiques",
"area_chart": "Graphique en aires",
"bar_chart": "Diagramme à bandes",
"bubble_chart": "Graphique à bulles",
"column_chart": "Diagramme à colonnes",
"doughnut_chart": "Graphique en anneau",
"pie_chart": "Diagramme circulaire",
"radial_chart": "Diagramme radial",
"pyramid_chart": "Graphique pyramidal",
"product_a": "Produit un",
"product_b": "Produit b",
"average_sales_comparison": "Comparaison des ventes moyennes",
"tourism_-_number": "Tourisme - nombre",
"of_arrivals": "des arrivées",
"world_countries_details": "Détails des pays du monde",
"literacy_rate": "Taux d'alphabétisation",
"gdp_growth_rate": "Taux de croissance du PIB",
"population_growth_of_various_countries": "Croissance démographique de divers pays",
"composition_of_ocean_water": "Composition de l'eau de mer",
"sales_by_sales_person": "Ventes par vendeur",
"shot_put_distance": "Distance lancer du poids",
"comparison_of_calories": "Comparaison des calories",
"login": "Connexion",
"forgot_password": "Mot de passe oublié",
"i_haven_t_account": "je n'ai pas de compte",
"back_to_log_in": "Retour connexion",
"register": "Enregistrer",
"email_password": "Mot de passe de l'email",
"reset_password": "Réinitialiser le mot de passe",
"your_password_will_be_reset": "Votre mot de passe sera réinitialisé",
"confirm_password": "Confirmez le mot de passe",
"confirm": "Confirmer",
"locked": "Fermé à clé",
"unlock": "Ouvrir",
"faqs": "FAQ",
"extra_pages": "Pages supplémentaires",
"frequently_asked_questions": "Questions fréquemment posées",
"contact_us": "Contactez-nous",
"email_us_your_question": "Envoyez-nous votre question par e-mail",
"license_&_copyright": "Licence & droit d'auteur",
"apps": "applications",
"add_product": "Ajouter un produit",
"pages": "pages",
"auth": "Authentification",
"widgets": "Widget",
"form": "Former",
"validations": "Validations",
"starter": "Entrée",
"FAQs": "FAQ",
"syncfusion_chart": "Graphique de synchronisation",
"purchase_now": "Achetez maintenant",
"Product": "Produit",
"phone": "Téléphone",
"forgot_password?": "Mot de passe oublié?",
"oK": "D'accord",
"Basic": "Basique",
"i_agree_with": "je suis d'accord avec",
"search": "Recherche"
}

BIN
assets/lang/hi.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

239
assets/lang/hi.json Normal file
View File

@ -0,0 +1,239 @@
{
"elevated_button": "ऊंचा बटन",
"primary": "प्राथमिक",
"secondary": "माध्यमिक",
"success": "सफलता",
"warning": "चेतावनी",
"info": "जानकारी",
"danger": "खतरा",
"elevated_rounded_button": "ऊंचा गोल बटन",
"flat_button": "फ्लैट बटन",
"rounded_button": "गोल बटन",
"outline_button": "रूपरेखा बटन",
"outline_rounded_button": "रूपरेखा गोल बटन",
"soft_button": "कोमल बटन",
"soft_rounded_button": "नरम गोल बटन",
"text_button": "टेक्स्ट बटन",
"text_rounded_button": "पाठ गोल बटन",
"sized_button": "आकार का बटन",
"small": "छोटा",
"medium": "मध्यम",
"large": "बड़ा",
"button_group": "बटन समूह",
"light": "रोशनी",
"dark": "अँधेरा",
"system": "प्रणाली",
"buttons": "बटन",
"ui": "यूआई",
"cards": "पत्ते",
"card_title": "कार्ड का शीर्षक",
"click_me": "मुझे क्लिक करें",
"text_actions": "पाठ क्रियाएं",
"ok": "ठीक",
"cancel": "रद्द करना",
"subtitle_is_more_useful": "उपशीर्षक अधिक उपयोगी है",
"no_shadow": "छाया नहीं",
"bordered": "इसकी सीमाएं",
"shadow": "छाया",
"very_high": "बहुत ऊँचा",
"card_customizer": "कार्ड अनुकूलक",
"shadow_position": "छाया की स्थिति",
"shadow_size": "छाया का आकार",
"shadow_color": "छाया रंग",
"result": "परिणाम",
"animated": "एनिमेटेड",
"carousels": "हिंडोला",
"simple": "सरल",
"dialogs": "संवाद",
"type_/_size": "प्रकार / आकार",
"alert": "चेतावनी",
"standard": "मानक",
"full_width": "पूरी चौड़ाई",
"positions": "स्थितियां",
"left": "बाएं",
"top": "ऊपर",
"right": "सही",
"bottom": "तल",
"other": "अन्य",
"static": "स्थिर",
"confirmation?": "पुष्टि?",
"are_you_sure,_you_want_to_delete_history?": "क्या आप सुनिश्चित हैं, आप इतिहास हटाना चाहते हैं?",
"close": "बंद करना",
"save": "बचाना",
"dialog_title": "संवाद शीर्षक",
"right_dialog": "सही संवाद",
"bottom_dialog": "निचला संवाद",
"top_dialog": "शीर्ष संवाद",
"left_dialog": "वाम संवाद",
"static_dialog": "स्थैतिक संवाद",
"notifications": "सूचनाएं",
"banner": "बैनर",
"toast": "सेंकना",
"type": "प्रकार",
"title_text": "शीर्षक पाठ",
"toast_text": "toast_text",
"color_variant": "कलर वैरिएंट",
"floating_type": "फ्लोटिंग प्रकार",
"actions": "कार्रवाई",
"show_close_icon": "बंद करें आइकन दिखाएं",
"show_ok_action": "ओके एक्शन दिखाओ",
"show_leading_icon": "अग्रणी चिह्न दिखाएं",
"timeout": "समय समाप्त",
"infinite": "अनंत",
"show": "दिखाना",
"tabs": "टैब",
"default_tabs": "डिफ़ॉल्ट टैब",
"home": "घर",
"profile": "प्रोफ़ाइल",
"messages": "संदेशों",
"background_indicator": "पृष्ठभूमि संकेतक",
"bordered_indicator": "सीमांत संकेतक",
"soft_indicator": "शीतल सूचक",
"custom_indicator": "कस्टम संकेतक",
"dashboard": "डैशबोर्ड",
"ecommerce": "ई-कॉमर्स",
"total_revenue": "कुल मुनाफा",
"today_sales": "आज की बिक्री",
"on_delivery": "डिलीवरी पर",
"website_visits": "वेबसाइट का दौरा",
"revenue": "आय",
"target": "लक्ष्य",
"last_week": "पिछले सप्ताह",
"last_month": "पिछला महीना",
"product_comparison": "उत्पाद तुलना",
"product": "उत्पाद",
"trending_products": "ट्रेंडिंग उत्पाद",
"view_all": "सभी को देखें",
"id": "पहचान",
"name": "नाम",
"price": "कीमत",
"stock": "भंडार",
"order": "आदेश",
"action": "कार्य",
"customers": "ग्राहकों",
"products": "उत्पादों",
"create_product": "उत्पाद बनाएँ",
"rating": "रेटिंग",
"sku": "एसकेयू",
"created_at": "पर बनाया गया",
"add_products": "उत्पाद जोड़ें",
"general": "आम",
"product_name": "प्रोडक्ट का नाम",
"shop_name": "दुकान का नाम",
"description": "विवरण",
"category": "वर्ग",
"status": "दर्जा",
"tags": "टैग",
"balance": "संतुलन",
"last_order_at": "पर अंतिम आदेश",
"basic_forms": "मूल रूप",
"forms": "फार्म",
"basic": "बुनियादी",
"boxed_style": "बॉक्सिंग स्टाइल",
"outline_style": "रूपरेखा शैली",
"example_form": "उदाहरण रूप",
"first_name": "पहला नाम",
"last_name": "उपनाम",
"email_address": "मेल पता",
"password": "पासवर्ड",
"basic_input": "मूल इनपुट",
"gender": "लिंग",
"other_settings": "अन्य सेटिंग",
"set_profile_to_private": "प्रोफ़ाइल को निजी पर सेट करें",
"opt-in_daily_newsletter_at_the_email": "ईमेल पर ऑप्ट-इन दैनिक न्यूजलेटर",
"i_agree_with ": "मैं सहमत हूं",
"terms_&_conditions": "नियम एवं शर्तें",
"submit": "जमा करना",
"more_inputs": "अधिक इनपुट",
"date_time_pickers": "दिनांक समय लेने वाले",
"select_date": "तारीख़ चुनें",
"select_time": "समय चुनें",
"select_range": "रेंज चुनें",
"select_date_&_time": "तिथि और समय का चयन करें",
"sliders": "स्लाइडर्स",
"builder": "निर्माता",
"floating_label_type": "फ्लोटिंग लेबल प्रकार",
"border_type": "सीमा प्रकार",
"filled": "भरा हुआ",
"output": "उत्पादन",
"validation_forms": "सत्यापन प्रपत्र",
"validation": "मान्यकरण",
"full_name": "पूरा नाम",
"clear": "साफ़",
"wizard": "जादूगर",
"enable_validation": "सत्यापन सक्षम करें",
"username": "उपयोगकर्ता नाम",
"next": "अगला",
"phone_number": "फ़ोन नंबर",
"date_of_birth": "जन्म की तारीख",
"prev": "पिछला",
"your_registration_process_is_finished": "आपकी पंजीकरण प्रक्रिया समाप्त हो गई है",
"finish": "खत्म करना",
"account": "खाता",
"complete": "पूरा",
"basic_tables": "बेसिक टेबल",
"basic_table": "मूल तालिका",
"code": "कोड",
"qty": "मात्रा",
"google_map": "गूगल नक़्शे",
"map": "नक्शा",
"syncfusion_charts": "सिंकफ्यूजन चार्ट",
"charts": "चार्ट",
"area_chart": "एरिया चार्ट",
"bar_chart": "बार चार्ट",
"bubble_chart": "बबल चार्ट",
"column_chart": "स्तंभ रेखा - चित्र",
"doughnut_chart": "डोनट चार्ट",
"pie_chart": "पाई चार्ट",
"radial_chart": "रेडियल चार्ट",
"pyramid_chart": "पिरामिड चार्ट",
"product_a": "उत्पाद ए",
"product_b": "उत्पाद बी",
"average_sales_comparison": "औसत बिक्री तुलना",
"tourism_-_number": "पर्यटन - संख्या",
"of_arrivals": "आगमन की",
"world_countries_details": "दुनिया के देशों का विवरण",
"literacy_rate": "साक्षरता दर",
"gdp_growth_rate": "जीडीपी विकास दर",
"population_growth_of_various_countries": "विभिन्न देशों की जनसंख्या वृद्धि",
"composition_of_ocean_water": "समुद्र के पानी की संरचना",
"sales_by_sales_person": "बिक्री व्यक्ति द्वारा बिक्री",
"shot_put_distance": "शॉट पुट दूरी",
"comparison_of_calories": "कैलोरी की तुलना",
"login": "लॉग इन करें",
"forgot_password": "पासवर्ड भूल गए",
"i_haven_t_account": "मेरे पास हिसाब नहीं है",
"back_to_log_in": "लॉगिन पर वापस जाएं",
"register": "पंजीकरण करवाना",
"email_password": "ईमेल पासवर्ड",
"reset_password": "पासवर्ड रीसेट",
"your_password_will_be_reset": "आपका पासवर्ड रीसेट हो जाएगा",
"confirm_password": "पासवर्ड की पुष्टि कीजिये",
"confirm": "पुष्टि करना",
"locked": "बंद",
"unlock": "अनलॉक",
"faqs": "पूछे जाने वाले प्रश्न",
"extra_pages": "अतिरिक्त पृष्ठ",
"frequently_asked_questions": "अक्सर पूछे जाने वाले प्रश्नों",
"contact_us": "संपर्क करें",
"email_us_your_question": "हमें अपना प्रश्न ईमेल करें",
"license_&_copyright": "लाइसेंस और कॉपीराइट",
"apps": "ऐप्स",
"add_product": "उत्पाद जोड़ें",
"pages": "पृष्ठों",
"auth": "प्रमाणीकरण",
"widgets": "विजेट",
"form": "प्रपत्र",
"validations": "सत्यापन",
"starter": "स्टार्टर",
"FAQs": "पूछे जाने वाले प्रश्न",
"syncfusion_chart": "सिंकफ्यूजन चार्ट",
"purchase_now": "अब खरीदें",
"Product": "उत्पाद",
"phone": "फ़ोन",
"forgot_password?": "पासवर्ड भूल गए?",
"oK": "ठीक",
"Basic": "बुनियादी",
"i_agree_with": "मैं सहमत हूं",
"search": "खोज"
}

BIN
assets/logo/logo_dark.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
assets/logo/logo_light.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Some files were not shown because too many files have changed in this diff Show More