Skip to content

Commit e0019ee

Browse files
committed
lightbox [nfc]: Note todo-i18n on video durations
1 parent 294cce6 commit e0019ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/widgets/lightbox.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ class VideoDurationLabel extends StatelessWidget {
340340
final hours = value.inHours.toString().padLeft(2, '0');
341341
final minutes = value.inMinutes.remainder(60).toString().padLeft(2, '0');
342342
final seconds = value.inSeconds.remainder(60).toString().padLeft(2, '0');
343-
return '${hours == '00' ? '' : '$hours:'}$minutes:$seconds';
343+
return '${hours == '00' ? '' : '$hours:'}$minutes:$seconds'; // TODO(i18n)
344344
}
345345

346346
@override

0 commit comments

Comments
 (0)