forked from l20n/lol-fixtures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mixed.lol
73 lines (67 loc) · 1.98 KB
/
mixed.lol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<brandName {
*nom: "Aurora",
gen: "Aurory",
dat: "Aurorze",
acc: "Aurorę",
ins: "Aurorą",
loc: "Aurorze",
voc: "Auroro"
}
_gender: "feminine"
>
/* Firefox/Aurora has been updated */
<updated[brandName::_gender] {
masculine: "{{ brandName }} został zaktualizowany.",
feminine: "{{ brandName }} została zaktualizowana."
}>
<plural($n) { $n == 1 ?
'one' :
$n % 10 >= 2 &&
$n % 10 <= 4 &&
($n % 100 < 10 || $n % 100 >= 20) ?
'few' :
'many' }>
<message {
one: {
*nom: "wiadomość",
gen: "wiadomości",
dat: "wiadomości",
acc: "wiadomość",
ins: "wiadomością",
loc: "wiadomości",
voc: "wiadomości"
},
*many: {
*nom: "wiadomości",
gen: "wiadomości",
dat: "wiadomościom",
acc: "wiadomości",
ins: "wiadomościami",
loc: "wiadomościach",
voc: "wiadomości"
}
}
_gender: "feminine"
>
/* You have X unread messages */
<unreadMessages[plural($unreadCount)] {
one: "Masz 1 nową {{ message[plural($unreadCount)].acc }}",
few: "Masz {{ $unreadCount }} nowe {{ message[plural($unreadCount)].acc }}",
many: "Masz {{ $unreadCount }} nowych {{ message[plural($unreadCount)].acc }}"
}>
<pluralZero($n) { $n == 0 ?
'zero' :
$n == 1 ?
'one' :
$n % 10 >= 2 &&
$n % 10 <= 4 &&
($n % 100 < 10 || $n % 100 >= 20) ?
'few' :
'many' }>
/* For the zero case: You don't have any new messages */
<unreadMessagesZero[pluralZero($unreadCount)] {
zero: "Nie masz nowych {{ message[pluralZero($unreadCount)].acc }}",
one: "Masz 1 nową {{ message[pluralZero($unreadCount)].acc }}",
few: "Masz {{ $unreadCount }} nowe {{ message[pluralZero($unreadCount)].acc }}",
*many: "Masz {{ $unreadCount }} nowych {{ message[pluralZero($unreadCount)].acc }}"
}>