Skip to content

Commit

Permalink
Merge pull request #1 from rumbleh/rumbleh-patch-1
Browse files Browse the repository at this point in the history
Removing hardcoded texts
  • Loading branch information
rumbleh authored Aug 13, 2021
2 parents 27495a4 + 996b934 commit 0777fc4
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion lib/configs/image_picker_configs.dart
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,15 @@ class ImagePickerConfigs {
String get textImageStickerGuide => getTranslatedString(
"image_picker_image_sticker_guide",
"You can click on below icons to add into image, double click to remove it from image");

String get textExposure => getTranslatedString(
"image_picker_exposure_title",
"Exposure");
String get textExposureLocked => getTranslatedString(
"image_picker_exposure_locked_title",
"Locked");
String get textExposureLocked => getTranslatedString(
"image_picker_exposure_auto_title",
"auto");
/// Translate string by translateFunc
String getTranslatedString(String name, String defaultValue) {
return translateFunc.call(name, defaultValue);
Expand Down

0 comments on commit 0777fc4

Please sign in to comment.