Files
syncrow-app/lib/utils/resource_manager/strings_manager.dart
2024-02-21 13:47:08 +03:00

26 lines
915 B
Dart

// ignore_for_file: lines_longer_than_80_chars
class StringsManager {
static const noRouteFound = 'No route found';
static const noInternetConnection = 'No internet connection';
static const dashboard = 'Dashboard';
static const devices = 'Devices';
static const routine = 'Routines';
static const tapToRunRoutine = 'Tap to run routine';
static const wizard = 'Wizard';
static const active = 'Active';
static const current = 'Current';
static const frequency = 'Frequency';
static const energyUsage = 'Energy Usage';
static const totalConsumption = 'Total Consumption';
static const ACConsumption = 'AC Consumption';
static const units = 'Units';
static const emissions = 'Emissions';
static const reductions = 'Reductions';
static const winter = 'Winter';
static const winterMode = 'Winter Mode';
static const summer = 'Summer';
static const summerMode = 'Summer Mode';
}