-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #955 from valadas/loc-types
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
14 changes: 7 additions & 7 deletions
14
packages/stencil-library/src/components/dnn-image-cropper/types.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
}; |