File tree 3 files changed +8
-4
lines changed
packages/image_picker/image_picker 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.6.7+17
2
+
3
+ * iOS: fix ` User-facing text should use localized string macro ` warning.
4
+
1
5
## 0.6.7+16
2
6
3
7
* Update Flutter SDK constraint.
Original file line number Diff line number Diff line change @@ -146,10 +146,10 @@ - (void)showCamera {
146
146
animated: YES
147
147
completion: nil ];
148
148
} else {
149
- [[[UIAlertView alloc ] initWithTitle: @" Error"
150
- message: @" Camera not available."
149
+ [[[UIAlertView alloc ] initWithTitle: NSLocalizedString( @" Error" , nil )
150
+ message: NSLocalizedString( @" Camera not available." , nil )
151
151
delegate: nil
152
- cancelButtonTitle: @" OK"
152
+ cancelButtonTitle: NSLocalizedString( @" OK" , nil )
153
153
otherButtonTitles: nil ] show ];
154
154
self.result (nil );
155
155
self.result = nil ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: image_picker
2
2
description : Flutter plugin for selecting images from the Android and iOS image
3
3
library, and taking new pictures with the camera.
4
4
homepage : https://github.com/flutter/plugins/tree/master/packages/image_picker/image_picker
5
- version : 0.6.7+16
5
+ version : 0.6.7+17
6
6
7
7
flutter :
8
8
plugin :
You can’t perform that action at this time.
0 commit comments