getLocalizations method

Map<String, String>? getLocalizations(
  1. Locale? locale
)

Implementation

Map<String, String>? getLocalizations(Locale? locale) {
  final files = _folder.map((e) => e.name).toList();
  final paths = FileMatcher.matchLocale(
    files: files,
    name: 'pass',
    extension: 'strings',
    locale: locale,
  );
  if (paths.isEmpty) return null;
  final file = _folder.singleWhere((element) => element.name == paths.first);
  return LProjParser.parse(file.stringContent);
}