File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ handle pluralization in your messages (e.g. ``There are 3 apples`` vs
223
223
num_of_apples : >-
224
224
{apples, plural,
225
225
=0 {There are no apples}
226
- one {There is one apple...}
226
+ =1 {There is one apple...}
227
227
other {There are # apples!}
228
228
}
229
229
@@ -236,7 +236,7 @@ handle pluralization in your messages (e.g. ``There are 3 apples`` vs
236
236
<body >
237
237
<trans-unit id =" num_of_apples" >
238
238
<source >num_of_apples</source >
239
- <target >{apples, plural, =0 {There are no apples} one {There is one apple...} other {There are # apples!}}</target >
239
+ <target >{apples, plural, =0 {There are no apples} =1 {There is one apple...} other {There are # apples!}}</target >
240
240
</trans-unit >
241
241
</body >
242
242
</file >
@@ -248,7 +248,7 @@ handle pluralization in your messages (e.g. ``There are 3 apples`` vs
248
248
return [
249
249
'num_of_apples' => '{apples, plural,
250
250
=0 {There are no apples}
251
- one {There is one apple...}
251
+ =1 {There is one apple...}
252
252
other {There are # apples!}
253
253
}',
254
254
];
You can’t perform that action at this time.
0 commit comments