Skip to content

Commit

Permalink
Merge pull request #955 from valadas/loc-types
Browse files Browse the repository at this point in the history
  • Loading branch information
david-poindexter authored Feb 14, 2024
2 parents 9b365ba + efa3e1f commit 9e17adf
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
export interface ImageCropperResx {
/** The text of the capture button. */
capture?: string,
capture?: string;

/** The text of the Drag and Drop button. */
dragAndDropFile: "Drag and drop an image",
dragAndDropFile?: string;

/** The word "or" shown between the controls. */
or: "or",
or?: string;

/** The text of the button to take a picture. */
takePicture: "Take a picture",
takePicture?: string;

/** The text of the button to upload an image. */
uploadFile: "Upload an image",
uploadFile?: string;

/** The text shown when an image is smaller than the minimum size supported.
* {width} and {height} will be replaced by the minimum width and height.
*/
imageTooSmall: "The image you are attempting to upload does not meet the minimum size requirement of {width} pixels by {height} pixels. Please upload a larger image.",
imageTooSmall?: string;

/** The text of the Close button. */
modalCloseText: "Close",
modalCloseText?: string;
};

0 comments on commit 9e17adf

Please sign in to comment.