l10n: ar
|
@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
|
|||
- Cataloguing: detect/filter `Ultra HDR`
|
||||
- Info: show metadata from JPEG MPF
|
||||
- Info: open images embedded via JPEG MPF
|
||||
- Arabic translation (thanks Mohamed Zeroug)
|
||||
- Belarusian translation (thanks Макар Разин)
|
||||
|
||||
### Changed
|
||||
|
|
BIN
fastlane/metadata/android/ar/images/featureGraphic.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
fastlane/metadata/android/ar/images/phoneScreenshots/1.png
Normal file
After Width: | Height: | Size: 281 KiB |
BIN
fastlane/metadata/android/ar/images/phoneScreenshots/2.png
Normal file
After Width: | Height: | Size: 495 KiB |
BIN
fastlane/metadata/android/ar/images/phoneScreenshots/3.png
Normal file
After Width: | Height: | Size: 190 KiB |
BIN
fastlane/metadata/android/ar/images/phoneScreenshots/4.png
Normal file
After Width: | Height: | Size: 120 KiB |
BIN
fastlane/metadata/android/ar/images/phoneScreenshots/5.png
Normal file
After Width: | Height: | Size: 81 KiB |
BIN
fastlane/metadata/android/ar/images/phoneScreenshots/6.png
Normal file
After Width: | Height: | Size: 324 KiB |
BIN
fastlane/metadata/android/ar/images/phoneScreenshots/7.png
Normal file
After Width: | Height: | Size: 310 KiB |
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 17 KiB |
|
@ -213,6 +213,7 @@ class _ReportOverlayState<T> extends State<ReportOverlay<T>> with SingleTickerPr
|
|||
final processedCount = processed.length.toDouble();
|
||||
final total = widget.itemCount;
|
||||
final percent = total == null || total == 0 ? 0.0 : min(1.0, processedCount / total);
|
||||
final percentFormat = NumberFormat.percentPattern();
|
||||
return FadeTransition(
|
||||
opacity: _animation,
|
||||
child: Stack(
|
||||
|
@ -245,7 +246,7 @@ class _ReportOverlayState<T> extends State<ReportOverlay<T>> with SingleTickerPr
|
|||
animation: animate,
|
||||
center: total != null
|
||||
? Text(
|
||||
NumberFormat.percentPattern().format(percent),
|
||||
percentFormat.format(percent),
|
||||
style: const TextStyle(fontSize: fontSize),
|
||||
)
|
||||
: null,
|
||||
|
|