Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed localization typings issue for image-cropper #955

Merged
merged 1 commit into from
Feb 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
};
Loading