diff --git a/lib/src/models/pass_structure_dictionary.dart b/lib/src/models/pass_structure_dictionary.dart index cd6eef0..6cd3693 100644 --- a/lib/src/models/pass_structure_dictionary.dart +++ b/lib/src/models/pass_structure_dictionary.dart @@ -115,7 +115,6 @@ class DictionaryField { /// Localized version of [label] based on given [locale] and [pass]. String? getLocalizedLabel(PassFile pass, Locale? locale) { final localizations = pass.getLocalizations(locale); - print(localizations); return localizations?[label] ?? label; } diff --git a/lib/src/pass_file.dart b/lib/src/pass_file.dart index 747e3d5..acaa061 100644 --- a/lib/src/pass_file.dart +++ b/lib/src/pass_file.dart @@ -122,7 +122,6 @@ class PassFile { extension: 'strings', locale: locale, ); - print(paths); if (paths.isEmpty) return null; final file = _folder.singleWhere((element) => element.name == paths.first); return LProjParser.parse(file.stringContent);