File tree Expand file tree Collapse file tree 2 files changed +24
-4
lines changed
Bundle/FrameworkBundle/Resources/translations
Component/Validator/Constraints Expand file tree Collapse file tree 2 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 64
64
</trans-unit >
65
65
<trans-unit id =" 16" >
66
66
<source >The file is too large ({{ size }}). Allowed maximum size is {{ limit }}</source >
67
- <target >Die Datei ist zu groß ({{ size }}). Die maximal zugelassene Größe beträgt {{ limit }}</target >
67
+ <target >Die Datei ist zu groß ({{ size }}). Die maximal zulässige Größe beträgt {{ limit }}</target >
68
68
</trans-unit >
69
69
<trans-unit id =" 17" >
70
70
<source >The mime type of the file is invalid ({{ type }}). Allowed mime types are {{ types }}</source >
128
128
</trans-unit >
129
129
<trans-unit id =" 32" >
130
130
<source >The file is too large. Allowed maximum size is {{ limit }}</source >
131
- <target >Die Datei ist zu groß. Die maximal zugelassene Größe beträgt {{ limit }}</target >
131
+ <target >Die Datei ist zu groß. Die maximal zulässige Größe beträgt {{ limit }}</target >
132
132
</trans-unit >
133
133
<trans-unit id =" 33" >
134
134
<source >The file is too large</source >
166
166
<source >This value is already used</source >
167
167
<target >Dieser Wert wird bereits verwendet</target >
168
168
</trans-unit >
169
+ <trans-unit id =" 42" >
170
+ <source >The size of the image could not be detected</source >
171
+ <target >Die Größe des Bildes konnte nicht ermittlet werden</target >
172
+ </trans-unit >
173
+ <trans-unit id =" 43" >
174
+ <source >The image width is too big ({{ width }}px). Allowed maximum width is {{ max_width }}px</source >
175
+ <target >Die Bildbreite ist zu groß ({{ width }}px). Die maximal zulässige Breite beträgt {{ max_width }}px</target >
176
+ </trans-unit >
177
+ <trans-unit id =" 44" >
178
+ <source >The image width is too small ({{ width }}px). Minimum width expected is {{ min_width }}px</source >
179
+ <target >Die Bildbreite ist zu gering ({{ width }}px). Die erwartete Mindestbreite beträgt {{ min_width }}px</target >
180
+ </trans-unit >
181
+ <trans-unit id =" 45" >
182
+ <source >The image height is too big ({{ height }}px). Allowed maximum height is {{ max_height }}px</source >
183
+ <target >Die Bildhöhe ist zu groß ({{ height }}px). Die maximal zulässige Höhe beträgt {{ max_height }}px</target >
184
+ </trans-unit >
185
+ <trans-unit id =" 46" >
186
+ <source >The image height is too small ({{ height }}px). Minimum height expected is {{ min_height }}px</source >
187
+ <target >Die Bildhöhe ist zu gering ({{ height }}px). Die erwartete Mindesthöhe beträgt {{ min_height }}px</target >
188
+ </trans-unit >
169
189
</body >
170
190
</file >
171
191
</xliff >
Original file line number Diff line number Diff line change @@ -28,6 +28,6 @@ class Image extends File
28
28
public $ sizeNotDetectedMessage = 'The size of the image could not be detected ' ;
29
29
public $ maxWidthMessage = 'The image width is too big ({{ width }}px). Allowed maximum width is {{ max_width }}px ' ;
30
30
public $ minWidthMessage = 'The image width is too small ({{ width }}px). Minimum width expected is {{ min_width }}px ' ;
31
- public $ maxHeightMessage = 'The image height is too big ({{ height }}px). Allowed maximum width is {{ max_height }}px ' ;
32
- public $ minHeightMessage = 'The image width is too small ({{ height }}px). Minimum height expected is {{ min_height }}px ' ;
31
+ public $ maxHeightMessage = 'The image height is too big ({{ height }}px). Allowed maximum height is {{ max_height }}px ' ;
32
+ public $ minHeightMessage = 'The image height is too small ({{ height }}px). Minimum height expected is {{ min_height }}px ' ;
33
33
}
You can’t perform that action at this time.
0 commit comments