From 32602e5f1d2bb56f2d3e72847b0da2e40b5d5faf Mon Sep 17 00:00:00 2001 From: Madhav Saini Date: Sat, 1 Oct 2022 10:04:18 +0530 Subject: [PATCH 01/57] update dependencies --- pubspec.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index 3f7516db7..f446fe9f0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -39,7 +39,7 @@ dependencies: # Utility classes to work with asynchronous computations. async: ^2.9.0 # Declarative routing solution, where everything needed for navigation is automatically generated for you. - auto_route: ^4.2.1 + auto_route: ^5.0.1 # Automatically resizes text to fit perfectly within its bounds. auto_size_text: ^3.0.0 # Helps implement the BLoC pattern. @@ -71,7 +71,7 @@ dependencies: # HSV(HSB)/HSL/RGB/Material color picker flutter_colorpicker: ^1.0.3 # A cross platform plugin for displaying local notifications. - flutter_local_notifications: ^9.7.0 + flutter_local_notifications: ^11.0.1 # Getting the local timezone of the os. flutter_native_timezone: ^2.0.0 # An easy to implement custom switch @@ -109,7 +109,7 @@ dependencies: # Dart Build System builders for handling JSON. json_serializable: ^6.3.1 # Port of Kotlin's Kotlin Standard library for Dart/Flutter projects - kt_dart: ^0.10.0 + kt_dart: ^1.0.0 # Liquid progress indicator for Flutter. liquid_progress_indicator: ^0.4.0 # Handles getting a location on @@ -149,12 +149,12 @@ dependencies: # Get available wifi ssid list, user can connect to wifi with ssid and password, and create hotspot wifi_iot: ^0.3.16 # Scan for nearby visible WiFi access points. - wifi_scan: ^0.3.0 + wifi_scan: ^0.4.0+1 dev_dependencies: # Generator for auto_route library. - auto_route_generator: ^4.2.1 + auto_route_generator: ^5.0.2 # A build system for Dart code generation and modular compilation. build_runner: From 57e16f5efe447a23c2613f42a2c45e17847d2c60 Mon Sep 17 00:00:00 2001 From: superiorsd10 Date: Sat, 1 Oct 2022 15:53:05 +0530 Subject: [PATCH 02/57] adding translations for some files --- assets/translations/en-US.json | 11 ++++++++++- .../blinds/blinds_actor/blinds_actor_bloc.dart | 7 ++++--- .../boilers/boilers_actor/boilers_actor_bloc.dart | 5 +++-- .../configure_new_cbj_comp_bloc.dart | 7 ++++--- .../join_home_by_id/join_home_by_id_bloc.dart | 3 ++- 5 files changed, 23 insertions(+), 10 deletions(-) diff --git a/assets/translations/en-US.json b/assets/translations/en-US.json index 39dabdfc2..3394ecbe1 100644 --- a/assets/translations/en-US.json +++ b/assets/translations/en-US.json @@ -101,5 +101,14 @@ "No_need_here": "No need here", "Do_not_need": "Do not need", "Finish": "Finish", - "Select_Purposes_Of_The_Area": "Select Purposes Of The Area" + "Select_Purposes_Of_The_Area": "Select Purposes Of The Area", + "Pulling_Up_all_blinds": "Pulling Up all blinds", + "Stopping_all_blinds": "Stopping all blinds", + "Pulling_down_all_blinds": "Pulling down all blinds", + "Turning_On_boiler": "Turning On boiler", + "Turning_Off_boiler": "Turning Off boiler", + "Waiting_for_user_to_get_connected_to_WiFi": "Waiting for user to get connected to WiFi", + "allInSameRoom": "allInSameRoom", + "Can't_add_unsupported_device": "Can't add unsupported device", + "home": "home", } diff --git a/lib/application/blinds/blinds_actor/blinds_actor_bloc.dart b/lib/application/blinds/blinds_actor/blinds_actor_bloc.dart index ba28fa316..c165e8f26 100644 --- a/lib/application/blinds/blinds_actor/blinds_actor_bloc.dart +++ b/lib/application/blinds/blinds_actor/blinds_actor_bloc.dart @@ -5,6 +5,7 @@ import 'package:bloc/bloc.dart'; import 'package:cybear_jinni/domain/devices/device/devices_failures.dart'; import 'package:cybear_jinni/domain/devices/device/i_device_repository.dart'; import 'package:cybear_jinni/domain/devices/generic_light_device/generic_light_entity.dart'; +import 'package:easy_localization/easy_localization.dart'; import 'package:flutter/material.dart'; import 'package:freezed_annotation/freezed_annotation.dart'; import 'package:injectable/injectable.dart'; @@ -41,7 +42,7 @@ class BlindsActorBloc extends Bloc { Emitter emit, ) async { FlushbarHelper.createLoading( - message: 'Pulling Up all blinds', + message: 'Pulling_Up_all_blinds'.tr(), linearProgressIndicator: const LinearProgressIndicator(), ).show(event.context); @@ -53,7 +54,7 @@ class BlindsActorBloc extends Bloc { Emitter emit, ) async { FlushbarHelper.createLoading( - message: 'Stopping all blinds', + message: 'Stopping_all_blinds'.tr(), linearProgressIndicator: const LinearProgressIndicator(), ).show(event.context); @@ -65,7 +66,7 @@ class BlindsActorBloc extends Bloc { Emitter emit, ) async { FlushbarHelper.createLoading( - message: 'Pulling down all blinds', + message: 'Pulling_down_all_blinds'.tr(), linearProgressIndicator: const LinearProgressIndicator(), ).show(event.context); diff --git a/lib/application/boilers/boilers_actor/boilers_actor_bloc.dart b/lib/application/boilers/boilers_actor/boilers_actor_bloc.dart index 08b94f253..bb85daaff 100644 --- a/lib/application/boilers/boilers_actor/boilers_actor_bloc.dart +++ b/lib/application/boilers/boilers_actor/boilers_actor_bloc.dart @@ -5,6 +5,7 @@ import 'package:bloc/bloc.dart'; import 'package:cybear_jinni/domain/devices/device/devices_failures.dart'; import 'package:cybear_jinni/domain/devices/device/i_device_repository.dart'; import 'package:cybear_jinni/domain/devices/generic_boiler_device/generic_boiler_entity.dart'; +import 'package:easy_localization/easy_localization.dart'; import 'package:flutter/material.dart'; import 'package:freezed_annotation/freezed_annotation.dart'; import 'package:injectable/injectable.dart'; @@ -40,7 +41,7 @@ class BoilersActorBloc extends Bloc { Emitter emit, ) async { FlushbarHelper.createLoading( - message: 'Turning On boiler', + message: 'Turning_On_boiler'.tr(), linearProgressIndicator: const LinearProgressIndicator(), ).show(event.context); @@ -52,7 +53,7 @@ class BoilersActorBloc extends Bloc { Emitter emit, ) async { FlushbarHelper.createLoading( - message: 'Turning Off boiler', + message: 'Turning_Off_boiler'.tr(), linearProgressIndicator: const LinearProgressIndicator(), ).show(event.context); diff --git a/lib/application/configure_new_cbj_comp/configure_new_cbj_comp_bloc.dart b/lib/application/configure_new_cbj_comp/configure_new_cbj_comp_bloc.dart index 3e46b1adf..49c7b1181 100644 --- a/lib/application/configure_new_cbj_comp/configure_new_cbj_comp_bloc.dart +++ b/lib/application/configure_new_cbj_comp/configure_new_cbj_comp_bloc.dart @@ -16,6 +16,7 @@ import 'package:cybear_jinni/domain/security_bear/security_bear_failures.dart'; import 'package:cybear_jinni/presentation/add_new_devices_process/configure_new_cbj_comp/widgets/configure_new_cbj_comp_widget.dart'; import 'package:cybear_jinni/utils.dart'; import 'package:dartz/dartz.dart'; +import 'package:easy_localization/easy_localization.dart'; import 'package:flutter/widgets.dart'; import 'package:freezed_annotation/freezed_annotation.dart'; import 'package:injectable/injectable.dart'; @@ -245,7 +246,7 @@ class ConfigureNewCbjCompBloc // await WiFiScan.instance bool isConnectedToWifi = false; - logger.i('Waiting for user to get connected to WiFi'); + logger.i('Waiting_for_user_to_get_connected_to_WiFi'.tr()); while (true) { isConnectedToWifi = await WiFiForIoTPlugin.isConnected(); @@ -294,7 +295,7 @@ class ConfigureNewCbjCompBloc final List deviceEntityList = []; final String roomUuid = const Uuid().v1(); - final String roomName = _textEditingController['allInSameRoom']!.text; + final String roomName = _textEditingController['allInSameRoom'.tr()]!.text; final ManageNetworkEntity manageWiFiEntity = IManageNetworkRepository.manageWiFiEntity!; @@ -309,7 +310,7 @@ class ConfigureNewCbjCompBloc deviceE..defaultName = DeviceDefaultName(deviceName), ); } catch (e) { - logger.w("Can't add unsupported device"); + logger.w("Can't_add_unsupported_device".tr()); } }); final CBJCompEntity compUpdatedData = cbjCompEntity.copyWith( diff --git a/lib/application/join_home_by_id/join_home_by_id_bloc.dart b/lib/application/join_home_by_id/join_home_by_id_bloc.dart index 22f163853..c53a10a8b 100644 --- a/lib/application/join_home_by_id/join_home_by_id_bloc.dart +++ b/lib/application/join_home_by_id/join_home_by_id_bloc.dart @@ -6,6 +6,7 @@ import 'package:cybear_jinni/domain/user/all_homes_of_user/all_homes_of_user_ent import 'package:cybear_jinni/domain/user/all_homes_of_user/all_homes_of_user_value_objects.dart'; import 'package:cybear_jinni/domain/user/i_user_repository.dart'; import 'package:dartz/dartz.dart'; +import 'package:easy_localization/easy_localization.dart'; import 'package:freezed_annotation/freezed_annotation.dart'; import 'package:injectable/injectable.dart'; @@ -46,7 +47,7 @@ class JoinHomeByIdBloc extends Bloc { } else { final AllHomesOfUserEntity allHomesOfUserEntity = AllHomesOfUserEntity( id: AllHomesOfUserUniqueId.fromUniqueString(event.id), - name: AllHomesOfUserName('home'), + name: AllHomesOfUserName('home'.tr()), ); final initialization = await _iUserRepository.addHome( getCurrentUser, From 29071cce92f12bd861db4a5375dfe885fd238e01 Mon Sep 17 00:00:00 2001 From: superiorsd10 Date: Sat, 1 Oct 2022 17:43:57 +0530 Subject: [PATCH 03/57] removing two changes --- .../configure_new_cbj_comp/configure_new_cbj_comp_bloc.dart | 2 +- lib/application/join_home_by_id/join_home_by_id_bloc.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/application/configure_new_cbj_comp/configure_new_cbj_comp_bloc.dart b/lib/application/configure_new_cbj_comp/configure_new_cbj_comp_bloc.dart index 49c7b1181..8f700e532 100644 --- a/lib/application/configure_new_cbj_comp/configure_new_cbj_comp_bloc.dart +++ b/lib/application/configure_new_cbj_comp/configure_new_cbj_comp_bloc.dart @@ -295,7 +295,7 @@ class ConfigureNewCbjCompBloc final List deviceEntityList = []; final String roomUuid = const Uuid().v1(); - final String roomName = _textEditingController['allInSameRoom'.tr()]!.text; + final String roomName = _textEditingController['allInSameRoom']!.text; final ManageNetworkEntity manageWiFiEntity = IManageNetworkRepository.manageWiFiEntity!; diff --git a/lib/application/join_home_by_id/join_home_by_id_bloc.dart b/lib/application/join_home_by_id/join_home_by_id_bloc.dart index c53a10a8b..0a7af2dff 100644 --- a/lib/application/join_home_by_id/join_home_by_id_bloc.dart +++ b/lib/application/join_home_by_id/join_home_by_id_bloc.dart @@ -47,7 +47,7 @@ class JoinHomeByIdBloc extends Bloc { } else { final AllHomesOfUserEntity allHomesOfUserEntity = AllHomesOfUserEntity( id: AllHomesOfUserUniqueId.fromUniqueString(event.id), - name: AllHomesOfUserName('home'.tr()), + name: AllHomesOfUserName('home'), ); final initialization = await _iUserRepository.addHome( getCurrentUser, From bf818652057e5040c77314a804823178af66861d Mon Sep 17 00:00:00 2001 From: superiorsd10 Date: Sat, 1 Oct 2022 18:34:06 +0530 Subject: [PATCH 04/57] doing some small changes --- assets/translations/en-US.json | 4 +--- lib/application/join_home_by_id/join_home_by_id_bloc.dart | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/assets/translations/en-US.json b/assets/translations/en-US.json index 3394ecbe1..a319c5e5f 100644 --- a/assets/translations/en-US.json +++ b/assets/translations/en-US.json @@ -108,7 +108,5 @@ "Turning_On_boiler": "Turning On boiler", "Turning_Off_boiler": "Turning Off boiler", "Waiting_for_user_to_get_connected_to_WiFi": "Waiting for user to get connected to WiFi", - "allInSameRoom": "allInSameRoom", - "Can't_add_unsupported_device": "Can't add unsupported device", - "home": "home", + "Can't_add_unsupported_device": "Can't add unsupported device" } diff --git a/lib/application/join_home_by_id/join_home_by_id_bloc.dart b/lib/application/join_home_by_id/join_home_by_id_bloc.dart index 0a7af2dff..22f163853 100644 --- a/lib/application/join_home_by_id/join_home_by_id_bloc.dart +++ b/lib/application/join_home_by_id/join_home_by_id_bloc.dart @@ -6,7 +6,6 @@ import 'package:cybear_jinni/domain/user/all_homes_of_user/all_homes_of_user_ent import 'package:cybear_jinni/domain/user/all_homes_of_user/all_homes_of_user_value_objects.dart'; import 'package:cybear_jinni/domain/user/i_user_repository.dart'; import 'package:dartz/dartz.dart'; -import 'package:easy_localization/easy_localization.dart'; import 'package:freezed_annotation/freezed_annotation.dart'; import 'package:injectable/injectable.dart'; From 2b231438f3ef0dda2c1a4c53d4569c9b19cecf95 Mon Sep 17 00:00:00 2001 From: guyluz11 Date: Sun, 2 Oct 2022 11:51:01 +0300 Subject: [PATCH 05/57] Fixed braking changes of some packages after last update --- lib/presentation/core/notifications.dart | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/lib/presentation/core/notifications.dart b/lib/presentation/core/notifications.dart index d1c65e7d7..a7c93365a 100644 --- a/lib/presentation/core/notifications.dart +++ b/lib/presentation/core/notifications.dart @@ -28,8 +28,8 @@ Future initialisationNotifications() async { // to the Android head project const AndroidInitializationSettings initializationSettingsAndroid = AndroidInitializationSettings('ic_launcher_foreground'); - const IOSInitializationSettings initializationSettingsIOS = - IOSInitializationSettings( + const DarwinInitializationSettings initializationSettingsIOS = + DarwinInitializationSettings( onDidReceiveLocalNotification: selectNotificationIos, ); @@ -39,8 +39,8 @@ Future initialisationNotifications() async { // defaultIcon: AssetsLinuxIcon('icons/app_icon.png'), ); - const MacOSInitializationSettings initializationSettingsMacOS = - MacOSInitializationSettings(); + const DarwinInitializationSettings initializationSettingsMacOS = + DarwinInitializationSettings(); const InitializationSettings initializationSettings = InitializationSettings( android: initializationSettingsAndroid, iOS: initializationSettingsIOS, @@ -49,7 +49,6 @@ Future initialisationNotifications() async { ); await flutterLocalNotificationsPlugin!.initialize( initializationSettings, - onSelectNotification: selectNotification, ); } @@ -112,10 +111,10 @@ Future showNotificationCustomSound() async { 'your other channel name', sound: RawResourceAndroidNotificationSound('alert_sfx_created_by_omer_luz'), ); - const IOSNotificationDetails iOSPlatformChannelSpecifics = - IOSNotificationDetails(sound: 'alert_sfx_created_by_omer_luz.wav'); - const MacOSNotificationDetails macOSPlatformChannelSpecifics = - MacOSNotificationDetails(sound: 'alert_sfx_created_by_omer_luz.wav'); + const DarwinNotificationDetails iOSPlatformChannelSpecifics = + DarwinNotificationDetails(sound: 'alert_sfx_created_by_omer_luz.wav'); + const DarwinNotificationDetails macOSPlatformChannelSpecifics = + DarwinNotificationDetails(sound: 'alert_sfx_created_by_omer_luz.wav'); const NotificationDetails platformChannelSpecifics = NotificationDetails( android: androidPlatformChannelSpecifics, iOS: iOSPlatformChannelSpecifics, From e685f0f0d7697d7890a13e06b145999a7746d386 Mon Sep 17 00:00:00 2001 From: Nishant Thottarath <113586849+Ordinary-droid@users.noreply.github.com> Date: Sun, 2 Oct 2022 14:55:57 +0530 Subject: [PATCH 06/57] Update hi-IN.json Added a few more hindi translations --- assets/translations/hi-IN.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/translations/hi-IN.json b/assets/translations/hi-IN.json index 4e024394e..c8fe5d944 100644 --- a/assets/translations/hi-IN.json +++ b/assets/translations/hi-IN.json @@ -15,15 +15,15 @@ "Stop": "रुकें", "Up": "ऊपर", "Smart_Devices_Settings_Page": "स्मार्ट डिवाइस सेटिंग्स पेज", - "Air_Conditioners": "एयर कंडिशनर", - "Blinds": "ब्लाइंड", + "Air_Conditioners": "वातानुकूलक", + "Blinds": "पर्देा", "Medical_Device": "चिकित्सीय उपकरण", "Smart_Phone": "स्मार्टफोन", "Smart_Speakers": "स्मार्ट स्पीकर", "Smart_Devices_page": "स्मार्ट डिवाइसेस पेज", "History": "इतिहास", "Scene": "स्थल", - "Lamps": "लैंप", + "Lamps": "चिराग", "Devices": "उपकरण", "Email_is_required": "ईमेल जरुरी है", "Email_cannot_contain_spaces": "ईमेल में रिक्त स्थान नहीं हो सकते", @@ -49,7 +49,7 @@ "Device_type:_": "उपकरण का प्रकार: {}", "Room_name_is_required": "कमरे का नाम आवश्यक है", "Room_name:": "कमरे का नाम:", - "Device_name_is_required": "डिवाइस का नाम आवश्यक है", + "Device_name_is_required": "यन्त्र का नाम आवश्यक है", "Device_name:": "यन्त्र का नाम:", "Update": "अपडेट करें", "IP": "आईपी", From 555a9fadb24b5ccf7fa54cfa4bb371a676b1cd30 Mon Sep 17 00:00:00 2001 From: Mihir Mittal <105881639+mihirm21@users.noreply.github.com> Date: Sun, 2 Oct 2022 15:06:27 +0530 Subject: [PATCH 07/57] Created And reviewed en-IN.JSON --- assets/translations/en-IN.json | 112 +++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 assets/translations/en-IN.json diff --git a/assets/translations/en-IN.json b/assets/translations/en-IN.json new file mode 100644 index 000000000..a319c5e5f --- /dev/null +++ b/assets/translations/en-IN.json @@ -0,0 +1,112 @@ +{ + "Create_new_account": "Create new account", + "Actions_History": "Actions History", + "Empty_history": "Empty history", + "History_Settings_Page": "History Settings Page", + "Lamps_Page": "Lamps Page", + "Name:_": "Name: {}", + "Room:_": "Room: {}", + "Lamps_Settings_Page": "Lamps Settings Page", + "Welcome_to_your_Smart_Home": "Welcome to your Smart Home", + "Scene_Settings_Page": "Scene Settings Page", + "Move_to_blinds_full_settings_page": "Move to blinds full settings page", + "Blinds_Page": "Blinds Page", + "Down": "Down", + "Stop": "Stop", + "Up": "Up", + "Smart_Devices_Settings_Page": "Smart Devices Settings Page", + "Air_Conditioners": "Air Conditioners", + "Blinds": "Blinds", + "Medical_Device": "Medical Device", + "Medical_Devices": "Medical Devices", + "Smart_Phone": "Smart Phone", + "Smart_Phones": "Smart Phones", + "Smart_Speakers": "Smart Speakers", + "Smart_Devices_page": "Smart Devices page", + "History": "History", + "Scene": "Scene", + "Scenes": "Scenes", + "Lamps": "Lamps", + "Devices": "Devices", + "Email_is_required": "Email is required", + "Email_cannot_contain_spaces": "Email cannot contain spaces", + "Email_is_invalid": "Email is invalid", + "Email": "Email", + "Password_is_required": "Password is required", + "Password_cannot_contain_spaces": "Password cannot contain spaces", + "Password_must_be_bigger_than__characters": "Password must be bigger than {} characters", + "Password": "Password", + "Log_In": "Log In", + "Forgot_password": "Forgot Password", + "Forgot_password?": "Forgot password?", + "title": "title", + "number": "number", + "IP_is_required": "IP is required", + "IP_syntax_is_incorrect": "IP syntax is incorrect", + "Add_Smart_Device": "Add Smart Device", + "Cancel": "Cancel", + "Add": "Add", + "Light": "Light", + "Device_ip:_": "Device ip: {}", + "New_devices": "New devices", + "Add_devices": "Add devices", + "Device_type:_": "Device type: {}", + "Room_name_is_required": "Room name is required", + "Room_name:": "Room name:", + "Device_name_is_required": "Device name is required", + "Device_name:": "Device name:", + "Update": "Update", + "IP": "IP", + "This_is_firebase": "This is firebase", + "Device_with_ip:_": "Device with ip: {}", + "Update_WiFi_configuration": "Update WiFi configuration", + "WiFi_name_is_required": "WiFi name is required", + "WiFi_Name": "WiFi Name", + "WiFi_password_is_required": "WiFi password is required", + "WiFi_Password": "WiFi Password", + "Insert_WiFi_Credentials": "Insert WiFi Credentials", + "Conditioners": "Conditioners", + "Medical": "Medical", + "Phones": "Phones", + "Speakers": "Speakers", + "Send": "Send", + "All_Devices": "All Devices", + "Summary": "Summary", + "Switches": "Switches", + "Boilers": "Boilers", + "Lights": "Lights", + "RGBw_Lights": "RGBw Lights", + "_Switches": "{} Switches", + "_SmartTvs": "{} SmartTvs", + "_RGBW_Lights": "{} RGBW Lights", + "_Lights": "{} Lights", + "_Boilers": "{} Boilers", + "_Blinds": "{} Blinds", + "Rooms": "Rooms", + "_device": "{} device", + "_devices": "{} devices", + "_SmartPlugs": "{} SmartPlugs", + "On": "On", + "Off": "Off", + "Color": "Color", + "White": "White", + "Area": "Area", + "Areas": "Areas", + "Automations": "Automations", + "Scenes_In_Folder": "Scenes In Folder", + "Select": "Select", + "Exist": "Exist", + "OK": "OK", + "Nothing": "Nothing", + "No_need_here": "No need here", + "Do_not_need": "Do not need", + "Finish": "Finish", + "Select_Purposes_Of_The_Area": "Select Purposes Of The Area", + "Pulling_Up_all_blinds": "Pulling Up all blinds", + "Stopping_all_blinds": "Stopping all blinds", + "Pulling_down_all_blinds": "Pulling down all blinds", + "Turning_On_boiler": "Turning On boiler", + "Turning_Off_boiler": "Turning Off boiler", + "Waiting_for_user_to_get_connected_to_WiFi": "Waiting for user to get connected to WiFi", + "Can't_add_unsupported_device": "Can't add unsupported device" +} From c94bbf3021e7c0318586d7ec7b1a8d12ee95890d Mon Sep 17 00:00:00 2001 From: Khuirul Huda <67778682+Khuirul-Huda@users.noreply.github.com> Date: Sun, 2 Oct 2022 17:29:26 +0700 Subject: [PATCH 08/57] correct some translation Corrected some translation words that are still in English to Indonesian and replace some words with more appropriate ones --- assets/translations/id-ID.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/assets/translations/id-ID.json b/assets/translations/id-ID.json index 144135b4b..809bca392 100644 --- a/assets/translations/id-ID.json +++ b/assets/translations/id-ID.json @@ -1,8 +1,8 @@ { "Create_new_account": "Buat akun baru", - "Actions_History": "History tindakan", - "Empty_history": "Kosongkan history", - "History_Settings_Page": "Halaman Pengaturan History", + "Actions_History": "Riwayat tindakan", + "Empty_history": "Kosongkan riwayat", + "History_Settings_Page": "Halaman Pengaturan Riwayat", "Lamps_Page": "Halaman lampu", "Name:_": "Nama: {}", "Room:_": "Kamar: {}", @@ -21,20 +21,20 @@ "Smart_Phone": "Smart Phone", "Smart_Speakers": "Smart Speakers", "Smart_Devices_page": "Halaman Smart Devices", - "History": "History", + "History": "Riwayat", "Scene": "Scene", "Lamps": "Lampu", "Devices": "Perangkat", "Email_is_required": "Email dibutuhkan", - "Email_cannot_contain_spaces": "Email tidak dapat mengandung spasi", + "Email_cannot_contain_spaces": "Email tidak boleh mengandung spasi", "Email_is_invalid": "Email tidak valid", "Email": "Email", - "Password_is_required": "Password dibutuhkan", - "Password_cannot_contain_spaces": "Password tidak dapat mengandung spasi", - "Password_must_be_bigger_than__characters": "Password harus lebih dari {} karakter", - "Password": "Password", + "Password_is_required": "Kata sandi diperlukan", + "Password_cannot_contain_spaces": "Kata sandi tidak dapat mengandung spasi", + "Password_must_be_bigger_than__characters": "Kata sandi harus lebih dari {} karakter", + "Password": "Kata sandi", "Log_In": "Masuk", - "Forgot_password?": "Lupa password?", + "Forgot_password?": "Lupa kata sandi?", "title": "judul", "number": "angka", "IP_is_required": "IP dibutuhkan", @@ -51,7 +51,7 @@ "Room_name:": "Nama Kamar:", "Device_name_is_required": "Nama perangkat dibutuhkan", "Device_name:": "Nama perangkat:", - "Update": "Update", + "Update": "Perbarui", "IP": "IP", "This_is_firebase": "Ini adalah firebase", "Device_with_ip:_": "Perangkat dengan ip: {}" From 22a4844b2c009272cbc152a6a7e66d61e8466d72 Mon Sep 17 00:00:00 2001 From: Nabeel Hussain M N <68153692+nabeel001@users.noreply.github.com> Date: Sun, 2 Oct 2022 16:55:59 +0530 Subject: [PATCH 09/57] Create en-SG.json --- assets/translations/en-SG.json | 112 +++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 assets/translations/en-SG.json diff --git a/assets/translations/en-SG.json b/assets/translations/en-SG.json new file mode 100644 index 000000000..a319c5e5f --- /dev/null +++ b/assets/translations/en-SG.json @@ -0,0 +1,112 @@ +{ + "Create_new_account": "Create new account", + "Actions_History": "Actions History", + "Empty_history": "Empty history", + "History_Settings_Page": "History Settings Page", + "Lamps_Page": "Lamps Page", + "Name:_": "Name: {}", + "Room:_": "Room: {}", + "Lamps_Settings_Page": "Lamps Settings Page", + "Welcome_to_your_Smart_Home": "Welcome to your Smart Home", + "Scene_Settings_Page": "Scene Settings Page", + "Move_to_blinds_full_settings_page": "Move to blinds full settings page", + "Blinds_Page": "Blinds Page", + "Down": "Down", + "Stop": "Stop", + "Up": "Up", + "Smart_Devices_Settings_Page": "Smart Devices Settings Page", + "Air_Conditioners": "Air Conditioners", + "Blinds": "Blinds", + "Medical_Device": "Medical Device", + "Medical_Devices": "Medical Devices", + "Smart_Phone": "Smart Phone", + "Smart_Phones": "Smart Phones", + "Smart_Speakers": "Smart Speakers", + "Smart_Devices_page": "Smart Devices page", + "History": "History", + "Scene": "Scene", + "Scenes": "Scenes", + "Lamps": "Lamps", + "Devices": "Devices", + "Email_is_required": "Email is required", + "Email_cannot_contain_spaces": "Email cannot contain spaces", + "Email_is_invalid": "Email is invalid", + "Email": "Email", + "Password_is_required": "Password is required", + "Password_cannot_contain_spaces": "Password cannot contain spaces", + "Password_must_be_bigger_than__characters": "Password must be bigger than {} characters", + "Password": "Password", + "Log_In": "Log In", + "Forgot_password": "Forgot Password", + "Forgot_password?": "Forgot password?", + "title": "title", + "number": "number", + "IP_is_required": "IP is required", + "IP_syntax_is_incorrect": "IP syntax is incorrect", + "Add_Smart_Device": "Add Smart Device", + "Cancel": "Cancel", + "Add": "Add", + "Light": "Light", + "Device_ip:_": "Device ip: {}", + "New_devices": "New devices", + "Add_devices": "Add devices", + "Device_type:_": "Device type: {}", + "Room_name_is_required": "Room name is required", + "Room_name:": "Room name:", + "Device_name_is_required": "Device name is required", + "Device_name:": "Device name:", + "Update": "Update", + "IP": "IP", + "This_is_firebase": "This is firebase", + "Device_with_ip:_": "Device with ip: {}", + "Update_WiFi_configuration": "Update WiFi configuration", + "WiFi_name_is_required": "WiFi name is required", + "WiFi_Name": "WiFi Name", + "WiFi_password_is_required": "WiFi password is required", + "WiFi_Password": "WiFi Password", + "Insert_WiFi_Credentials": "Insert WiFi Credentials", + "Conditioners": "Conditioners", + "Medical": "Medical", + "Phones": "Phones", + "Speakers": "Speakers", + "Send": "Send", + "All_Devices": "All Devices", + "Summary": "Summary", + "Switches": "Switches", + "Boilers": "Boilers", + "Lights": "Lights", + "RGBw_Lights": "RGBw Lights", + "_Switches": "{} Switches", + "_SmartTvs": "{} SmartTvs", + "_RGBW_Lights": "{} RGBW Lights", + "_Lights": "{} Lights", + "_Boilers": "{} Boilers", + "_Blinds": "{} Blinds", + "Rooms": "Rooms", + "_device": "{} device", + "_devices": "{} devices", + "_SmartPlugs": "{} SmartPlugs", + "On": "On", + "Off": "Off", + "Color": "Color", + "White": "White", + "Area": "Area", + "Areas": "Areas", + "Automations": "Automations", + "Scenes_In_Folder": "Scenes In Folder", + "Select": "Select", + "Exist": "Exist", + "OK": "OK", + "Nothing": "Nothing", + "No_need_here": "No need here", + "Do_not_need": "Do not need", + "Finish": "Finish", + "Select_Purposes_Of_The_Area": "Select Purposes Of The Area", + "Pulling_Up_all_blinds": "Pulling Up all blinds", + "Stopping_all_blinds": "Stopping all blinds", + "Pulling_down_all_blinds": "Pulling down all blinds", + "Turning_On_boiler": "Turning On boiler", + "Turning_Off_boiler": "Turning Off boiler", + "Waiting_for_user_to_get_connected_to_WiFi": "Waiting for user to get connected to WiFi", + "Can't_add_unsupported_device": "Can't add unsupported device" +} From 1b42378f30fe635334dee603d5c2f7359d3bc4c1 Mon Sep 17 00:00:00 2001 From: Nabeel Hussain M N <68153692+nabeel001@users.noreply.github.com> Date: Sun, 2 Oct 2022 17:16:53 +0530 Subject: [PATCH 10/57] Create en-PK.json --- assets/translations/en-PK.json | 112 +++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 assets/translations/en-PK.json diff --git a/assets/translations/en-PK.json b/assets/translations/en-PK.json new file mode 100644 index 000000000..a319c5e5f --- /dev/null +++ b/assets/translations/en-PK.json @@ -0,0 +1,112 @@ +{ + "Create_new_account": "Create new account", + "Actions_History": "Actions History", + "Empty_history": "Empty history", + "History_Settings_Page": "History Settings Page", + "Lamps_Page": "Lamps Page", + "Name:_": "Name: {}", + "Room:_": "Room: {}", + "Lamps_Settings_Page": "Lamps Settings Page", + "Welcome_to_your_Smart_Home": "Welcome to your Smart Home", + "Scene_Settings_Page": "Scene Settings Page", + "Move_to_blinds_full_settings_page": "Move to blinds full settings page", + "Blinds_Page": "Blinds Page", + "Down": "Down", + "Stop": "Stop", + "Up": "Up", + "Smart_Devices_Settings_Page": "Smart Devices Settings Page", + "Air_Conditioners": "Air Conditioners", + "Blinds": "Blinds", + "Medical_Device": "Medical Device", + "Medical_Devices": "Medical Devices", + "Smart_Phone": "Smart Phone", + "Smart_Phones": "Smart Phones", + "Smart_Speakers": "Smart Speakers", + "Smart_Devices_page": "Smart Devices page", + "History": "History", + "Scene": "Scene", + "Scenes": "Scenes", + "Lamps": "Lamps", + "Devices": "Devices", + "Email_is_required": "Email is required", + "Email_cannot_contain_spaces": "Email cannot contain spaces", + "Email_is_invalid": "Email is invalid", + "Email": "Email", + "Password_is_required": "Password is required", + "Password_cannot_contain_spaces": "Password cannot contain spaces", + "Password_must_be_bigger_than__characters": "Password must be bigger than {} characters", + "Password": "Password", + "Log_In": "Log In", + "Forgot_password": "Forgot Password", + "Forgot_password?": "Forgot password?", + "title": "title", + "number": "number", + "IP_is_required": "IP is required", + "IP_syntax_is_incorrect": "IP syntax is incorrect", + "Add_Smart_Device": "Add Smart Device", + "Cancel": "Cancel", + "Add": "Add", + "Light": "Light", + "Device_ip:_": "Device ip: {}", + "New_devices": "New devices", + "Add_devices": "Add devices", + "Device_type:_": "Device type: {}", + "Room_name_is_required": "Room name is required", + "Room_name:": "Room name:", + "Device_name_is_required": "Device name is required", + "Device_name:": "Device name:", + "Update": "Update", + "IP": "IP", + "This_is_firebase": "This is firebase", + "Device_with_ip:_": "Device with ip: {}", + "Update_WiFi_configuration": "Update WiFi configuration", + "WiFi_name_is_required": "WiFi name is required", + "WiFi_Name": "WiFi Name", + "WiFi_password_is_required": "WiFi password is required", + "WiFi_Password": "WiFi Password", + "Insert_WiFi_Credentials": "Insert WiFi Credentials", + "Conditioners": "Conditioners", + "Medical": "Medical", + "Phones": "Phones", + "Speakers": "Speakers", + "Send": "Send", + "All_Devices": "All Devices", + "Summary": "Summary", + "Switches": "Switches", + "Boilers": "Boilers", + "Lights": "Lights", + "RGBw_Lights": "RGBw Lights", + "_Switches": "{} Switches", + "_SmartTvs": "{} SmartTvs", + "_RGBW_Lights": "{} RGBW Lights", + "_Lights": "{} Lights", + "_Boilers": "{} Boilers", + "_Blinds": "{} Blinds", + "Rooms": "Rooms", + "_device": "{} device", + "_devices": "{} devices", + "_SmartPlugs": "{} SmartPlugs", + "On": "On", + "Off": "Off", + "Color": "Color", + "White": "White", + "Area": "Area", + "Areas": "Areas", + "Automations": "Automations", + "Scenes_In_Folder": "Scenes In Folder", + "Select": "Select", + "Exist": "Exist", + "OK": "OK", + "Nothing": "Nothing", + "No_need_here": "No need here", + "Do_not_need": "Do not need", + "Finish": "Finish", + "Select_Purposes_Of_The_Area": "Select Purposes Of The Area", + "Pulling_Up_all_blinds": "Pulling Up all blinds", + "Stopping_all_blinds": "Stopping all blinds", + "Pulling_down_all_blinds": "Pulling down all blinds", + "Turning_On_boiler": "Turning On boiler", + "Turning_Off_boiler": "Turning Off boiler", + "Waiting_for_user_to_get_connected_to_WiFi": "Waiting for user to get connected to WiFi", + "Can't_add_unsupported_device": "Can't add unsupported device" +} From e4900d54099cfaa3ec91334e6b81f863f599cef1 Mon Sep 17 00:00:00 2001 From: Moh Firdaus Date: Sun, 2 Oct 2022 21:04:54 +0700 Subject: [PATCH 11/57] Update indonesian translation --- assets/translations/id-ID.json | 47 +++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/assets/translations/id-ID.json b/assets/translations/id-ID.json index 144135b4b..08854db6e 100644 --- a/assets/translations/id-ID.json +++ b/assets/translations/id-ID.json @@ -54,5 +54,50 @@ "Update": "Update", "IP": "IP", "This_is_firebase": "Ini adalah firebase", - "Device_with_ip:_": "Perangkat dengan ip: {}" + "Device_with_ip:_": "Perangkat dengan ip: {}", + "Update_WiFi_configuration": "Update konfigurasi WiFi", + "WiFi_name_is_required": "Nama WiFi dibutuhkan", + "WiFi_Name": "Nama WiFi", + "WiFi_password_is_required": "Password WiFi dibutuhkan", + "WiFi_Password": "Password WiFi", + "Insert_WiFi_Credentials": "Masukkan Kredensial WiFi", + "Conditioners": "Kondisioner", + "Medical": "Medis", + "Phones": "Telepon", + "Speakers": "Speaker", + "Send": "Kirim", + "All_Devices": "Semua perangkat", + "Summary": "Ringkasan", + "Switches": "Sakelar", + "Boilers": "Boiler", + "Lights": "Lampu", + "RGBw_Lights": "Lampu RGBw", + "_Switches": "{} Sakelar", + "_SmartTvs": "{} Smart TV", + "_RGBW_Lights": "{} Lampu RGBW", + "_Lights": "{} Lampu", + "_Boilers": "{} Boiler", + "_Blinds": "{} Tirai", + "Rooms": "Kamar", + "_device": "{} perangkat", + "_devices": "{} perangkat", + "_SmartPlugs": "{} SmartPlug", + "On": "Hidup", + "Off": "Mati", + "Color": "Warna", + "White": "Putih", + "Area": "Area", + "Areas": "Area", + "Automations": "Otomatis", + "Scenes_In_Folder": "Scenes In Folder", + "Select": "Pilih", + "Exist": "Ada", + "OK": "OK", + "Nothing": "Tidak ada", + "No_need_here": "Tidak perlu di sini", + "Do_not_need": "Tidak butuh", + "Finish": "Selesai", + "Select_Purposes_Of_The_Area": "Pilih Tujuan Area", + "Waiting_for_user_to_get_connected_to_WiFi": "Menunggu pengguna terhubung ke WiFi", + "Can't_add_unsupported_device": "Tidak dapat menambahkan perangkat yang tidak didukung" } From 8c8761d995b30b5205b95ce53771ba0925daea32 Mon Sep 17 00:00:00 2001 From: Lisa Thamer <107346172+CandidDeer@users.noreply.github.com> Date: Sun, 2 Oct 2022 17:15:59 +0200 Subject: [PATCH 12/57] Created de-AT.json --- assets/translations/de-AT.json | 112 +++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 assets/translations/de-AT.json diff --git a/assets/translations/de-AT.json b/assets/translations/de-AT.json new file mode 100644 index 000000000..f538549c7 --- /dev/null +++ b/assets/translations/de-AT.json @@ -0,0 +1,112 @@ +{ + "Create_new_account": "Neues Konto erstellen", + "Actions_History": "Verlauf", + "Empty_history": "Verlauf löschen", + "History_Settings_Page": "Verlaufseinstellungen", + "Lamps_Page": "Lampen-Seite", + "Name:_": "Name: {}", + "Room:_": "Raum: {}", + "Lamps_Settings_Page": "Lampen-Einstellungsseite", + "Welcome_to_your_Smart_Home": "Willkommen in deinem Smart Home", + "Scene_Settings_Page": "Szenen-Einstellungsseite", + "Move_to_blinds_full_settings_page": "Gehe zur Rollo-Einstellungsseite", + "Blinds_Page": "Rollo-Seite", + "Down": "Nach unten", + "Stop": "Stopp", + "Up": "Nach oben", + "Smart_Devices_Settings_Page": "Einstellungsseite Smarte Geräte", + "Air_Conditioners": "Klimaanlagen", + "Blinds": "Rollos", + "Medical_Device": "Medizinisches Gerät", + "Medical_Devices": "Medizinische Geräte", + "Smart_Phone": "Smartphone", + "Smart_Phones": "Smartphones", + "Smart_Speakers": "Smarter Lautsprecher", + "Smart_Devices_page": "Smarte Geräte Seite", + "History": "Verlauf", + "Scene": "Szene", + "Scenes": "Szenen", + "Lamps": "Lampen", + "Devices": "Geräte", + "Email_is_required": "E-Mail benötigt", + "Email_cannot_contain_spaces": "E-Mail darf keine Leerzeichen enthalten", + "Email_is_invalid": "E-Mail ist ungültig", + "Email": "E-Mail", + "Password_is_required": "Passwort benötigt", + "Password_cannot_contain_spaces": "Passwort darf keine Leerzeichen enthalten", + "Password_must_be_bigger_than__characters": "Passwort muss länger als {} Zeichen sein", + "Password": "Passwort", + "Log_In": "Login", + "Forgot_password": "Passwort vergessen", + "Forgot_password?": "Passwort vergessen?", + "title": "Titel", + "number": "Nummer", + "IP_is_required": "IP benötigt", + "IP_syntax_is_incorrect": "IP Syntax ist falsch", + "Add_Smart_Device": "Smartes Gerät hinzufügen", + "Cancel": "Abbrechen", + "Add": "Hinzufügen", + "Light": "Licht", + "Device_ip:_": "Gerät IP: {}", + "New_devices": "Neue Geräte", + "Add_devices": "Geräte hinzufügen", + "Device_type:_": "Gerätetyp: {}", + "Room_name_is_required": "Raumname muss angegeben werden", + "Room_name:": "Raumname:", + "Device_name_is_required": "Gerätename muss angegeben werden", + "Device_name:": "Gerätename:", + "Update": "Aktualisierung", + "IP": "IP", + "This_is_firebase": "Das ist Firebase", + "Device_with_ip:_": "Gerät mit der IP: {}", + "Update_WiFi_configuration": "WiFi Einstellungen updaten", + "WiFi_name_is_required": "WIFI Name muss angegeben werden", + "WiFi_Name": "WIFI Name", + "WiFi_password_is_required": "WIFI Passwort muss angegeben werden", + "WiFi_Password": "WIFI Passwort", + "Insert_WiFi_Credentials": "WIFI Zugangsdaten eingeben", + "Conditioners": "Spülungen", + "Medical": "Medizinisch", + "Phones": "Telefone", + "Speakers": "Lautsprecher", + "Send": "Senden", + "All_Devices": "Alle Geräte", + "Summary": "Zusammenfassung", + "Switches": "Schalter", + "Boilers": "Boiler", + "Lights": "Lichter", + "RGBw_Lights": "RGB Lichter", + "_Switches": "{} Schalter", + "_SmartTvs": "{} Smarte Fernseher", + "_RGBW_Lights": "{} RGBW Lichter", + "_Lights": "{} Lichter", + "_Boilers": "{} Boiler", + "_Blinds": "{} Rollos", + "Rooms": "Räume", + "_device": "{} Gerät", + "_devices": "{} Geräte", + "_SmartPlugs": "{} Smarte Steckdosen", + "On": "Ein", + "Off": "Aus", + "Color": "Farbe", + "White": "Weiß", + "Area": "Bereich", + "Areas": "Bereiche", + "Automations": "Automatisierungen", + "Scenes_In_Folder": "Szenen im Ordner", + "Select": "Auswählen", + "Exist": "Existtieren", + "OK": "OK", + "Nothing": "Nichts", + "No_need_here": "Nicht benötigt", + "Do_not_need": "Benötige ich nicht", + "Finish": "Fertigstellen", + "Select_Purposes_Of_The_Area": "Zweck für das Areal festlegen", + "Pulling_Up_all_blinds": "Alle Rollos öffnen", + "Stopping_all_blinds": "Alle Rollos stoppen", + "Pulling_down_all_blinds": "Alle Rollos schließen", + "Turning_On_boiler": "Boiler einschalten", + "Turning_Off_boiler": "Boiler ausschalten", + "Waiting_for_user_to_get_connected_to_WiFi": "Warten auf Verbindung des Users mit WIFI", + "Can't_add_unsupported_device": "Nicht unterstütztes Gerät kann nicht hinzugefügt werden" +} From d8a20ffc678b54d2f374106a63a312807f2221cd Mon Sep 17 00:00:00 2001 From: Sandipan Chatterjee <79105018+sandy3002@users.noreply.github.com> Date: Sun, 2 Oct 2022 23:02:12 +0530 Subject: [PATCH 13/57] Added the bengali translation bn-IN.json. --- assets/translations/bn-IN.json | 112 +++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 assets/translations/bn-IN.json diff --git a/assets/translations/bn-IN.json b/assets/translations/bn-IN.json new file mode 100644 index 000000000..a09747510 --- /dev/null +++ b/assets/translations/bn-IN.json @@ -0,0 +1,112 @@ +{ + "Create_new_account": "নতুন একাউন্ট বানান", + "Actions_History": "কর্ম ইতিহাস", + "Empty_history": "শুন্য ইতিহাস", + "History_Settings_Page": "ইতিহাস সেটিং পেজ", + "Lamps_Page": "ল্যাম্প পেজ", + "Name:_": "নাম: {}", + "Room:_": "ঘর: {}", + "Lamps_Settings_Page": "ল্যাম্পস সেটিং পেজ", + "Welcome_to_your_Smart_Home": "আপনার স্মার্ট বাড়িতে স্বাগত", + "Scene_Settings_Page": "দৃশ্য সেটিং পেজ", + "Move_to_blinds_full_settings_page": "পূর্ণ সেটিং পেজ অন্ধ মোডে করুন", + "Blinds_Page": "অন্ধ পেজ", + "Down": "নিচ", + "Stop": "থামুন", + "Up": "উপর", + "Smart_Devices_Settings_Page": "স্মার্ট যন্ত্র সেটিং পেজ", + "Air_Conditioners": "বাতনুকূল যন্ত্র", + "Blinds": "অন্ধ", + "Medical_Device": "ঔষধি যন্ত্র", + "Medical_Devices": "ঔষধি যন্ত্রাবলী", + "Smart_Phone": "স্মার্টফোন", + "Smart_Phones": "স্মার্টফোনেগুলি", + "Smart_Speakers": "স্মার্ট স্পিকার", + "Smart_Devices_page": "স্মার্ট যন্ত্রবলির পেজ", + "History": "ইতিহাস", + "Scene": "দৃশ্য", + "Scenes": "দৃশ্যবলী", + "Lamps": "ল্যাম্পস", + "Devices": "যন্ত্রাবলী", + "Email_is_required": "ইমেইল প্রয়োজন", + "Email_cannot_contain_spaces": "ইমেইলে শূন্যস্থান থাকতে পারে না", + "Email_is_invalid": "ইমেইল অনুমোদিত নয়", + "Email": "ইমেইল", + "Password_is_required": "পাসওয়ার্ড প্রয়োজন", + "Password_cannot_contain_spaces": "পাসওয়ার্ডে শূন্যস্থান থাকতে পারে না", + "Password_must_be_bigger_than__characters": "পাসওয়ার্ডটা {}গুলি অক্ষর এর চেয়ে বড়ো হতে হবে", + "Password": "পাসওয়ার্ড", + "Log_In": "লগ ইন করুন", + "Forgot_password": "পাসওয়ার্ড ভুলে গেছি", + "Forgot_password?": "পাসওয়ার্ড ভুলে গেছেন?", + "title": "শীর্ষক", + "number": "সংখ্যা", + "IP_is_required": "আইপি প্রয়োজন", + "IP_syntax_is_incorrect": "আইপির বিন্যাস ভুল", + "Add_Smart_Device": "স্মার্ট যন্ত্র যোগ করুন", + "Cancel": "বাদ দিন", + "Add": "যোগ", + "Light": "লাইট", + "Device_ip:_": "যন্ত্রের আইপি: {}", + "New_devices": "নতুন যন্ত্রাবলী", + "Add_devices": "যন্ত্রাবলী যোগ করুন", + "Device_type:_": "যন্ত্রের প্রকৃতি: {}", + "Room_name_is_required": "ঘরোর নাম প্রয়োজন", + "Room_name:": "ঘরের নাম:", + "Device_name_is_required": "যন্ত্রের নাম প্রয়োজন", + "Device_name:": "যন্ত্রের নাম:", + "Update": "আপডেট", + "IP": "আইপি", + "This_is_firebase": "এটা ফায়ারবেস", + "Device_with_ip:_": "আইপি সহ যন্ত্র: {}", + "Update_WiFi_configuration": "ওয়াইফাই কনফিগারেশন আপডেট করুন", + "WiFi_name_is_required": "ওয়াইফাই এর নাম প্রয়োজন", + "WiFi_Name": "ওয়াইফাই এর নাম", + "WiFi_password_is_required": "ওয়াইফাই এর পাসওয়ার্ড প্রয়োজন", + "WiFi_Password": "ওয়াইফাই এর পাসওয়ার্ড", + "Insert_WiFi_Credentials": "ওয়াইফাই এর তথ্য দিন", + "Conditioners": "বাতনুকূলক", + "Medical": "ঔষধি", + "Phones": "ফোন", + "Speakers": "স্পিকার", + "Send": "সেন্ড করুন", + "All_Devices": "সকল যন্ত্রাবলী", + "Summary": "সংক্ষেপ", + "Switches": "সুইচ", + "Boilers": "বয়লার", + "Lights": "লাইটস", + "RGBw_Lights": "আরজিবিডাবলু লাইটস", + "_Switches": "{} গুলি সুইচ", + "_SmartTvs": "{} গুলি স্মার্ট টিভি", + "_RGBW_Lights": "{} গুলি আরজিবিডাবলু লাইটস", + "_Lights": "{} গুলি লাইটস", + "_Boilers": "{} গুলি বয়লার", + "_Blinds": "{} গুলি ব্লাইন্ডস", + "Rooms": "ঘরগুলি", + "_device": "{} গুলি যন্ত্র", + "_devices": "{} devices", + "_SmartPlugs": "{} গুলি স্মার্ট প্লাগ", + "On": "অন", + "Off": "অফ", + "Color": "রং", + "White": "সাদা", + "Area": "ক্ষেত্র", + "Areas": "ক্ষেত্রগুলি", + "Automations": "স্বয়ংক্রীয়তা", + "Scenes_In_Folder": "ফোল্ডারের দৃশ্য", + "Select": "সিলেক্ট করুন", + "Exist": "এক্সিস্ট", + "OK": "ওকে", + "Nothing": "কিছু না", + "No_need_here": "কোনো প্রয়োজন নেই", + "Do_not_need": "আমি চাই না ভাই", + "Finish": "খতম করুন", + "Select_Purposes_Of_The_Area": "এই ক্ষেত্রের কাজ বলুন", + "Pulling_Up_all_blinds": "সব ব্লাইন্ড তুলে ধরুন", + "Stopping_all_blinds": "সব ব্লাইন্ড থামিয়ে দিন", + "Pulling_down_all_blinds": "সব ব্লাইন্ড নামিয়ে দিন", + "Turning_On_boiler": "বয়লার অন করুন", + "Turning_Off_boiler": "বয়লার অফ করুন", + "Waiting_for_user_to_get_connected_to_WiFi": "ওয়াইফাই এর সাথে সংযোগের জন্য অপেক্ষা", + "Can't_add_unsupported_device": "আনসাপোর্টেড যন্ত্র যোগ করা যাবে না" +} \ No newline at end of file From 8fe5a5836b65517f79329a9310406e79a5dd22e5 Mon Sep 17 00:00:00 2001 From: harshit-maheshwari Date: Mon, 3 Oct 2022 00:21:42 +0530 Subject: [PATCH 14/57] Translation-correction --- assets/translations/hi-IN.json | 36 +++++++++++++++++----------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/assets/translations/hi-IN.json b/assets/translations/hi-IN.json index 4e024394e..9d1166124 100644 --- a/assets/translations/hi-IN.json +++ b/assets/translations/hi-IN.json @@ -3,24 +3,24 @@ "Actions_History": "क्रिया इतिहास", "Empty_history": "खाली इतिहास", "History_Settings_Page": "इतिहास सेटिंग पेज", - "Lamps_Page": "लैंप पेज", + "Lamps_Page": "लैंप पृष्ठ", "Name:_": "नाम: {}", - "Room:_": "कक्ष: {}", - "Lamps_Settings_Page": "लैंप सेटिंग पेज", + "Room:_": "कमरा: {}", + "Lamps_Settings_Page": "लैंप सेटिंग पृष्ठ", "Welcome_to_your_Smart_Home": "अपने स्मार्ट होम में आपका स्वागत है", - "Scene_Settings_Page": "दृश्य सेटिंग्स पेज", - "Move_to_blinds_full_settings_page": "पूर्ण सेटिंग्स पृष्ठ अंधा करने के लिए ले जाएँ", - "Blinds_Page": "अंधा पृष्ठ", + "Scene_Settings_Page": "दृश्य समायोजन पृष्ठ", + "Move_to_blinds_full_settings_page": "पूर्ण चिलमन समायोजन पृष्ठ पर जाएं", + "Blinds_Page": "चिलमन पृष्ठ", "Down": "नीचे", "Stop": "रुकें", "Up": "ऊपर", - "Smart_Devices_Settings_Page": "स्मार्ट डिवाइस सेटिंग्स पेज", + "Smart_Devices_Settings_Page": "स्मार्ट उपकरण समायोजन पृष्ठ", "Air_Conditioners": "एयर कंडिशनर", - "Blinds": "ब्लाइंड", + "Blinds": "चिलमन", "Medical_Device": "चिकित्सीय उपकरण", "Smart_Phone": "स्मार्टफोन", "Smart_Speakers": "स्मार्ट स्पीकर", - "Smart_Devices_page": "स्मार्ट डिवाइसेस पेज", + "Smart_Devices_page": "स्मार्ट उपकरण पृष्ठ", "History": "इतिहास", "Scene": "स्थल", "Lamps": "लैंप", @@ -30,7 +30,7 @@ "Email_is_invalid": "ईमेल अमान्य है", "Email": "ईमेल", "Password_is_required": "पासवर्ड की आवश्यकता है", - "Password_cannot_contain_spaces": "पासवर्ड में खाली स्थान नहीं हो सकता", + "Password_cannot_contain_spaces": "पासवर्ड में रिक्त स्थान नहीं हो सकता", "Password_must_be_bigger_than__characters": "पासवर्ड {} वर्णों से बड़ा होना चाहिए", "Password": "पासवर्ड", "Log_In": "लॉग इन करें", @@ -39,20 +39,20 @@ "number": "संख्या", "IP_is_required": "आईपी आवश्यक है", "IP_syntax_is_incorrect": "आईपी सिंटेक्स गलत है", - "Add_Smart_Device": "स्मार्ट डिवाइस जोड़ें", - "Cancel": "रद्द करना", - "Add": "जोड़ना", + "Add_Smart_Device": "स्मार्ट उपकरण जोड़ें", + "Cancel": "रद्द करें", + "Add": "जोड़ें", "Light": "रोशनी", - "Device_ip:_": "डिवाइस आई.पी.: {}", + "Device_ip:_": "उपकरण आई.पी.: {}", "New_devices": "नए उपकरण", "Add_devices": "उपकरण जोड़ें", "Device_type:_": "उपकरण का प्रकार: {}", "Room_name_is_required": "कमरे का नाम आवश्यक है", "Room_name:": "कमरे का नाम:", - "Device_name_is_required": "डिवाइस का नाम आवश्यक है", - "Device_name:": "यन्त्र का नाम:", + "Device_name_is_required": "उपकरण का नाम आवश्यक है", + "Device_name:": "उपकरण का नाम:", "Update": "अपडेट करें", "IP": "आईपी", "This_is_firebase": "यह फायरबेस है", - "Device_with_ip:_": "आईपी के साथ डिवाइस: {}" -} + "Device_with_ip:_": "आईपी के साथ उपकरण: {}" +} \ No newline at end of file From 8d73f5d93a8dff2d10d9b2f0b85a29fec0241eb1 Mon Sep 17 00:00:00 2001 From: Lisa <113266972+l1i1s7a@users.noreply.github.com> Date: Sun, 2 Oct 2022 19:11:41 -0700 Subject: [PATCH 15/57] updated italian translation --- assets/translations/it-IT.json | 68 ++++++++++++++++++++++++++++++---- 1 file changed, 61 insertions(+), 7 deletions(-) diff --git a/assets/translations/it-IT.json b/assets/translations/it-IT.json index c096f9d73..3dd7ff083 100644 --- a/assets/translations/it-IT.json +++ b/assets/translations/it-IT.json @@ -9,20 +9,23 @@ "Lamps_Settings_Page": "Pagina Impostazioni Lampade", "Welcome_to_your_Smart_Home": "Benvenuto nella tua Smart Home", "Scene_Settings_Page": "Pagina Impostazioni Scena", - "Move_to_blinds_full_settings_page": "Vai alla pagina impostazioni complete delle veneziane", - "Blinds_Page": "Pagina Veneziane", + "Move_to_blinds_full_settings_page": "Vai alla pagina impostazioni complete delle tapparelle", + "Blinds_Page": "Pagina Tapparelle", "Down": "Giù", "Stop": "Stop", "Up": "Su", "Smart_Devices_Settings_Page": "Pagina Impostazioni Dispositivi Smart", "Air_Conditioners": "Condizionatori", - "Blinds": "Veneziane", + "Blinds": "Tapparelle", "Medical_Device": "Dispositivo Medico", - "Smart_Phone": "Smart Phone", - "Smart_Speakers": "Speaker Smart", + "Medical_Devices": "Dispositivi Medici", + "Smart_Phone": "Smartphone", + "Smart Phones": "Smartphone", + "Smart_Speakers": "Smart Speaker", "Smart_Devices_page": "Pagina Dispositivi Smart", "History": "Cronologia", "Scene": "Scena", + "Scenes": "Scene", "Lamps": "Lampade", "Devices": "Dispositivi", "Email_is_required": "Email richiesta", @@ -33,7 +36,8 @@ "Password_cannot_contain_spaces": "La password non può contenere spazi", "Password_must_be_bigger_than__characters": "La password deve avere più di {} caratteri", "Password": "Password", - "Log_In": "Log In", + "Log_In": "Accedi", + "Forgot_password": "Password dimenticata", "Forgot_password?": "Password dimenticata?", "title": "titolo", "number": "numero", @@ -54,5 +58,55 @@ "Update": "Aggiorna", "IP": "IP", "This_is_firebase": "Questo è firebase", - "Device_with_ip:_": "Dispositivo con IP: {}" + "Device_with_ip:_": "Dispositivo con IP: {}", + "Update_WiFi_configuration": "Aggiorna le impostazioni WiFi", + "WiFi_name_is_required": "Nome WiFi richiesto", + "WiFi_Name": "Nome WiFi", + "WiFi_password_is_required": "Pasword WiFi richiesta", + "WiFi_Password": "Password WiFi", + "Insert_WiFi_Credentials": "Inserisci le credenziali della WiFi", + "Conditioners": "Condizionatori", + "Medical": "Medico", + "Phones": "Telefoni", + "Speakers": "Casse", + "Send": "Invia", + "All_Devices": "Tutti i dipositivi", + "Summary": "Riepilogo", + "Switches": "Interruttori", + "Boilers": "Caldaie", + "Lights": "Luci", + "RGBw_Lights": "Luci RGBw", + "_Switches": "{} Interruttori", + "_SmartTvs": "{} Smart TV", + "_RGBW_Lights": "{} Luci RGBWs", + "_Lights": "{} Luci", + "_Boilers": "{} Caldaie", + "_Blinds": "{} Tapparelle", + "Rooms": "Stanze", + "_device": "{} dispositivo", + "_devices": "{} dispositivi", + "_SmartPlugs": "{} Presa Smart", + "On": "On", + "Off": "Off", + "Color": "Colore", + "White": "Bianco", + "Area": "Area", + "Areas": "Aree", + "Automations": "Automazioni", + "Scenes_In_Folder": "Scene nella cartella", + "Select": "Seleziona", + "Exist": "Esistente", + "OK": "OK", + "Nothing": "Niente", + "No_need_here": "Non serve qui", + "Do_not_need": "Non serve", + "Finish": "Termina", + "Select_Purposes_Of_The_Area": "Seleziona lo scopo dell'area", + "Pulling_Up_all_blinds": "Apri tutte le tapparelle", + "Stopping_all_blinds": "Ferma tutte le tapparelle", + "Pulling_down_all_blinds": "Chiudi tutte le tapparelle", + "Turning_On_boiler": "Accendi la caldaia", + "Turning_Off_boiler": "Spegni la caldaia", + "Waiting_for_user_to_get_connected_to_WiFi": "In attesa che l'utente si connetta alla WiFi", + "Can't_add_unsupported_device": "Impossibile aggiungere dispositivo non supportato" } From 6556342cc8e3ddb2b08cdd2838ba6bfbe2d608f6 Mon Sep 17 00:00:00 2001 From: Nabeel Hussain M N <68153692+nabeel001@users.noreply.github.com> Date: Mon, 3 Oct 2022 10:32:43 +0530 Subject: [PATCH 16/57] Create en-CA.json created en-CA translation --- assets/translations/en-CA.json | 112 +++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 assets/translations/en-CA.json diff --git a/assets/translations/en-CA.json b/assets/translations/en-CA.json new file mode 100644 index 000000000..a319c5e5f --- /dev/null +++ b/assets/translations/en-CA.json @@ -0,0 +1,112 @@ +{ + "Create_new_account": "Create new account", + "Actions_History": "Actions History", + "Empty_history": "Empty history", + "History_Settings_Page": "History Settings Page", + "Lamps_Page": "Lamps Page", + "Name:_": "Name: {}", + "Room:_": "Room: {}", + "Lamps_Settings_Page": "Lamps Settings Page", + "Welcome_to_your_Smart_Home": "Welcome to your Smart Home", + "Scene_Settings_Page": "Scene Settings Page", + "Move_to_blinds_full_settings_page": "Move to blinds full settings page", + "Blinds_Page": "Blinds Page", + "Down": "Down", + "Stop": "Stop", + "Up": "Up", + "Smart_Devices_Settings_Page": "Smart Devices Settings Page", + "Air_Conditioners": "Air Conditioners", + "Blinds": "Blinds", + "Medical_Device": "Medical Device", + "Medical_Devices": "Medical Devices", + "Smart_Phone": "Smart Phone", + "Smart_Phones": "Smart Phones", + "Smart_Speakers": "Smart Speakers", + "Smart_Devices_page": "Smart Devices page", + "History": "History", + "Scene": "Scene", + "Scenes": "Scenes", + "Lamps": "Lamps", + "Devices": "Devices", + "Email_is_required": "Email is required", + "Email_cannot_contain_spaces": "Email cannot contain spaces", + "Email_is_invalid": "Email is invalid", + "Email": "Email", + "Password_is_required": "Password is required", + "Password_cannot_contain_spaces": "Password cannot contain spaces", + "Password_must_be_bigger_than__characters": "Password must be bigger than {} characters", + "Password": "Password", + "Log_In": "Log In", + "Forgot_password": "Forgot Password", + "Forgot_password?": "Forgot password?", + "title": "title", + "number": "number", + "IP_is_required": "IP is required", + "IP_syntax_is_incorrect": "IP syntax is incorrect", + "Add_Smart_Device": "Add Smart Device", + "Cancel": "Cancel", + "Add": "Add", + "Light": "Light", + "Device_ip:_": "Device ip: {}", + "New_devices": "New devices", + "Add_devices": "Add devices", + "Device_type:_": "Device type: {}", + "Room_name_is_required": "Room name is required", + "Room_name:": "Room name:", + "Device_name_is_required": "Device name is required", + "Device_name:": "Device name:", + "Update": "Update", + "IP": "IP", + "This_is_firebase": "This is firebase", + "Device_with_ip:_": "Device with ip: {}", + "Update_WiFi_configuration": "Update WiFi configuration", + "WiFi_name_is_required": "WiFi name is required", + "WiFi_Name": "WiFi Name", + "WiFi_password_is_required": "WiFi password is required", + "WiFi_Password": "WiFi Password", + "Insert_WiFi_Credentials": "Insert WiFi Credentials", + "Conditioners": "Conditioners", + "Medical": "Medical", + "Phones": "Phones", + "Speakers": "Speakers", + "Send": "Send", + "All_Devices": "All Devices", + "Summary": "Summary", + "Switches": "Switches", + "Boilers": "Boilers", + "Lights": "Lights", + "RGBw_Lights": "RGBw Lights", + "_Switches": "{} Switches", + "_SmartTvs": "{} SmartTvs", + "_RGBW_Lights": "{} RGBW Lights", + "_Lights": "{} Lights", + "_Boilers": "{} Boilers", + "_Blinds": "{} Blinds", + "Rooms": "Rooms", + "_device": "{} device", + "_devices": "{} devices", + "_SmartPlugs": "{} SmartPlugs", + "On": "On", + "Off": "Off", + "Color": "Color", + "White": "White", + "Area": "Area", + "Areas": "Areas", + "Automations": "Automations", + "Scenes_In_Folder": "Scenes In Folder", + "Select": "Select", + "Exist": "Exist", + "OK": "OK", + "Nothing": "Nothing", + "No_need_here": "No need here", + "Do_not_need": "Do not need", + "Finish": "Finish", + "Select_Purposes_Of_The_Area": "Select Purposes Of The Area", + "Pulling_Up_all_blinds": "Pulling Up all blinds", + "Stopping_all_blinds": "Stopping all blinds", + "Pulling_down_all_blinds": "Pulling down all blinds", + "Turning_On_boiler": "Turning On boiler", + "Turning_Off_boiler": "Turning Off boiler", + "Waiting_for_user_to_get_connected_to_WiFi": "Waiting for user to get connected to WiFi", + "Can't_add_unsupported_device": "Can't add unsupported device" +} From 3f2c9a2e59748c47ceef25fadd7e440422ce9213 Mon Sep 17 00:00:00 2001 From: Moh Firdaus Date: Mon, 3 Oct 2022 12:52:32 +0700 Subject: [PATCH 17/57] add new translation file Malay (Malaysia) --- assets/translations/ms-MY.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 assets/translations/ms-MY.json diff --git a/assets/translations/ms-MY.json b/assets/translations/ms-MY.json new file mode 100644 index 000000000..e69de29bb From f525751055783a24e3502cff54fd51c0d6280387 Mon Sep 17 00:00:00 2001 From: "Moh. Firdaus" Date: Mon, 3 Oct 2022 15:26:41 +0700 Subject: [PATCH 18/57] Update ms-MY.json Update file ms-MY.json --- assets/translations/ms-MY.json | 45 ++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/assets/translations/ms-MY.json b/assets/translations/ms-MY.json index e69de29bb..8a40be2d7 100644 --- a/assets/translations/ms-MY.json +++ b/assets/translations/ms-MY.json @@ -0,0 +1,45 @@ +{ + "Create_new_account": "Buat akaun baru", + "Actions_History": "Sejarah Tindakan", + "Empty_history": "Sejarah kosong", + "History_Settings_Page": "Halaman Tetapan Sejarah", + "Lamps_Page": "Halaman Lampu", + "Name:_": "Nama: {}", + "Room:_": "Bilik: {}", + "Lamps_Settings_Page": "Halaman Tetapan Lampu", + "Welcome_to_your_Smart_Home": "Selamat datang ke Rumah Pintar anda", + "Scene_Settings_Page": "Halaman Tetapan Pemandangan", + "Move_to_blinds_full_settings_page": "Beralih ke halaman tetapan penuh blinds", + "Blinds_Page": "Halaman Blinds", + "Down": "Bawah", + "Stop": "Berhenti", + "Up": "Naik", + "Smart_Devices_Settings_Page": "Halaman Tetapan Peranti Pintar", + "Air_Conditioners": "Penghawa dingin", + "Blinds": "Blind", + "Medical_Device": "Peranti Perubatan", + "Medical_Devices": "Peranti Perubatan", + "Smart_Phone": "Telefon Pintar", + "Smart_Phones": "Telefon Pintar", + "Smart_Speakers": "Pembesar Suara Pintar", + "Smart_Devices_page": "Halaman Pembesar Suara Pintar", + "History": "Sejarah", + "Scene": "Scene", + "Scenes": "Scene", + "Lamps": "Lampu", + "Devices": "Peranti", + "Email_is_required": "E-mel diperlukan", + "Email_cannot_contain_spaces": "E-mel tidak boleh mengandungi space", + "Email_is_invalid": "Email tidak sah", + "Email": "Email", + "Password_is_required": "kata laluan diperlukan", + "Password_cannot_contain_spaces": "Kata laluan tidak boleh mengandungi space", + "Password_must_be_bigger_than__characters": "Kata laluan mestilah lebih besar daripada {} aksara", + "Password": "Kata laluan", + "Log_In": "Log In", + "Forgot_password": "Lupa kata laluan", + "Forgot_password?": "Lupa kata laluan?", + "title": "tajuk", + "number": "nombor", + "IP_is_required": "IP diperlukan" +} From 5b9e1b25714b5fff5b819dd87a127b51f2846afb Mon Sep 17 00:00:00 2001 From: Nabeel Hussain M N <68153692+nabeel001@users.noreply.github.com> Date: Mon, 3 Oct 2022 13:58:26 +0530 Subject: [PATCH 19/57] Create en-AU.json Added en-AU translation --- assets/translations/en-AU.json | 112 +++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 assets/translations/en-AU.json diff --git a/assets/translations/en-AU.json b/assets/translations/en-AU.json new file mode 100644 index 000000000..a319c5e5f --- /dev/null +++ b/assets/translations/en-AU.json @@ -0,0 +1,112 @@ +{ + "Create_new_account": "Create new account", + "Actions_History": "Actions History", + "Empty_history": "Empty history", + "History_Settings_Page": "History Settings Page", + "Lamps_Page": "Lamps Page", + "Name:_": "Name: {}", + "Room:_": "Room: {}", + "Lamps_Settings_Page": "Lamps Settings Page", + "Welcome_to_your_Smart_Home": "Welcome to your Smart Home", + "Scene_Settings_Page": "Scene Settings Page", + "Move_to_blinds_full_settings_page": "Move to blinds full settings page", + "Blinds_Page": "Blinds Page", + "Down": "Down", + "Stop": "Stop", + "Up": "Up", + "Smart_Devices_Settings_Page": "Smart Devices Settings Page", + "Air_Conditioners": "Air Conditioners", + "Blinds": "Blinds", + "Medical_Device": "Medical Device", + "Medical_Devices": "Medical Devices", + "Smart_Phone": "Smart Phone", + "Smart_Phones": "Smart Phones", + "Smart_Speakers": "Smart Speakers", + "Smart_Devices_page": "Smart Devices page", + "History": "History", + "Scene": "Scene", + "Scenes": "Scenes", + "Lamps": "Lamps", + "Devices": "Devices", + "Email_is_required": "Email is required", + "Email_cannot_contain_spaces": "Email cannot contain spaces", + "Email_is_invalid": "Email is invalid", + "Email": "Email", + "Password_is_required": "Password is required", + "Password_cannot_contain_spaces": "Password cannot contain spaces", + "Password_must_be_bigger_than__characters": "Password must be bigger than {} characters", + "Password": "Password", + "Log_In": "Log In", + "Forgot_password": "Forgot Password", + "Forgot_password?": "Forgot password?", + "title": "title", + "number": "number", + "IP_is_required": "IP is required", + "IP_syntax_is_incorrect": "IP syntax is incorrect", + "Add_Smart_Device": "Add Smart Device", + "Cancel": "Cancel", + "Add": "Add", + "Light": "Light", + "Device_ip:_": "Device ip: {}", + "New_devices": "New devices", + "Add_devices": "Add devices", + "Device_type:_": "Device type: {}", + "Room_name_is_required": "Room name is required", + "Room_name:": "Room name:", + "Device_name_is_required": "Device name is required", + "Device_name:": "Device name:", + "Update": "Update", + "IP": "IP", + "This_is_firebase": "This is firebase", + "Device_with_ip:_": "Device with ip: {}", + "Update_WiFi_configuration": "Update WiFi configuration", + "WiFi_name_is_required": "WiFi name is required", + "WiFi_Name": "WiFi Name", + "WiFi_password_is_required": "WiFi password is required", + "WiFi_Password": "WiFi Password", + "Insert_WiFi_Credentials": "Insert WiFi Credentials", + "Conditioners": "Conditioners", + "Medical": "Medical", + "Phones": "Phones", + "Speakers": "Speakers", + "Send": "Send", + "All_Devices": "All Devices", + "Summary": "Summary", + "Switches": "Switches", + "Boilers": "Boilers", + "Lights": "Lights", + "RGBw_Lights": "RGBw Lights", + "_Switches": "{} Switches", + "_SmartTvs": "{} SmartTvs", + "_RGBW_Lights": "{} RGBW Lights", + "_Lights": "{} Lights", + "_Boilers": "{} Boilers", + "_Blinds": "{} Blinds", + "Rooms": "Rooms", + "_device": "{} device", + "_devices": "{} devices", + "_SmartPlugs": "{} SmartPlugs", + "On": "On", + "Off": "Off", + "Color": "Color", + "White": "White", + "Area": "Area", + "Areas": "Areas", + "Automations": "Automations", + "Scenes_In_Folder": "Scenes In Folder", + "Select": "Select", + "Exist": "Exist", + "OK": "OK", + "Nothing": "Nothing", + "No_need_here": "No need here", + "Do_not_need": "Do not need", + "Finish": "Finish", + "Select_Purposes_Of_The_Area": "Select Purposes Of The Area", + "Pulling_Up_all_blinds": "Pulling Up all blinds", + "Stopping_all_blinds": "Stopping all blinds", + "Pulling_down_all_blinds": "Pulling down all blinds", + "Turning_On_boiler": "Turning On boiler", + "Turning_Off_boiler": "Turning Off boiler", + "Waiting_for_user_to_get_connected_to_WiFi": "Waiting for user to get connected to WiFi", + "Can't_add_unsupported_device": "Can't add unsupported device" +} From 98a447eb901a44c465f51d8b5183c8957d4ff816 Mon Sep 17 00:00:00 2001 From: Nabeel Hussain M N <68153692+nabeel001@users.noreply.github.com> Date: Mon, 3 Oct 2022 14:16:21 +0530 Subject: [PATCH 20/57] Create en-BD.json Created en-BD Translation --- assets/translations/en-BD.json | 112 +++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 assets/translations/en-BD.json diff --git a/assets/translations/en-BD.json b/assets/translations/en-BD.json new file mode 100644 index 000000000..a319c5e5f --- /dev/null +++ b/assets/translations/en-BD.json @@ -0,0 +1,112 @@ +{ + "Create_new_account": "Create new account", + "Actions_History": "Actions History", + "Empty_history": "Empty history", + "History_Settings_Page": "History Settings Page", + "Lamps_Page": "Lamps Page", + "Name:_": "Name: {}", + "Room:_": "Room: {}", + "Lamps_Settings_Page": "Lamps Settings Page", + "Welcome_to_your_Smart_Home": "Welcome to your Smart Home", + "Scene_Settings_Page": "Scene Settings Page", + "Move_to_blinds_full_settings_page": "Move to blinds full settings page", + "Blinds_Page": "Blinds Page", + "Down": "Down", + "Stop": "Stop", + "Up": "Up", + "Smart_Devices_Settings_Page": "Smart Devices Settings Page", + "Air_Conditioners": "Air Conditioners", + "Blinds": "Blinds", + "Medical_Device": "Medical Device", + "Medical_Devices": "Medical Devices", + "Smart_Phone": "Smart Phone", + "Smart_Phones": "Smart Phones", + "Smart_Speakers": "Smart Speakers", + "Smart_Devices_page": "Smart Devices page", + "History": "History", + "Scene": "Scene", + "Scenes": "Scenes", + "Lamps": "Lamps", + "Devices": "Devices", + "Email_is_required": "Email is required", + "Email_cannot_contain_spaces": "Email cannot contain spaces", + "Email_is_invalid": "Email is invalid", + "Email": "Email", + "Password_is_required": "Password is required", + "Password_cannot_contain_spaces": "Password cannot contain spaces", + "Password_must_be_bigger_than__characters": "Password must be bigger than {} characters", + "Password": "Password", + "Log_In": "Log In", + "Forgot_password": "Forgot Password", + "Forgot_password?": "Forgot password?", + "title": "title", + "number": "number", + "IP_is_required": "IP is required", + "IP_syntax_is_incorrect": "IP syntax is incorrect", + "Add_Smart_Device": "Add Smart Device", + "Cancel": "Cancel", + "Add": "Add", + "Light": "Light", + "Device_ip:_": "Device ip: {}", + "New_devices": "New devices", + "Add_devices": "Add devices", + "Device_type:_": "Device type: {}", + "Room_name_is_required": "Room name is required", + "Room_name:": "Room name:", + "Device_name_is_required": "Device name is required", + "Device_name:": "Device name:", + "Update": "Update", + "IP": "IP", + "This_is_firebase": "This is firebase", + "Device_with_ip:_": "Device with ip: {}", + "Update_WiFi_configuration": "Update WiFi configuration", + "WiFi_name_is_required": "WiFi name is required", + "WiFi_Name": "WiFi Name", + "WiFi_password_is_required": "WiFi password is required", + "WiFi_Password": "WiFi Password", + "Insert_WiFi_Credentials": "Insert WiFi Credentials", + "Conditioners": "Conditioners", + "Medical": "Medical", + "Phones": "Phones", + "Speakers": "Speakers", + "Send": "Send", + "All_Devices": "All Devices", + "Summary": "Summary", + "Switches": "Switches", + "Boilers": "Boilers", + "Lights": "Lights", + "RGBw_Lights": "RGBw Lights", + "_Switches": "{} Switches", + "_SmartTvs": "{} SmartTvs", + "_RGBW_Lights": "{} RGBW Lights", + "_Lights": "{} Lights", + "_Boilers": "{} Boilers", + "_Blinds": "{} Blinds", + "Rooms": "Rooms", + "_device": "{} device", + "_devices": "{} devices", + "_SmartPlugs": "{} SmartPlugs", + "On": "On", + "Off": "Off", + "Color": "Color", + "White": "White", + "Area": "Area", + "Areas": "Areas", + "Automations": "Automations", + "Scenes_In_Folder": "Scenes In Folder", + "Select": "Select", + "Exist": "Exist", + "OK": "OK", + "Nothing": "Nothing", + "No_need_here": "No need here", + "Do_not_need": "Do not need", + "Finish": "Finish", + "Select_Purposes_Of_The_Area": "Select Purposes Of The Area", + "Pulling_Up_all_blinds": "Pulling Up all blinds", + "Stopping_all_blinds": "Stopping all blinds", + "Pulling_down_all_blinds": "Pulling down all blinds", + "Turning_On_boiler": "Turning On boiler", + "Turning_Off_boiler": "Turning Off boiler", + "Waiting_for_user_to_get_connected_to_WiFi": "Waiting for user to get connected to WiFi", + "Can't_add_unsupported_device": "Can't add unsupported device" +} From bba0eb6bb4053898d1f667c0693ae90b6d3600ea Mon Sep 17 00:00:00 2001 From: Igor Tankov <67426242+tnkv@users.noreply.github.com> Date: Mon, 3 Oct 2022 12:19:45 +0300 Subject: [PATCH 21/57] Replaced the phrases with more correct ones --- assets/translations/ru-RU.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/translations/ru-RU.json b/assets/translations/ru-RU.json index 1ef0279e3..1412b88f4 100644 --- a/assets/translations/ru-RU.json +++ b/assets/translations/ru-RU.json @@ -28,9 +28,9 @@ "Scene": "Сцены", "Lamps": "Лампы", "Devices": "Устройства", - "Email_is_required": "Требуется email-адрес", + "Email_is_required": "Требуется Email-адрес", "Email_cannot_contain_spaces": "Email-адрес не может содержать пробелы", - "Email_is_invalid": "Неверный email-адрес", + "Email_is_invalid": "Неверный Email-адрес", "Email": "Email", "Password_is_required": "Требуется пароль", "Password_cannot_contain_spaces": "Пароль не может содержать пробелы", @@ -64,7 +64,7 @@ "WiFi_Name": "Имя WiFi-сети", "WiFi_password_is_required": "Требуется пароль от WiFi-сети", "WiFi_Password": "Пароль от WiFi-сети", - "Insert_WiFi_Credentials": "Введите данные для присоеднинения к WiFi", + "Insert_WiFi_Credentials": "Введите данные для подключения к WiFi-сети", "Conditioners": "Кондиционеры", "Medical": "Медицинские", "Phones": "Телефоны", From 446ee38a80a2bba728d288dda9b8e8aece1bf3dd Mon Sep 17 00:00:00 2001 From: Antibody <94369215+Antibodyy@users.noreply.github.com> Date: Mon, 3 Oct 2022 15:15:26 +0530 Subject: [PATCH 22/57] Created en-IM (Isle of Man) translations. --- assets/translations/en-IM.json | 112 +++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 assets/translations/en-IM.json diff --git a/assets/translations/en-IM.json b/assets/translations/en-IM.json new file mode 100644 index 000000000..a319c5e5f --- /dev/null +++ b/assets/translations/en-IM.json @@ -0,0 +1,112 @@ +{ + "Create_new_account": "Create new account", + "Actions_History": "Actions History", + "Empty_history": "Empty history", + "History_Settings_Page": "History Settings Page", + "Lamps_Page": "Lamps Page", + "Name:_": "Name: {}", + "Room:_": "Room: {}", + "Lamps_Settings_Page": "Lamps Settings Page", + "Welcome_to_your_Smart_Home": "Welcome to your Smart Home", + "Scene_Settings_Page": "Scene Settings Page", + "Move_to_blinds_full_settings_page": "Move to blinds full settings page", + "Blinds_Page": "Blinds Page", + "Down": "Down", + "Stop": "Stop", + "Up": "Up", + "Smart_Devices_Settings_Page": "Smart Devices Settings Page", + "Air_Conditioners": "Air Conditioners", + "Blinds": "Blinds", + "Medical_Device": "Medical Device", + "Medical_Devices": "Medical Devices", + "Smart_Phone": "Smart Phone", + "Smart_Phones": "Smart Phones", + "Smart_Speakers": "Smart Speakers", + "Smart_Devices_page": "Smart Devices page", + "History": "History", + "Scene": "Scene", + "Scenes": "Scenes", + "Lamps": "Lamps", + "Devices": "Devices", + "Email_is_required": "Email is required", + "Email_cannot_contain_spaces": "Email cannot contain spaces", + "Email_is_invalid": "Email is invalid", + "Email": "Email", + "Password_is_required": "Password is required", + "Password_cannot_contain_spaces": "Password cannot contain spaces", + "Password_must_be_bigger_than__characters": "Password must be bigger than {} characters", + "Password": "Password", + "Log_In": "Log In", + "Forgot_password": "Forgot Password", + "Forgot_password?": "Forgot password?", + "title": "title", + "number": "number", + "IP_is_required": "IP is required", + "IP_syntax_is_incorrect": "IP syntax is incorrect", + "Add_Smart_Device": "Add Smart Device", + "Cancel": "Cancel", + "Add": "Add", + "Light": "Light", + "Device_ip:_": "Device ip: {}", + "New_devices": "New devices", + "Add_devices": "Add devices", + "Device_type:_": "Device type: {}", + "Room_name_is_required": "Room name is required", + "Room_name:": "Room name:", + "Device_name_is_required": "Device name is required", + "Device_name:": "Device name:", + "Update": "Update", + "IP": "IP", + "This_is_firebase": "This is firebase", + "Device_with_ip:_": "Device with ip: {}", + "Update_WiFi_configuration": "Update WiFi configuration", + "WiFi_name_is_required": "WiFi name is required", + "WiFi_Name": "WiFi Name", + "WiFi_password_is_required": "WiFi password is required", + "WiFi_Password": "WiFi Password", + "Insert_WiFi_Credentials": "Insert WiFi Credentials", + "Conditioners": "Conditioners", + "Medical": "Medical", + "Phones": "Phones", + "Speakers": "Speakers", + "Send": "Send", + "All_Devices": "All Devices", + "Summary": "Summary", + "Switches": "Switches", + "Boilers": "Boilers", + "Lights": "Lights", + "RGBw_Lights": "RGBw Lights", + "_Switches": "{} Switches", + "_SmartTvs": "{} SmartTvs", + "_RGBW_Lights": "{} RGBW Lights", + "_Lights": "{} Lights", + "_Boilers": "{} Boilers", + "_Blinds": "{} Blinds", + "Rooms": "Rooms", + "_device": "{} device", + "_devices": "{} devices", + "_SmartPlugs": "{} SmartPlugs", + "On": "On", + "Off": "Off", + "Color": "Color", + "White": "White", + "Area": "Area", + "Areas": "Areas", + "Automations": "Automations", + "Scenes_In_Folder": "Scenes In Folder", + "Select": "Select", + "Exist": "Exist", + "OK": "OK", + "Nothing": "Nothing", + "No_need_here": "No need here", + "Do_not_need": "Do not need", + "Finish": "Finish", + "Select_Purposes_Of_The_Area": "Select Purposes Of The Area", + "Pulling_Up_all_blinds": "Pulling Up all blinds", + "Stopping_all_blinds": "Stopping all blinds", + "Pulling_down_all_blinds": "Pulling down all blinds", + "Turning_On_boiler": "Turning On boiler", + "Turning_Off_boiler": "Turning Off boiler", + "Waiting_for_user_to_get_connected_to_WiFi": "Waiting for user to get connected to WiFi", + "Can't_add_unsupported_device": "Can't add unsupported device" +} From b5a7afd2f665160def66cbd8d97a9f8fb4f7c0a7 Mon Sep 17 00:00:00 2001 From: Aditya <62930521+adityar224@users.noreply.github.com> Date: Mon, 3 Oct 2022 15:16:55 +0530 Subject: [PATCH 23/57] Added Social Media Links. Fixes #429 --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 5601e1283..5ae96c312 100644 --- a/README.md +++ b/README.md @@ -48,3 +48,9 @@ To learn the coding guidelines check [this Wiki](https://github.com/CyBear-Jinni If you have any questions feel free to ask in our Discord server [](https://discord.gg/mUXfwUY) + +[](https://www.instagram.com/cybearjinni/?igshid=rfllj6qbv6l8) + +[](https://github.com/CyBear-Jinni) + +[](https://twitter.com/CyBearJinni) From 2ef4d941071b971143bbe6264bb9a2b5983759b2 Mon Sep 17 00:00:00 2001 From: AnshikaAnand222 <73892943+AnshikaAnand222@users.noreply.github.com> Date: Mon, 3 Oct 2022 16:53:57 +0530 Subject: [PATCH 24/57] Update hi-IN.json --- assets/translations/hi-IN.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/translations/hi-IN.json b/assets/translations/hi-IN.json index 0b2286cd3..fae772b8e 100644 --- a/assets/translations/hi-IN.json +++ b/assets/translations/hi-IN.json @@ -25,10 +25,10 @@ "Smart_Speakers": "स्मार्ट स्पीकर", "Smart_Devices_page": "स्मार्ट उपकरण पृष्ठ", "History": "इतिहास", - "Scene": "स्थल", + "Scene": "दृश्य", "Lamps": "चिराग", "Devices": "उपकरण", - "Email_is_required": "ईमेल जरुरी है", + "Email_is_required": "ईमेल की आवश्यकता है", "Email_cannot_contain_spaces": "ईमेल में रिक्त स्थान नहीं हो सकते", "Email_is_invalid": "ईमेल अमान्य है", "Email": "ईमेल", @@ -43,7 +43,7 @@ "IP_is_required": "आईपी आवश्यक है", "IP_syntax_is_incorrect": "आईपी सिंटेक्स गलत है", "Add_Smart_Device": "स्मार्ट उपकरण जोड़ें", - "Cancel": "रद्द करें", + "Cancel": "रद्द", "Add": "जोड़ें", "Light": "रोशनी", "Device_ip:_": "उपकरण आई.पी.: {}", @@ -60,4 +60,4 @@ "IP": "आईपी", "This_is_firebase": "यह फायरबेस है", "Device_with_ip:_": "आईपी के साथ उपकरण: {}" -} \ No newline at end of file +} From fb359bb05f4ba18494b1212f74c7b48bde749b38 Mon Sep 17 00:00:00 2001 From: Arefat Hyeredin Date: Mon, 3 Oct 2022 14:26:55 +0300 Subject: [PATCH 25/57] Create am-ET.json Added a translation file for Amharic under `am-ET` for the Amharic-Ethiopia language. --- assets/translations/am-ET.json | 112 +++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 assets/translations/am-ET.json diff --git a/assets/translations/am-ET.json b/assets/translations/am-ET.json new file mode 100644 index 000000000..a21d42ee4 --- /dev/null +++ b/assets/translations/am-ET.json @@ -0,0 +1,112 @@ +{ + "Create_new_account": "አዲስ መለያ ፍጠር", + "Actions_History": "የተግባር ታሪክ", + "Empty_history": "ባዶ ታሪክ", + "History_Settings_Page": "የታሪክ ቅንብሮች ገጽ", + "Lamps_Page": "የአምፖሎች ገጽ", + "Name:_": "ስም: {}", + "Room:_": "ክፍል: {}", + "Lamps_Settings_Page": "የአምፖሎች ቅንብሮች ገጽ", + "Welcome_to_your_Smart_Home": "እንኳን ወደ ስማርት ቤትዎ በደህና መጡ", + "Scene_Settings_Page": "የትዕይንት ቅንብሮች ገጽ", + "Move_to_blinds_full_settings_page": "ወደ መጋረጃ ሙሉ የቅንብሮች ገጽ ይሂዱ", + "Blinds_Page": "የመጋረጃ ገጽ", + "Down": "ወደ ታች", + "Stop": "አቁም", + "Up": "ወደ ላይ", + "Smart_Devices_Settings_Page": "የስማርት መገልገያዎች ቅንብሮች ገጽ", + "Air_Conditioners": "የአየር ማቀዝቀዣዎች", + "Blinds": "መጋረጃዎች", + "Medical_Device": "የህክምና መገልገያ", + "Medical_Devices": "የህክምና መገልገያዎች", + "Smart_Phone": "ስማርት ስልክ", + "Smart_Phones": "ስማርት ስልኮች", + "Smart_Speakers": "ስማርት ስፒከሮች", + "Smart_Devices_page": "የስማርት መገልገያዎች ገጽ", + "History": "ታሪክ", + "Scene": "ትዕይንት", + "Scenes": "ትዕይንቶች", + "Lamps": "መብራቶች", + "Devices": "መገልገያዎች", + "Email_is_required": "ኢሜል ያስፈልጋል", + "Email_cannot_contain_spaces": "ኢሜል ክፍተቶችን ሊይዝ አይችልም።", + "Email_is_invalid": "ኢሜል ልክ ያልሆነ ነው", + "Email": "ኢሜል", + "Password_is_required": "የይለፍ ቃል ያስፈልጋል", + "Password_cannot_contain_spaces": "የይለፍ ቃል ክፍተቶችን ሊይዝ አይችልም።", + "Password_must_be_bigger_than__characters": "የይለፍ ቃል ከ {} ፊደላት የበለጠ መሆን አለበት", + "Password": "የይለፍ ቃል", + "Log_In": "ግባ", + "Forgot_password": "የይለፍ ቃሉን ረሱ", + "Forgot_password?": "የይለፍ ቃል ረስተዋል?", + "title": "ርዕስ", + "number": "ቁጥር", + "IP_is_required": "አይፒ ያስፈልጋል", + "IP_syntax_is_incorrect": "የአይፒ አገባብ የተሳሳተ ነው", + "Add_Smart_Device": "ስማርት መገልገያን ጨምር", + "Cancel": "ሰርዝ", + "Add": "ጨምር", + "Light": "ብርሃን", + "Device_ip:_": "የመገልገያ አይፒ: {}", + "New_devices": "አዳዲስ መገልገያዎች", + "Add_devices": "መገልገያዎችን አክል", + "Device_type:_": "የመገልገያ ዓይነት: {}", + "Room_name_is_required": "የክፍሉ ስም ያስፈልጋል", + "Room_name:": "የክፍሉ ስም:", + "Device_name_is_required": "የመገልገያ ስም ያስፈልጋል", + "Device_name:": "የመገልገያ ስም:", + "Update": "አዘምን", + "IP": "አይፒ", + "This_is_firebase": "ይህ ፋየርቤዝ ነው", + "Device_with_ip:_": "መገልገያ ከአይ.ፒ: {}", + "Update_WiFi_configuration": "የዋይፋይ ውቅር ያዘምኑ", + "WiFi_name_is_required": "የዋይፋይ ስም ያስፈልጋል", + "WiFi_Name": "የዋይፋይ ስም", + "WiFi_password_is_required": "የዋይፋይ ይለፍ ቃል ያስፈልጋል", + "WiFi_Password": "የዋይፋይ ይለፍ ቃል", + "Insert_WiFi_Credentials": "የዋይፋይ መለያዎትን አስገባ", + "Conditioners": "የአየር ማቀዝቀዣዎች", + "Medical": "ሕክምና", + "Phones": "ስልኮች", + "Speakers": "ስፒከሮች", + "Send": "ላክ", + "All_Devices": "ሁሉም መገልገያዎች", + "Summary": "ማጠቃለያ", + "Switches": "መቀያየሪያዎች", + "Boilers": "ማሞቂያዎች", + "Lights": "መብራቶች", + "RGBw_Lights": "የተለያዩ መብራቶች", + "_Switches": "{} መቀያየሪያዎች", + "_SmartTvs": "{} ስማርት ቲቪዎች", + "_RGBW_Lights": "{} የተለያዩ መብራቶች", + "_Lights": "{} መብራቶች", + "_Boilers": "{} ማሞቂያዎች", + "_Blinds": "{} መጋረጃዎች", + "Rooms": "ክፍሎች", + "_device": "{} መገልገያ", + "_devices": "{} መገልገያዎች", + "_SmartPlugs": "{} ስማርት መሰኪያዎች", + "On": "አብራ", + "Off": "አጥፋ", + "Color": "ቀለም", + "White": "ነጭ", + "Area": "አካባቢ", + "Areas": "አካባቢዎች", + "Automations": "ራስ-ሰሮች", + "Scenes_In_Folder": "ትዕይንቶች በአቃፊ ውስጥ", + "Select": "ይምረጡ", + "Exist": "አለ", + "OK": "እሺ", + "Nothing": "ምንም", + "No_need_here": "እዚህ አያስፈልግም", + "Do_not_need": "አያስፈልግም", + "Finish": "ጨርስ", + "Select_Purposes_Of_The_Area": "የአከባቢውን ዓላማዎች ይምረጡ", + "Pulling_Up_all_blinds": "ሁሉንም መጋረጃዎች ወደ ላይ መክፈት", + "Stopping_all_blinds": "ሁሉንም መጋረጃዎች ማቆም", + "Pulling_down_all_blinds": "ሁሉንም መጋረጃዎች ወደ ታች መዝጋት", + "Turning_On_boiler": "ማሞቂያውን በማብራት ላይ", + "Turning_Off_boiler": "ማሞቂያውን በማጥፋት ላይ", + "Waiting_for_user_to_get_connected_to_WiFi": "ተጠቃሚ ወደ ዋይፋይ እስኪገናኝ በመጠበቅ ላይ", + "Can't_add_unsupported_device": "የማይደገፍ መ ማከል አይቻልም" +} From f0388d1284863ebc938a9d8bfe315cded6ebdc52 Mon Sep 17 00:00:00 2001 From: Mahi Date: Mon, 3 Oct 2022 17:30:47 +0600 Subject: [PATCH 26/57] Fixed previous issue and updated social media section --- README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5601e1283..3d305e9b9 100644 --- a/README.md +++ b/README.md @@ -43,8 +43,13 @@ To learn the coding guidelines check [this Wiki](https://github.com/CyBear-Jinni # Social Media Links -[](https://www.linkedin.com/company/cybear-jinni) - -If you have any questions feel free to ask in our Discord server - -[](https://discord.gg/mUXfwUY) + +arnabdey.co + +arnabdey0503 YouTube + +arnabdey0503  Twitter + +arnabdey0503 LinkedIn + +arnabdey0503  Instagram From 5ca418ef13c6e2f37fd0b1f71e534335ab3e9893 Mon Sep 17 00:00:00 2001 From: boringdeveloper Date: Mon, 3 Oct 2022 19:36:30 +0800 Subject: [PATCH 27/57] added Filipino language --- assets/translations/tl-PH.json | 112 +++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 assets/translations/tl-PH.json diff --git a/assets/translations/tl-PH.json b/assets/translations/tl-PH.json new file mode 100644 index 000000000..f6c5772ff --- /dev/null +++ b/assets/translations/tl-PH.json @@ -0,0 +1,112 @@ +{ + "Create_new_account": "Gumawa ng account", + "Actions_History": "Kasaysayan ng Mga Aksyon", + "Empty_history": "Walang laman ang kasaysayan", + "History_Settings_Page": "Mga Kasaysayan", + "Lamps_Page": "Pahina ng Mga Lamp", + "Name:_": "Pangalan: {}", + "Room:_": "Kwarto: {}", + "Lamps_Settings_Page": "Pahina ng Mga Lamps Setting", + "Welcome_to_your_Smart_Home": "Welcome sa iyong Smart Home", + "Scene_Settings_Page": "Pahina ng Mga Scene Setting", + "Move_to_blinds_full_settings_page": "Ilipat sa blinds full settings page", + "Blinds_Page": "Pahina ng Mga Blind", + "Down": "Baba", + "Stop": "Tigil", + "Up": "Taas", + "Smart_Devices_Settings_Page": "Pahina ng Smart Devices Settings", + "Air_Conditioners": "Air Conditioners", + "Blinds": "Blinds", + "Medical_Device": "Medikal na Device", + "Medical_Devices": "Mga Medikal na Device", + "Smart_Phone": "Smart Phone", + "Smart_Phones": "Mga Smart Phone", + "Smart_Speakers": "Mga Smart Speaker", + "Smart_Devices_page": "Pahina ng Mga Smart Device", + "History": "Kasaysayan", + "Scene": "Scene", + "Scenes": "Mga Scene", + "Lamps": "Mga Lamp", + "Devices": "Mga Device", + "Email_is_required": "Kinakailangan ang email", + "Email_cannot_contain_spaces": "Ang email ay hindi maaaring maglaman ng Mga puwang", + "Email_is_invalid": "Hindi wasto ang email", + "Email": "Email", + "Password_is_required": "Kinakailangan ang password", + "Password_cannot_contain_spaces": "Hindi maaaring maglaman ng Mga puwang ang password", + "Password_must_be_bigger_than__characters": "Ang password ay dapat na mas malaki kaysa sa {} na character", + "Password": "Password", + "Log_In": "Mag Log In", + "Forgot_password": "Nakalimutan ang Password", + "Forgot_password?": "Nakalimutan ang password?", + "title": "pamagat", + "number": "numero", + "IP_is_required": "Kinakailangan ang IP", + "IP_syntax_is_incorrect": "Mali ang IP syntax", + "Add_Smart_Device": "Magdagdag ng Smart Device", + "Cancel": "Kanselahin", + "Add": "Magdagdag", + "Light": "Ilaw", + "Device_ip:_": "IP ng device: {}", + "New_devices": "Bagong Mga device", + "Add_devices": "Magdagdag ng Mga device", + "Device_type:_": "Uri ng device: {}", + "Room_name_is_required": "Kinakailangan ang pangalan ng kwarto", + "Room_name:": "Pangalan ng kwarto:", + "Device_name_is_required": "Kinakailangan ang pangalan ng device", + "Device_name:": "Pangalan ng device:", + "Update": "Update", + "IP": "IP", + "This_is_firebase": "Ito ay firebase", + "Device_with_ip:_": "Device na may ip: {}", + "Update_WiFi_configuration": "I-update ang configuration ng WiFi", + "WiFi_name_is_required": "Kinakailangan ang pangalan ng WiFi", + "WiFi_Name": "Pangalan ng WiFi", + "WiFi_password_is_required": "Kinakailangan ang password ng WiFi", + "WiFi_Password": "Password ng WiFi", + "Insert_WiFi_Credentials": "Ilagay ang Mga Kredensyal ng WiFi", + "Conditioners": "Mga Conditioner", + "Medical": "Medikal", + "Phones": "Mga Telepono", + "Speakers": "Mga Speaker", + "Send": "Ipadala", + "All_Devices": "Lahat ng Mga Device", + "Summary": "Buod", + "Switches": "Mga Switch", + "Boilers": "Mga Boiler", + "Lights": "Mga Ilaw", + "RGBw_Lights": "RGBw na Mga Ilaw", + "_Switches": "{} na Mga Switch", + "_SmartTvs": "{} na Mga SmartTv", + "_RGBW_Lights": "{} na Mga RGBW na Mga Ilaw", + "_Lights": "{} na Mga Ilaw", + "_Boilers": "{} na Mga Boiler", + "_Blinds": "{} na Mga Blind", + "Rooms": "Mga Kwarto", + "_device": "{} device", + "_devices": "{} na Mga device", + "_SmartPlugs": "{} na Mga SmartPlug", + "On": "I-sindi", + "Off": "Patayin", + "Color": "Kulay", + "White": "Puti", + "Area": "Lugar", + "Areas": "Mga Lugar", + "Automations": "Mga Automation", + "Scenes_In_Folder": "Mga Scene sa Folder", + "Select": "Piliin", + "Exist": "Umiiral", + "OK": "OK", + "Nothing": "Wala", + "No_need_here": "Hindi na kailangan dito", + "Do_not_need": "Hindi kailangan", + "Finish": "Tapusin", + "Select_Purposes_Of_The_Area": "Piliin ang Mga Layunin Ng Lugar", + "Pulling_Up_all_blinds": "Hilahin ang lahat ng mga blind", + "Stopping_all_blinds": "Itigil ang lahat ng mga blind", + "Pulling_down_all_blinds": "Hinila pababa ang lahat ng mga blind", + "Turning_On_boiler": "Binubuksan ang boiler", + "Turning_Off_boiler": "Pinapatay ang boiler", + "Waiting_for_user_to_get_connected_to_WiFi": "Hinihintay na makakonekta ang user sa WiFi", + "Can't_add_unsupported_device": "Hindi makapagdagdag ng hindi sinusuportahang device" +} From 945fe93896734512065324e4d1f0ffa22ed3b60f Mon Sep 17 00:00:00 2001 From: Arun Karthick N M Date: Mon, 3 Oct 2022 17:16:05 +0530 Subject: [PATCH 28/57] Create ta-IN --- assets/translations/ta-IN | 54 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 assets/translations/ta-IN diff --git a/assets/translations/ta-IN b/assets/translations/ta-IN new file mode 100644 index 000000000..e7fa031db --- /dev/null +++ b/assets/translations/ta-IN @@ -0,0 +1,54 @@ +{ + "Create_new_account": "புதிய கணக்கை உருவாக்க", + "Actions_History": "செயல்களின் வரலாறு", + "Empty_history": "வெற்று வரலாறு", + "History_Settings_Page": "வரலாறு அமைப்புகள் பக்கம்", + "Name:_": "பெயர்: {}", + "Room:_": "அறை: {}", + "Lamps_Settings_Page": "விளக்குகள் அமைப்புகள் பக்கம்", + "Welcome_to_your_Smart_Home": " +உங்கள் ஸ்மார்ட் ஹோமுக்கு வரவேற்கிறோம்", + "Scene_Settings_Page": "காட்சி அமைப்புகள் பக்கம்", + "Move_to_blinds_full_settings_page": "Move to blinds full settings page", + "Blinds_Page": "குருட்டுப் பக்கம்", + "Down": "கீழ்", + "Stop": "நிறுத்து", + "Up": "மேலே", + "Smart_Devices_Settings_Page": "ஸ்மார்ட் சாதனங்கள் அமைப்புகள் பக்கம்", + "Air_Conditioners": "குளிரூட்டிகள்", + "Blinds": "குருடர்கள்", + "Medical_Device": "மருத்துவ சாதனம்", + "Medical_Devices": "மருத்துவ சாதனங்கள்", + "Smart_Phone": "திறன்பேசி", + "Smart_Phones": "ஸ்மார்ட் போன்கள்", + "Smart_Speakers": "ஸ்மார்ட் ஸ்பீக்கர்கள்", + "Smart_Devices_page": "ஸ்மார்ட் சாதனங்கள் பக்கம்", + "History": "வரலாறு", + "Scene": "காட்சி", + "Scenes": "காட்சிகள்", + "Lamps": "விளக்குகள்", + "Devices": "சாதனங்கள்", + "Email_is_required": "மின்னஞ்சல் தேவை", + "Email_cannot_contain_spaces": "மின்னஞ்சலில் இடைவெளிகள் இருக்கக்கூடாது", + "Email_is_invalid": "மின்னஞ்சல் தவறானது", + "Email": "மின்னஞ்சல்", + "Password_is_required": "கடவுச்சொல் தேவை", + "Password_cannot_contain_spaces": "கடவுச்சொல் இடைவெளிகளை கொண்டிருத்தலாகாது", + "Password_must_be_bigger_than__characters": "கடவுச்சொல் {} எழுத்துகளை விட பெரியதாக இருக்க வேண்டும்", + "Password": "கடவுச்சொல்", + "Log_In": "உள்நுழைய", + "Forgot_password": "கடவுச்சொல்லை மறந்துவிட்டீர்களா", + "Forgot_password?": "கடவுச்சொல்லை மறந்துவிட்டீர்களா?", + "title": "தலைப்பு", + "number": "எண்", + "IP_is_required": "ஐபி தேவை", + "IP_syntax_is_incorrect": "ஐபி தொடரியல் தவறானது", + "Add_Smart_Device": "ஸ்மார்ட் சாதனத்தைச் சேர்க்கவும்", + "Cancel": "ரத்து செய்", + "Add": "கூட்டு", + "Light": "ஒளி", + "Device_ip:_": "சாதன ஐபி: {}", + "New_devices": "புதிய சாதனங்கள்", + "Add_devices": "சாதனங்களைச் சேர்க்கவும்" + +} From 606f0306aaf8d4e88f1c22efd630ddc7d6826269 Mon Sep 17 00:00:00 2001 From: Mahi Date: Mon, 3 Oct 2022 17:53:10 +0600 Subject: [PATCH 29/57] fixed icons and icons size --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 3d305e9b9..782aac68e 100644 --- a/README.md +++ b/README.md @@ -44,12 +44,12 @@ To learn the coding guidelines check [this Wiki](https://github.com/CyBear-Jinni # Social Media Links -arnabdey.co +arnabdey.co -arnabdey0503 YouTube +arnabdey0503 YouTube -arnabdey0503  Twitter +arnabdey0503  Twitter -arnabdey0503 LinkedIn +arnabdey0503 LinkedIn -arnabdey0503  Instagram +arnabdey0503  Instagram From 6a8a7bdbcb19c7acbb680c43ce7f77cd699625fa Mon Sep 17 00:00:00 2001 From: Arun Karthick N M Date: Mon, 3 Oct 2022 17:24:23 +0530 Subject: [PATCH 30/57] Create ta-IN.json --- assets/translations/ta-IN.json | 53 ++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 assets/translations/ta-IN.json diff --git a/assets/translations/ta-IN.json b/assets/translations/ta-IN.json new file mode 100644 index 000000000..14cfa9154 --- /dev/null +++ b/assets/translations/ta-IN.json @@ -0,0 +1,53 @@ +{ + "Create_new_account": "புதிய கணக்கை உருவாக்க", + "Actions_History": "செயல்களின் வரலாறு", + "Empty_history": "வெற்று வரலாறு", + "History_Settings_Page": "வரலாறு அமைப்புகள் பக்கம்", + "Name:_": "பெயர்: {}", + "Room:_": "அறை: {}", + "Lamps_Settings_Page": "விளக்குகள் அமைப்புகள் பக்கம்", + "Welcome_to_your_Smart_Home": "உங்கள் ஸ்மார்ட் ஹோமுக்கு வரவேற்கிறோம்", + "Scene_Settings_Page": "காட்சி அமைப்புகள் பக்கம்", + "Move_to_blinds_full_settings_page": "Move to blinds full settings page", + "Blinds_Page": "குருட்டுப் பக்கம்", + "Down": "கீழ்", + "Stop": "நிறுத்து", + "Up": "மேலே", + "Smart_Devices_Settings_Page": "ஸ்மார்ட் சாதனங்கள் அமைப்புகள் பக்கம்", + "Air_Conditioners": "குளிரூட்டிகள்", + "Blinds": "குருடர்கள்", + "Medical_Device": "மருத்துவ சாதனம்", + "Medical_Devices": "மருத்துவ சாதனங்கள்", + "Smart_Phone": "திறன்பேசி", + "Smart_Phones": "ஸ்மார்ட் போன்கள்", + "Smart_Speakers": "ஸ்மார்ட் ஸ்பீக்கர்கள்", + "Smart_Devices_page": "ஸ்மார்ட் சாதனங்கள் பக்கம்", + "History": "வரலாறு", + "Scene": "காட்சி", + "Scenes": "காட்சிகள்", + "Lamps": "விளக்குகள்", + "Devices": "சாதனங்கள்", + "Email_is_required": "மின்னஞ்சல் தேவை", + "Email_cannot_contain_spaces": "மின்னஞ்சலில் இடைவெளிகள் இருக்கக்கூடாது", + "Email_is_invalid": "மின்னஞ்சல் தவறானது", + "Email": "மின்னஞ்சல்", + "Password_is_required": "கடவுச்சொல் தேவை", + "Password_cannot_contain_spaces": "கடவுச்சொல் இடைவெளிகளை கொண்டிருத்தலாகாது", + "Password_must_be_bigger_than__characters": "கடவுச்சொல் {} எழுத்துகளை விட பெரியதாக இருக்க வேண்டும்", + "Password": "கடவுச்சொல்", + "Log_In": "உள்நுழைய", + "Forgot_password": "கடவுச்சொல்லை மறந்துவிட்டீர்களா", + "Forgot_password?": "கடவுச்சொல்லை மறந்துவிட்டீர்களா?", + "title": "தலைப்பு", + "number": "எண்", + "IP_is_required": "ஐபி தேவை", + "IP_syntax_is_incorrect": "ஐபி தொடரியல் தவறானது", + "Add_Smart_Device": "ஸ்மார்ட் சாதனத்தைச் சேர்க்கவும்", + "Cancel": "ரத்து செய்", + "Add": "கூட்டு", + "Light": "ஒளி", + "Device_ip:_": "சாதன ஐபி: {}", + "New_devices": "புதிய சாதனங்கள்", + "Add_devices": "சாதனங்களைச் சேர்க்கவும்" + +} From 27b9134c1e4a8b7affde88f7cb7b2b7dc0c8d523 Mon Sep 17 00:00:00 2001 From: Arun Karthick N M Date: Mon, 3 Oct 2022 17:27:14 +0530 Subject: [PATCH 31/57] Delete ta-IN --- assets/translations/ta-IN | 54 --------------------------------------- 1 file changed, 54 deletions(-) delete mode 100644 assets/translations/ta-IN diff --git a/assets/translations/ta-IN b/assets/translations/ta-IN deleted file mode 100644 index e7fa031db..000000000 --- a/assets/translations/ta-IN +++ /dev/null @@ -1,54 +0,0 @@ -{ - "Create_new_account": "புதிய கணக்கை உருவாக்க", - "Actions_History": "செயல்களின் வரலாறு", - "Empty_history": "வெற்று வரலாறு", - "History_Settings_Page": "வரலாறு அமைப்புகள் பக்கம்", - "Name:_": "பெயர்: {}", - "Room:_": "அறை: {}", - "Lamps_Settings_Page": "விளக்குகள் அமைப்புகள் பக்கம்", - "Welcome_to_your_Smart_Home": " -உங்கள் ஸ்மார்ட் ஹோமுக்கு வரவேற்கிறோம்", - "Scene_Settings_Page": "காட்சி அமைப்புகள் பக்கம்", - "Move_to_blinds_full_settings_page": "Move to blinds full settings page", - "Blinds_Page": "குருட்டுப் பக்கம்", - "Down": "கீழ்", - "Stop": "நிறுத்து", - "Up": "மேலே", - "Smart_Devices_Settings_Page": "ஸ்மார்ட் சாதனங்கள் அமைப்புகள் பக்கம்", - "Air_Conditioners": "குளிரூட்டிகள்", - "Blinds": "குருடர்கள்", - "Medical_Device": "மருத்துவ சாதனம்", - "Medical_Devices": "மருத்துவ சாதனங்கள்", - "Smart_Phone": "திறன்பேசி", - "Smart_Phones": "ஸ்மார்ட் போன்கள்", - "Smart_Speakers": "ஸ்மார்ட் ஸ்பீக்கர்கள்", - "Smart_Devices_page": "ஸ்மார்ட் சாதனங்கள் பக்கம்", - "History": "வரலாறு", - "Scene": "காட்சி", - "Scenes": "காட்சிகள்", - "Lamps": "விளக்குகள்", - "Devices": "சாதனங்கள்", - "Email_is_required": "மின்னஞ்சல் தேவை", - "Email_cannot_contain_spaces": "மின்னஞ்சலில் இடைவெளிகள் இருக்கக்கூடாது", - "Email_is_invalid": "மின்னஞ்சல் தவறானது", - "Email": "மின்னஞ்சல்", - "Password_is_required": "கடவுச்சொல் தேவை", - "Password_cannot_contain_spaces": "கடவுச்சொல் இடைவெளிகளை கொண்டிருத்தலாகாது", - "Password_must_be_bigger_than__characters": "கடவுச்சொல் {} எழுத்துகளை விட பெரியதாக இருக்க வேண்டும்", - "Password": "கடவுச்சொல்", - "Log_In": "உள்நுழைய", - "Forgot_password": "கடவுச்சொல்லை மறந்துவிட்டீர்களா", - "Forgot_password?": "கடவுச்சொல்லை மறந்துவிட்டீர்களா?", - "title": "தலைப்பு", - "number": "எண்", - "IP_is_required": "ஐபி தேவை", - "IP_syntax_is_incorrect": "ஐபி தொடரியல் தவறானது", - "Add_Smart_Device": "ஸ்மார்ட் சாதனத்தைச் சேர்க்கவும்", - "Cancel": "ரத்து செய்", - "Add": "கூட்டு", - "Light": "ஒளி", - "Device_ip:_": "சாதன ஐபி: {}", - "New_devices": "புதிய சாதனங்கள்", - "Add_devices": "சாதனங்களைச் சேர்க்கவும்" - -} From 33060840294d9258fc791ae0b648d02421a1a717 Mon Sep 17 00:00:00 2001 From: Aditya <62930521+adityar224@users.noreply.github.com> Date: Mon, 3 Oct 2022 19:05:08 +0530 Subject: [PATCH 32/57] Create en-SG.json --- assets/translations/en-SG.json | 61 ++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 assets/translations/en-SG.json diff --git a/assets/translations/en-SG.json b/assets/translations/en-SG.json new file mode 100644 index 000000000..d449f67d6 --- /dev/null +++ b/assets/translations/en-SG.json @@ -0,0 +1,61 @@ +{ + "Create_new_account": "Create new account", + "Actions_History": "Actions History", + "Empty_history": "Empty history", + "History_Settings_Page": "History Settings Page", + "Lamps_Page": "Lamps Page", + "Name:_": "Name: {}", + "Room:_": "Room: {}", + "Lamps_Settings_Page": "Lamps Settings Page", + "Welcome_to_your_Smart_Home": "Welcome to your Smart Home", + "Scene_Settings_Page": "Scene Settings Page", + "Move_to_blinds_full_settings_page": "Move to blinds full settings page", + "Blinds_Page": "Blinds Page", + "Down": "Down", + "Stop": "Stop", + "Up": "Up", + "Smart_Devices_Settings_Page": "Smart Devices Settings Page", + "Air_Conditioners": "Air Conditioners", + "Blinds": "Blinds", + "Medical_Device": "Medical Device", + "Smart_Phone": "Smart Phone", + "Smart_Speakers": "Smart Speakers", + "Smart_Devices_page": "Smart Devices page", + "History": "History", + "Scene": "Scene", + "Lamps": "Lamps", + "Devices": "Devices", + "Email_is_required": "Email is required", + "Email_cannot_contain_spaces": "Email cannot contain spaces", + "Email_is_invalid": "Email is invalid", + "Email": "Email", + "Password_is_required": "Password is required", + "Password_cannot_contain_spaces": "Password cannot contain spaces", + "Password_must_be_bigger_than__characters": "Password must be bigger than {} characters", + "Password": "Password", + "Log_In": "Log In", + "Forgot_password": "Forgot Password", + "Forgot_password?": "Forgot password?", + "title": "title", + "number": "number", + "IP_is_required": "IP is required", + "IP_syntax_is_incorrect": "IP syntax is incorrect", + "Add_Smart_Device": "Add Smart Device", + "Cancel": "Cancel", + "Add": "Add", + "Light": "Light", + "Device_ip:_": "Device ip: {}", + "New_devices": "New devices", + "Add_devices": "Add devices", + "Device_type:_": "Device type: {}", + "Room_name_is_required": "Room name is required", + "Room_name:": "Room name:", + "Device_name_is_required": "Device name is required", + "Device_name:": "Device name:", + "Update": "Update", + "IP": "IP", + "This_is_firebase": "This is firebase", + "Device_with_ip:_": "Device with ip: {}", + "Send": "Send" +} + \ No newline at end of file From 496093e773c051fb11423fb5b20826ca3260577f Mon Sep 17 00:00:00 2001 From: NOK <92591333+potatochick2020@users.noreply.github.com> Date: Mon, 3 Oct 2022 14:47:09 +0100 Subject: [PATCH 33/57] Create zh-HK.json --- assets/translations/zh-HK.json | 106 +++++++++++++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 assets/translations/zh-HK.json diff --git a/assets/translations/zh-HK.json b/assets/translations/zh-HK.json new file mode 100644 index 000000000..847417879 --- /dev/null +++ b/assets/translations/zh-HK.json @@ -0,0 +1,106 @@ +{ + "Create_new_account": "開個新帳號", + "Actions_History": "行動紀錄", + "Empty_history": "清空紀錄", + "History_Settings_Page": "紀錄設定", + "Lamps_Page": "Lamps Page", + "Name:_": "名: {}", + "Room:_": "房: {}", + "Lamps_Settings_Page": "檯燈設定", + "Welcome_to_your_Smart_Home": "歡迎黎到你嘅智能屋企", + "Scene_Settings_Page": "佈景設定", + "Move_to_blinds_full_settings_page": "Move to blinds full settings page", + "Blinds_Page": "Blinds Page", + "Down": "下", + "Stop": "停", + "Up": "上", + "Smart_Devices_Settings_Page": "智能裝置設定", + "Air_Conditioners": "冷氣機", + "Blinds": "Blinds", + "Medical_Device": "醫療裝置", + "Medical_Devices": "醫療裝置", + "Smart_Phone": "智能手機", + "Smart_Phones": "智能手機", + "Smart_Speakers": "智能喇叭", + "Smart_Devices_page": "智能裝置頁面", + "History": "紀錄", + "Scene": "佈景", + "Scenes": "佈景", + "Lamps": "檯燈", + "Devices": "裝置", + "Email_is_required": "唔該入翻個Email", + "Email_cannot_contain_spaces": "個Email唔可以有空格", + "Email_is_invalid": "個Email唔啱", + "Email": "Email", + "Password_is_required": "唔該入翻個密碼", + "Password_cannot_contain_spaces": "個密碼唔可以有空格", + "Password_must_be_bigger_than__characters": "密碼要多過 {} 個字", + "Password": "密碼", + "Log_In": "登入", + "Forgot_password": "唔記得咗密碼", + "Forgot_password?": "唔記得咗密碼?", + "title": "title", + "number": "number", + "IP_is_required": "唔該入翻個IP", + "IP_syntax_is_incorrect": "個IP格式唔啱", + "Add_Smart_Device": "加入智能裝置", + "Cancel": "取消", + "Add": "加", + "Light": "燈", + "Device_ip:_": "裝置 ip: {}", + "New_devices": "新裝置", + "Add_devices": "加入裝置", + "Device_type:_": "裝置類型: {}", + "Room_name_is_required": "唔該入翻個房名", + "Room_name:": "房名:", + "Device_name_is_required": "唔該入翻個裝置名", + "Device_name:": "裝置名:", + "Update": "更新", + "IP": "IP", + "This_is_firebase": "呢個係firebase", + "Device_with_ip:_": "有IP嘅裝置: {}", + "Update_WiFi_configuration": "更新WiFi設定", + "WiFi_name_is_required": "唔該入翻個WiFi名", + "WiFi_Name": "WiFi名", + "WiFi_password_is_required": "唔該入翻個WiFi密碼", + "WiFi_Password": "WiFi密碼", + "Insert_WiFi_Credentials": "輸入WiFi資料", + "Conditioners": "冷氣機", + "Medical": "意料", + "Phones": "電話", + "Speakers": "喇叭", + "Send": "傳送", + "All_Devices": "全部裝置", + "Summary": "Summary", + "Switches": "開關", + "Boilers": "熱水爐", + "Lights": "燈", + "RGBw_Lights": "RGBw 燈", + "_Switches": "{} 開關", + "_SmartTvs": "{} 智能電視", + "_RGBW_Lights": "{} RGBW 燈", + "_Lights": "{} 燈", + "_Boilers": "{} 熱水爐", + "_Blinds": "{} 窗簾", + "Rooms": "Rooms", + "_device": "{} 裝置", + "_devices": "{} 裝置", + "_SmartPlugs": "{} 智能插蘇", + "On": "開", + "Off": "關", + "Color": "顏色", + "White": "白色", + "Area": "範圍", + "Areas": "範圍", + "Automations": "自動化", + "Scenes_In_Folder": "Scenes In Folder", + "Select": "選擇", + "Exist": "Exist", + "OK": "OK", + "Nothing": "冇嘢", + "No_need_here": "呢度唔洗", + "Do_not_need": "唔洗", + "Finish": "完", + "Select_Purposes_Of_The_Area": "選擇範圍嘅用途" + } + \ No newline at end of file From dab236c39dd55f7444b8b8163a35bd4f82bffe44 Mon Sep 17 00:00:00 2001 From: Mahi Date: Mon, 3 Oct 2022 19:48:22 +0600 Subject: [PATCH 34/57] fixed github icon visibility --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 782aac68e..d70dfb77a 100644 --- a/README.md +++ b/README.md @@ -44,12 +44,13 @@ To learn the coding guidelines check [this Wiki](https://github.com/CyBear-Jinni # Social Media Links -arnabdey.co +Twitter -arnabdey0503 YouTube +Instagram -arnabdey0503  Twitter +Linkedin -arnabdey0503 LinkedIn +Discord -arnabdey0503  Instagram +Github + From 5720010b5a22d0817506e483eb9851388d22c469 Mon Sep 17 00:00:00 2001 From: Aditya <62930521+adityar224@users.noreply.github.com> Date: Mon, 3 Oct 2022 19:18:47 +0530 Subject: [PATCH 35/57] Create en-PR.json --- assets/translations/en-PR.json | 112 +++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 assets/translations/en-PR.json diff --git a/assets/translations/en-PR.json b/assets/translations/en-PR.json new file mode 100644 index 000000000..858f5b5c5 --- /dev/null +++ b/assets/translations/en-PR.json @@ -0,0 +1,112 @@ +{ + "Create_new_account": "Create new account", + "Actions_History": "Actions History", + "Empty_history": "Empty history", + "History_Settings_Page": "History Settings Page", + "Lamps_Page": "Lamps Page", + "Name:_": "Name: {}", + "Room:_": "Room: {}", + "Lamps_Settings_Page": "Lamps Settings Page", + "Welcome_to_your_Smart_Home": "Welcome to your Smart Home", + "Scene_Settings_Page": "Scene Settings Page", + "Move_to_blinds_full_settings_page": "Move to blinds full settings page", + "Blinds_Page": "Blinds Page", + "Down": "Down", + "Stop": "Stop", + "Up": "Up", + "Smart_Devices_Settings_Page": "Smart Devices Settings Page", + "Air_Conditioners": "Air Conditioners", + "Blinds": "Blinds", + "Medical_Device": "Medical Device", + "Medical_Devices": "Medical Devices", + "Smart_Phone": "Smart Phone", + "Smart_Phones": "Smart Phones", + "Smart_Speakers": "Smart Speakers", + "Smart_Devices_page": "Smart Devices page", + "History": "History", + "Scene": "Scene", + "Scenes": "Scenes", + "Lamps": "Lamps", + "Devices": "Devices", + "Email_is_required": "Email is required", + "Email_cannot_contain_spaces": "Email cannot contain spaces", + "Email_is_invalid": "Email is invalid", + "Email": "Email", + "Password_is_required": "Password is required", + "Password_cannot_contain_spaces": "Password cannot contain spaces", + "Password_must_be_bigger_than__characters": "Password must be bigger than {} characters", + "Password": "Password", + "Log_In": "Log In", + "Forgot_password": "Forgot Password", + "Forgot_password?": "Forgot password?", + "title": "title", + "number": "number", + "IP_is_required": "IP is required", + "IP_syntax_is_incorrect": "IP syntax is incorrect", + "Add_Smart_Device": "Add Smart Device", + "Cancel": "Cancel", + "Add": "Add", + "Light": "Light", + "Device_ip:_": "Device ip: {}", + "New_devices": "New devices", + "Add_devices": "Add devices", + "Device_type:_": "Device type: {}", + "Room_name_is_required": "Room name is required", + "Room_name:": "Room name:", + "Device_name_is_required": "Device name is required", + "Device_name:": "Device name:", + "Update": "Update", + "IP": "IP", + "This_is_firebase": "This is firebase", + "Device_with_ip:_": "Device with ip: {}", + "Update_WiFi_configuration": "Update WiFi configuration", + "WiFi_name_is_required": "WiFi name is required", + "WiFi_Name": "WiFi Name", + "WiFi_password_is_required": "WiFi password is required", + "WiFi_Password": "WiFi Password", + "Insert_WiFi_Credentials": "Insert WiFi Credentials", + "Conditioners": "Conditioners", + "Medical": "Medical", + "Phones": "Phones", + "Speakers": "Speakers", + "Send": "Send", + "All_Devices": "All Devices", + "Summary": "Summary", + "Switches": "Switches", + "Boilers": "Boilers", + "Lights": "Lights", + "RGBw_Lights": "RGBw Lights", + "_Switches": "{} Switches", + "_SmartTvs": "{} SmartTvs", + "_RGBW_Lights": "{} RGBW Lights", + "_Lights": "{} Lights", + "_Boilers": "{} Boilers", + "_Blinds": "{} Blinds", + "Rooms": "Rooms", + "_device": "{} device", + "_devices": "{} devices", + "_SmartPlugs": "{} SmartPlugs", + "On": "On", + "Off": "Off", + "Color": "Color", + "White": "White", + "Area": "Area", + "Areas": "Areas", + "Automations": "Automations", + "Scenes_In_Folder": "Scenes In Folder", + "Select": "Select", + "Exist": "Exist", + "OK": "OK", + "Nothing": "Nothing", + "No_need_here": "No need here", + "Do_not_need": "Do not need", + "Finish": "Finish", + "Select_Purposes_Of_The_Area": "Select Purposes Of The Area", + "Pulling_Up_all_blinds": "Pulling Up all blinds", + "Stopping_all_blinds": "Stopping all blinds", + "Pulling_down_all_blinds": "Pulling down all blinds", + "Turning_On_boiler": "Turning On boiler", + "Turning_Off_boiler": "Turning Off boiler", + "Waiting_for_user_to_get_connected_to_WiFi": "Waiting for user to get connected to WiFi", + "Can't_add_unsupported_device": "Can't add unsupported device" +} From c5c4076b91457eabce19d44a0ff676bbd2e7fce0 Mon Sep 17 00:00:00 2001 From: Aditya <62930521+adityar224@users.noreply.github.com> Date: Mon, 3 Oct 2022 19:35:17 +0530 Subject: [PATCH 36/57] Update README.md From e85e5f000e4712fa812544433fec973baa7f3b4f Mon Sep 17 00:00:00 2001 From: Aditya <62930521+adityar224@users.noreply.github.com> Date: Mon, 3 Oct 2022 19:49:52 +0530 Subject: [PATCH 37/57] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 78d836b71..d70dfb77a 100644 --- a/README.md +++ b/README.md @@ -53,3 +53,4 @@ To learn the coding guidelines check [this Wiki](https://github.com/CyBear-Jinni Discord Github + From ba242613a112bcc18c0f94394c6dec03d52a8d70 Mon Sep 17 00:00:00 2001 From: Aditya <62930521+adityar224@users.noreply.github.com> Date: Mon, 3 Oct 2022 19:50:16 +0530 Subject: [PATCH 38/57] Update en-SG.json --- assets/translations/en-SG.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/translations/en-SG.json b/assets/translations/en-SG.json index 5bc508746..a319c5e5f 100644 --- a/assets/translations/en-SG.json +++ b/assets/translations/en-SG.json @@ -109,4 +109,4 @@ "Turning_Off_boiler": "Turning Off boiler", "Waiting_for_user_to_get_connected_to_WiFi": "Waiting for user to get connected to WiFi", "Can't_add_unsupported_device": "Can't add unsupported device" -} \ No newline at end of file +} From e44a08b63ab86ac78f66941b97125da616caad3f Mon Sep 17 00:00:00 2001 From: GriffinAnnshual Date: Mon, 3 Oct 2022 20:23:27 +0530 Subject: [PATCH 39/57] Add tamil translation --- assets/translations/ta-IN.json | 105 +++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 assets/translations/ta-IN.json diff --git a/assets/translations/ta-IN.json b/assets/translations/ta-IN.json new file mode 100644 index 000000000..068712516 --- /dev/null +++ b/assets/translations/ta-IN.json @@ -0,0 +1,105 @@ +{ + "Create_new_account": "புதிய கணக்கை உருவாக்க", + "Actions_History": "செயல்களின் வரலாறு", + "Empty_history": "வெற்று வரலாறு", + "History_Settings_Page": "வரலாறு அமைக்கும் பக்கம்", + "Lamps_Page": "விளக்குகள் பக்கம்", + "Name:_": "பெயர்: {}", + "Room:_": "அறை: {}", + "Lamps_Settings_Page": "விளக்குகள் அமைக்கும் பக்கம்", + "Welcome_to_your_Smart_Home": "உங்கள் ஸ்மார்ட் வீட்டிற்கு வரவேற்கிறோம்", + "Scene_Settings_Page": "காட்சி அமைப்பு பக்கம்", + "Move_to_blinds_full_settings_page": "பிளைண்ட்ஸ் முழு அமைப்பு பக்கத்திற்கு நகர்த்தவும்", + "Blinds_Page": "பார்வையற்றவரின் பக்கம்", + "Down": "கீழ்", + "Stop": "நிறுத்து", + "Up": "மேலே", + "Smart_Devices_Settings_Page": "ஸ்மார்ட் சாதனங்கள் அமைப்புகள் பக்கம்", + "Air_Conditioners": "குளிரூட்டிகள்", + "Blinds": "குருடர்கள்", + "Medical_Device": "மருத்துவ சாதனம்", + "Medical_Devices": "மருத்துவ சாதனங்கள்", + "Smart_Phone": "திறன்பேசி", + "Smart_Phones": "திறன்பேசிகள்", + "Smart_Speakers": "ஸ்மார்ட் ஸ்பீக்கர்கள்", + "Smart_Devices_page": "ஸ்மார்ட் சாதனங்கள் பக்கம்", + "History": "வரலாறு", + "Scene": "காட்சி", + "Scenes": "காட்சிகள்", + "Lamps": "விளக்குகள்", + "Devices": "சாதனங்கள்", + "Email_is_required": "மின்னஞ்சல் தேவை", + "Email_cannot_contain_spaces": "மின்னஞ்சலில் இடைவெளிகள் இருக்கக்கூடாது", + "Email_is_invalid": "மின்னஞ்சல் தவறானது", + "Email": "மின்னஞ்சல்", + "Password_is_required": "கடவுச்சொல் தேவை", + "Password_cannot_contain_spaces": "கடவுச்சொல் இடைவெளிகளை கொண்டிருத்தலாகாது", + "Password_must_be_bigger_than__characters": "கடவுச்சொல் {} எழுத்துகளை விட பெரியதாக இருக்க வேண்டும்", + "Password": "கடவுச்சொல்", + "Log_In": "உள்நுழைய", + "Forgot_password": "கடவுச்சொல்லை மறந்துவிட்டீர்களா", + "Forgot_password?": "கடவுச்சொல்லை மறந்துவிட்டீர்களா?", + "title": "தலைப்பு", + "number": "எண்", + "IP_is_required": "ஐபி தேவை", + "IP_syntax_is_incorrect": "ஐபி தொடரியல் தவறானது", + "Add_Smart_Device": "ஸ்மார்ட் சாதனத்தைச் சேர்க்கவும்", + "Cancel": "ரத்து செய்", + "Add": "கூட்டு", + "Light": "ஒளி", + "Device_ip:_": "சாதன ஐபி: {}", + "New_devices": "புதிய சாதனங்கள்", + "Add_devices": "சாதனங்களைச் சேர்க்கவும்", + "Device_type:_": "கருவியின் வகை: {}", + "Room_name_is_required": "அறையின் பெயர் தேவை", + "Room_name:": "அறையின் பெயர்:", + "Device_name_is_required": "சாதனத்தின் பெயர் தேவை", + "Device_name:": "சாதனத்தின் பெயர்:", + "Update": "புதுப்பிக்கவும்", + "IP": "ஐபி", + "This_is_firebase": "இது ஃபயர்பேஸ்", + "Device_with_ip:_": "ஐபி கொண்ட சாதனம்: {}", + "Update_WiFi_configuration": "வைஃபை உள்ளமைவைப் புதுப்பிக்கவும்", + "WiFi_name_is_required": "வைஃபை பெயர் தேவை", + "WiFi_Name": "வைஃபை பெயர்", + "WiFi_password_is_required": "வைஃபை கடவுச்சொல் தேவை", + "WiFi_Password": "வைஃபை கடவுச்சொல்", + "Insert_WiFi_Credentials": "வைஃபை நற்சான்றிதழ்களைச் செருகவும்", + "Conditioners": "கண்டிஷனர்கள்", + "Medical": "மருத்துவம்", + "Phones": "தொலைபேசிகள்", + "Speakers": "பேச்சாளர்கள்", + "Send": "அனுப்பு", + "All_Devices": "அனைத்து சாதனங்களும்", + "Summary": "சுருக்கம்", + "Switches": "மாறுகிறது", + "Boilers": "கொதிகலன்கள்", + "Lights": "விளக்குகள்", + "RGBw_Lights": "RGBw விளக்குகள்", + "_Switches": "{} மாறுகிறது", + "_SmartTvs": "{} ஸ்மார்ட் டிவிகள்", + "_RGBW_Lights": "{} RGBW விளக்குகள்", + "_Lights": "{} விளக்குகள்", + "_Boilers": "{} கொதிகலன்கள்", + "_Blinds": "{} குருடர்கள்", + "Rooms": "அறைகள்", + "_device": "{} சாதனம்", + "_devices": "{} சாதனங்கள்", + "_SmartPlugs": "{} ஸ்மார்ட் பிளக்குகள்", + "On": "ஆன்", + "Off": "ஆஃப்", + "Color": "நிறம்", + "White": "வெள்ளை", + "Area": "பகுதி", + "Areas": "பகுதி", + "Automations": "ஆட்டோமேஷன்கள்", + "Scenes_In_Folder": "கோப்புறையில் காட்சிகள்", + "Select": "தேர்ந்தெடு", + "Exist": "உள்ளன", + "OK": "சரி", + "Nothing": "ஒன்றுமில்லை", + "No_need_here": "இங்கே தேவையில்லை", + "Do_not_need": "தேவையில்லை", + "Finish": "முடிக்கவும்", + "Select_Purposes_Of_The_Area": "பகுதியின் நோக்கங்களைத் தேர்ந்தெடுக்கவும்" +} From cc60f2d6b8295dced6d5a24147a9b99946d0c3a7 Mon Sep 17 00:00:00 2001 From: InquisitiveMe15 <85685489+InquisitiveMe15@users.noreply.github.com> Date: Mon, 3 Oct 2022 22:41:31 +0530 Subject: [PATCH 40/57] Adding 7 more line translations --- assets/translations/hi-IN.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/assets/translations/hi-IN.json b/assets/translations/hi-IN.json index fae772b8e..cc20717fa 100644 --- a/assets/translations/hi-IN.json +++ b/assets/translations/hi-IN.json @@ -59,5 +59,12 @@ "Update": "अपडेट करें", "IP": "आईपी", "This_is_firebase": "यह फायरबेस है", - "Device_with_ip:_": "आईपी के साथ उपकरण: {}" + "Device_with_ip:_": "आईपी के साथ उपकरण: {}", + "Select": "चयन करें", + "Exist": "अस्तित्व रखना", + "OK": "ठीक है", + "Nothing": "कुछ भी तो नहीं", + "No_need_here": "यहाँ कोई ज़रूरत नहीं है", + "Do_not_need": "जरूरत नहीं है", + "Finish": "पूर्ण करना", } From b47bf4b766ca8db238857513963823e3804addfb Mon Sep 17 00:00:00 2001 From: Ojas Dubey Date: Tue, 4 Oct 2022 00:37:56 +0530 Subject: [PATCH 41/57] Added required translations in hi-IN.json --- assets/translations/hi-IN.json | 45 +++++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/assets/translations/hi-IN.json b/assets/translations/hi-IN.json index 4e024394e..e0a4cbf5b 100644 --- a/assets/translations/hi-IN.json +++ b/assets/translations/hi-IN.json @@ -54,5 +54,48 @@ "Update": "अपडेट करें", "IP": "आईपी", "This_is_firebase": "यह फायरबेस है", - "Device_with_ip:_": "आईपी के साथ डिवाइस: {}" + "Device_with_ip:_": "आईपी के साथ डिवाइस: {}", + "Update_WiFi_configuration": "वाईफाई कॉन्फ़िगरेशन अपडेट करें", + "WiFi_name_is_required": "वाईफाई का नाम आवश्यक है", + "WiFi_Name": "वाईफाई का नाम", + "WiFi_password_is_required": "वाईफाई पासवर्ड आवश्यक है", + "WiFi_Password": "वाईफाई पासवर्ड", + "Insert_WiFi_Credentials": "वाईफाई के प्रत्यायक डालें", + "Conditioners": "कंडीशनर", + "Medical": "चिकित्सा", + "Phones": "दूरभाष", + "Speakers": "वक्ताओं", + "Send": "भेजना", + "All_Devices": "सभी उपकरण", + "Summary": "सारांश", + "Switches": "स्विच", + "Boilers": "बॉयलर", + "Lights": "रोशनी", + "RGBw_Lights": "RGBw रोशनी", + "_Switches": "{} स्विच", + "_SmartTvs": "{} स्मार्टदूरदर्शन", + "_RGBW_Lights": "{} RGBW रोशनी", + "_Lights": "{} रोशनी", + "_Boilers": "{} बॉयलर", + "_Blinds": "{} परदा", + "Rooms": "कमरे", + "_device": "{} उपकरण", + "_devices": "{} उपकरण", + "_SmartPlugs": "{} स्मार्टप्लग", + "On": "चालू", + "Off": "बंद", + "Color": "रंग", + "White": "सफेद", + "Area": "क्षेत्र", + "Areas": "क्षेत्रों", + "Automations": "स्वचालन", + "Scenes_In_Folder": "फ़ोल्डर के दृश्य", + "Select": "चुनें", + "Exist": "अस्तित्व", + "OK": "ठीक है", + "Nothing": "कुछ नहीं", + "No_need_here": "यहाँ कोई ज़रूरत नहीं है", + "Do_not_need": "ज़रूरत नहीं है", + "Finish": "समाप्त", + "Select_Purposes_Of_The_Area": "क्षेत्र के प्रयोजनों का चयन करें" } From 3fd0953b0b4d51d37d50e4fa57fd888c34a0be5d Mon Sep 17 00:00:00 2001 From: guyluz11 Date: Mon, 3 Oct 2022 22:11:24 +0300 Subject: [PATCH 42/57] Updated targetSdkVersion to 33 --- android/app/build.gradle | 2 +- android/app/src/main/AndroidManifest.xml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index e468a4358..d104fb92d 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -46,7 +46,7 @@ android { defaultConfig { applicationId "com.cybear_jinni.smart_home" minSdkVersion 19 - targetSdkVersion 30 + targetSdkVersion 33 versionCode flutterVersionCode.toInteger() versionName flutterVersionName multiDexEnabled true // Enable multidex for apps with over 64K methods diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 52655fd75..b3f7dad22 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -37,6 +37,7 @@ android:theme="@style/LaunchTheme" android:showWhenLocked="true" android:turnScreenOn="true" + android:exported="true" android:windowSoftInputMode="adjustResize">