diff --git a/CHANGELOG.md b/CHANGELOG.md index b14c55137..c092ae715 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/fastlane/metadata/android/ar/images/featureGraphic.png b/fastlane/metadata/android/ar/images/featureGraphic.png new file mode 100644 index 000000000..7204bd0d6 Binary files /dev/null and b/fastlane/metadata/android/ar/images/featureGraphic.png differ diff --git a/fastlane/metadata/android/ar/images/phoneScreenshots/1.png b/fastlane/metadata/android/ar/images/phoneScreenshots/1.png new file mode 100644 index 000000000..c53c38202 Binary files /dev/null and b/fastlane/metadata/android/ar/images/phoneScreenshots/1.png differ diff --git a/fastlane/metadata/android/ar/images/phoneScreenshots/2.png b/fastlane/metadata/android/ar/images/phoneScreenshots/2.png new file mode 100644 index 000000000..b18c82d1e Binary files /dev/null and b/fastlane/metadata/android/ar/images/phoneScreenshots/2.png differ diff --git a/fastlane/metadata/android/ar/images/phoneScreenshots/3.png b/fastlane/metadata/android/ar/images/phoneScreenshots/3.png new file mode 100644 index 000000000..50a8c7a8d Binary files /dev/null and b/fastlane/metadata/android/ar/images/phoneScreenshots/3.png differ diff --git a/fastlane/metadata/android/ar/images/phoneScreenshots/4.png b/fastlane/metadata/android/ar/images/phoneScreenshots/4.png new file mode 100644 index 000000000..9cb4a4ed2 Binary files /dev/null and b/fastlane/metadata/android/ar/images/phoneScreenshots/4.png differ diff --git a/fastlane/metadata/android/ar/images/phoneScreenshots/5.png b/fastlane/metadata/android/ar/images/phoneScreenshots/5.png new file mode 100644 index 000000000..bf90202cd Binary files /dev/null and b/fastlane/metadata/android/ar/images/phoneScreenshots/5.png differ diff --git a/fastlane/metadata/android/ar/images/phoneScreenshots/6.png b/fastlane/metadata/android/ar/images/phoneScreenshots/6.png new file mode 100644 index 000000000..e46abd530 Binary files /dev/null and b/fastlane/metadata/android/ar/images/phoneScreenshots/6.png differ diff --git a/fastlane/metadata/android/ar/images/phoneScreenshots/7.png b/fastlane/metadata/android/ar/images/phoneScreenshots/7.png new file mode 100644 index 000000000..07d4603b9 Binary files /dev/null and b/fastlane/metadata/android/ar/images/phoneScreenshots/7.png differ diff --git a/fastlane/metadata/android/vi/images/feature_graphics.png b/fastlane/metadata/android/vi/images/featureGraphic.png similarity index 100% rename from fastlane/metadata/android/vi/images/feature_graphics.png rename to fastlane/metadata/android/vi/images/featureGraphic.png diff --git a/lib/widgets/common/action_mixins/feedback.dart b/lib/widgets/common/action_mixins/feedback.dart index f1a9bda36..bee8bfc5c 100644 --- a/lib/widgets/common/action_mixins/feedback.dart +++ b/lib/widgets/common/action_mixins/feedback.dart @@ -213,6 +213,7 @@ class _ReportOverlayState extends State> 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 extends State> with SingleTickerPr animation: animate, center: total != null ? Text( - NumberFormat.percentPattern().format(percent), + percentFormat.format(percent), style: const TextStyle(fontSize: fontSize), ) : null,