Files
syncrow-app/lib/utils/resource_manager/strings_manager.dart
2024-02-20 12:08:59 +03:00

18 lines
599 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 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';
}