@glissandoo/lib 1.24.0 → 1.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/functions/index.d.ts +1 -0
- package/functions/index.js +1 -0
- package/functions/regions.js +1 -0
- package/helpers/instruments/index.d.ts +13 -0
- package/helpers/instruments/index.js +27 -1
- package/helpers/musicStyles/index.d.ts +2 -1
- package/helpers/musicStyles/index.js +9 -0
- package/helpers/musicStyles/orders.js +11 -0
- package/lang/ca.json +14 -0
- package/lang/de.json +14 -0
- package/lang/en.json +14 -0
- package/lang/es.json +15 -1
- package/lang/eu.json +14 -0
- package/lang/gl.json +14 -0
- package/lang/index.d.ts +98 -0
- package/lang/pt.json +14 -0
- package/package.json +1 -1
package/functions/index.d.ts
CHANGED
|
@@ -100,6 +100,7 @@ export declare enum FbFunctionName {
|
|
|
100
100
|
ReminderEvening = "reminder-evening",
|
|
101
101
|
ReminderMorning = "reminder-morning",
|
|
102
102
|
ReminderRollCall = "reminder-rollCall",
|
|
103
|
+
ReminderBiweeklyEventsEmail = "reminder-biweeklyEventsEmail",
|
|
103
104
|
SubscriptionAdd = "subscription-add",
|
|
104
105
|
SubscriptionCancel = "subscription-cancel",
|
|
105
106
|
SubscriptionPaymentSchedule = "subscription-paymentSchedule",
|
package/functions/index.js
CHANGED
|
@@ -104,6 +104,7 @@ var FbFunctionName;
|
|
|
104
104
|
FbFunctionName["ReminderEvening"] = "reminder-evening";
|
|
105
105
|
FbFunctionName["ReminderMorning"] = "reminder-morning";
|
|
106
106
|
FbFunctionName["ReminderRollCall"] = "reminder-rollCall";
|
|
107
|
+
FbFunctionName["ReminderBiweeklyEventsEmail"] = "reminder-biweeklyEventsEmail";
|
|
107
108
|
FbFunctionName["SubscriptionAdd"] = "subscription-add";
|
|
108
109
|
FbFunctionName["SubscriptionCancel"] = "subscription-cancel";
|
|
109
110
|
FbFunctionName["SubscriptionPaymentSchedule"] = "subscription-paymentSchedule";
|
package/functions/regions.js
CHANGED
|
@@ -119,6 +119,7 @@ const regionByFunctions = {
|
|
|
119
119
|
[index_1.FbFunctionName.ReminderEvening]: GCloudRegions.EuropeWest1,
|
|
120
120
|
[index_1.FbFunctionName.ReminderMorning]: GCloudRegions.EuropeWest1,
|
|
121
121
|
[index_1.FbFunctionName.ReminderRollCall]: GCloudRegions.EuropeWest1,
|
|
122
|
+
[index_1.FbFunctionName.ReminderBiweeklyEventsEmail]: GCloudRegions.EuropeWest6,
|
|
122
123
|
[index_1.FbFunctionName.SubscriptionPaymentSchedule]: GCloudRegions.EuropeWest6,
|
|
123
124
|
[index_1.FbFunctionName.WebhookLemonway]: GCloudRegions.EuropeWest6,
|
|
124
125
|
[index_1.FbFunctionName.WebhookStripe]: GCloudRegions.EuropeWest6,
|
|
@@ -2,6 +2,7 @@ import { LanguagesTypes } from '../../lang';
|
|
|
2
2
|
import Instrument from '../../models/Instrument';
|
|
3
3
|
export declare enum InstrumentId {
|
|
4
4
|
Accordion = "accordion",
|
|
5
|
+
Agogo = "agogo",
|
|
5
6
|
Bandurria = "bandurria",
|
|
6
7
|
Bagpipes = "bagpipes",
|
|
7
8
|
Banjo = "banjo",
|
|
@@ -15,6 +16,7 @@ export declare enum InstrumentId {
|
|
|
15
16
|
Castanets = "castanets",
|
|
16
17
|
Cello = "cello",
|
|
17
18
|
Choir = "choir",
|
|
19
|
+
Chocalho = "chocalho",
|
|
18
20
|
Clarinet = "clarinet",
|
|
19
21
|
ClarinetAlto = "altoClarinet",
|
|
20
22
|
ClarinetBass = "bassClarinet",
|
|
@@ -32,23 +34,30 @@ export declare enum InstrumentId {
|
|
|
32
34
|
ElectricGuitar = "electricGuitar",
|
|
33
35
|
EnglishHorn = "englishHorn",
|
|
34
36
|
Euphonium = "euphonium",
|
|
37
|
+
Flabiol = "flabiol",
|
|
35
38
|
FlugeHorn = "flugelhorn",
|
|
36
39
|
Flute = "flute",
|
|
37
40
|
FluteLow = "low-flute",
|
|
41
|
+
FlutePeak = "peak-flute",
|
|
38
42
|
FrenchHorn = "frenchHorn",
|
|
39
43
|
Guitar = "guitar",
|
|
40
44
|
Harmonica = "harmonica",
|
|
45
|
+
Harpsichord = "harpsichord",
|
|
41
46
|
Harp = "harp",
|
|
42
47
|
Keyboard = "keyboard",
|
|
43
48
|
Lute = "lute",
|
|
49
|
+
Maracas = "maracas",
|
|
50
|
+
MarchingToms = "marchingToms",
|
|
44
51
|
Mallets = "mallets",
|
|
45
52
|
Mandoline = "mandoline",
|
|
53
|
+
Melodica = "melodica",
|
|
46
54
|
MezzoSoprano = "mezzosoproano",
|
|
47
55
|
MusicConductor = "musicConductor",
|
|
48
56
|
Oboe = "oboe",
|
|
49
57
|
Percussion = "percussion",
|
|
50
58
|
Piano = "piano",
|
|
51
59
|
Piccolo = "piccolo",
|
|
60
|
+
Repique = "repique",
|
|
52
61
|
SaxAlto = "altoSaxophone",
|
|
53
62
|
SaxBaritone = "baritoneSax",
|
|
54
63
|
SaxLow = "lowSaxophone",
|
|
@@ -58,9 +67,13 @@ export declare enum InstrumentId {
|
|
|
58
67
|
Singer = "singer",
|
|
59
68
|
SnareDrum = "snareDrum",
|
|
60
69
|
Soprano = "soprano",
|
|
70
|
+
Surdo = "surdo",
|
|
61
71
|
Tabal = "tabal",
|
|
72
|
+
Tambourine = "tambourine",
|
|
73
|
+
TambourineBrazilian = "tambourineBrazilian",
|
|
62
74
|
Tarota = "tarota",
|
|
63
75
|
Tenor = "tenor",
|
|
76
|
+
TimbalBrazilian = "timbalBrazilian",
|
|
64
77
|
Timpani = "timpani",
|
|
65
78
|
Trombone = "trombone",
|
|
66
79
|
TromboneHigh = "highTrombone",
|
|
@@ -8,6 +8,7 @@ const Instrument_1 = __importDefault(require("../../models/Instrument"));
|
|
|
8
8
|
var InstrumentId;
|
|
9
9
|
(function (InstrumentId) {
|
|
10
10
|
InstrumentId["Accordion"] = "accordion";
|
|
11
|
+
InstrumentId["Agogo"] = "agogo";
|
|
11
12
|
InstrumentId["Bandurria"] = "bandurria";
|
|
12
13
|
InstrumentId["Bagpipes"] = "bagpipes";
|
|
13
14
|
InstrumentId["Banjo"] = "banjo";
|
|
@@ -21,6 +22,7 @@ var InstrumentId;
|
|
|
21
22
|
InstrumentId["Castanets"] = "castanets";
|
|
22
23
|
InstrumentId["Cello"] = "cello";
|
|
23
24
|
InstrumentId["Choir"] = "choir";
|
|
25
|
+
InstrumentId["Chocalho"] = "chocalho";
|
|
24
26
|
InstrumentId["Clarinet"] = "clarinet";
|
|
25
27
|
InstrumentId["ClarinetAlto"] = "altoClarinet";
|
|
26
28
|
InstrumentId["ClarinetBass"] = "bassClarinet";
|
|
@@ -38,23 +40,30 @@ var InstrumentId;
|
|
|
38
40
|
InstrumentId["ElectricGuitar"] = "electricGuitar";
|
|
39
41
|
InstrumentId["EnglishHorn"] = "englishHorn";
|
|
40
42
|
InstrumentId["Euphonium"] = "euphonium";
|
|
43
|
+
InstrumentId["Flabiol"] = "flabiol";
|
|
41
44
|
InstrumentId["FlugeHorn"] = "flugelhorn";
|
|
42
45
|
InstrumentId["Flute"] = "flute";
|
|
43
46
|
InstrumentId["FluteLow"] = "low-flute";
|
|
47
|
+
InstrumentId["FlutePeak"] = "peak-flute";
|
|
44
48
|
InstrumentId["FrenchHorn"] = "frenchHorn";
|
|
45
49
|
InstrumentId["Guitar"] = "guitar";
|
|
46
50
|
InstrumentId["Harmonica"] = "harmonica";
|
|
51
|
+
InstrumentId["Harpsichord"] = "harpsichord";
|
|
47
52
|
InstrumentId["Harp"] = "harp";
|
|
48
53
|
InstrumentId["Keyboard"] = "keyboard";
|
|
49
54
|
InstrumentId["Lute"] = "lute";
|
|
55
|
+
InstrumentId["Maracas"] = "maracas";
|
|
56
|
+
InstrumentId["MarchingToms"] = "marchingToms";
|
|
50
57
|
InstrumentId["Mallets"] = "mallets";
|
|
51
58
|
InstrumentId["Mandoline"] = "mandoline";
|
|
59
|
+
InstrumentId["Melodica"] = "melodica";
|
|
52
60
|
InstrumentId["MezzoSoprano"] = "mezzosoproano";
|
|
53
61
|
InstrumentId["MusicConductor"] = "musicConductor";
|
|
54
62
|
InstrumentId["Oboe"] = "oboe";
|
|
55
63
|
InstrumentId["Percussion"] = "percussion";
|
|
56
64
|
InstrumentId["Piano"] = "piano";
|
|
57
65
|
InstrumentId["Piccolo"] = "piccolo";
|
|
66
|
+
InstrumentId["Repique"] = "repique";
|
|
58
67
|
InstrumentId["SaxAlto"] = "altoSaxophone";
|
|
59
68
|
InstrumentId["SaxBaritone"] = "baritoneSax";
|
|
60
69
|
InstrumentId["SaxLow"] = "lowSaxophone";
|
|
@@ -64,9 +73,13 @@ var InstrumentId;
|
|
|
64
73
|
InstrumentId["Singer"] = "singer";
|
|
65
74
|
InstrumentId["SnareDrum"] = "snareDrum";
|
|
66
75
|
InstrumentId["Soprano"] = "soprano";
|
|
76
|
+
InstrumentId["Surdo"] = "surdo";
|
|
67
77
|
InstrumentId["Tabal"] = "tabal";
|
|
78
|
+
InstrumentId["Tambourine"] = "tambourine";
|
|
79
|
+
InstrumentId["TambourineBrazilian"] = "tambourineBrazilian";
|
|
68
80
|
InstrumentId["Tarota"] = "tarota";
|
|
69
81
|
InstrumentId["Tenor"] = "tenor";
|
|
82
|
+
InstrumentId["TimbalBrazilian"] = "timbalBrazilian";
|
|
70
83
|
InstrumentId["Timpani"] = "timpani";
|
|
71
84
|
InstrumentId["Trombone"] = "trombone";
|
|
72
85
|
InstrumentId["TromboneHigh"] = "highTrombone";
|
|
@@ -83,6 +96,7 @@ var InstrumentId;
|
|
|
83
96
|
})(InstrumentId = exports.InstrumentId || (exports.InstrumentId = {}));
|
|
84
97
|
exports.InstrumentIcons = {
|
|
85
98
|
[InstrumentId.Accordion]: 'accordion',
|
|
99
|
+
[InstrumentId.Agogo]: 'agogo',
|
|
86
100
|
[InstrumentId.Bandurria]: 'bandurria',
|
|
87
101
|
[InstrumentId.Bagpipes]: 'bagpipes',
|
|
88
102
|
[InstrumentId.Banjo]: 'banjo',
|
|
@@ -96,6 +110,7 @@ exports.InstrumentIcons = {
|
|
|
96
110
|
[InstrumentId.Cajon]: 'cajon',
|
|
97
111
|
[InstrumentId.Cello]: 'cello',
|
|
98
112
|
[InstrumentId.Choir]: 'choirMen',
|
|
113
|
+
[InstrumentId.Chocalho]: 'chocalho',
|
|
99
114
|
[InstrumentId.ClarinetBass]: 'bassClarinet',
|
|
100
115
|
[InstrumentId.ClarinetAlto]: 'bassClarinet',
|
|
101
116
|
[InstrumentId.ClarinetContrabass]: 'contrabassClarinet',
|
|
@@ -113,23 +128,30 @@ exports.InstrumentIcons = {
|
|
|
113
128
|
[InstrumentId.ElectricGuitar]: 'guitarElectric',
|
|
114
129
|
[InstrumentId.EnglishHorn]: 'clarinet',
|
|
115
130
|
[InstrumentId.Euphonium]: 'tuba',
|
|
131
|
+
[InstrumentId.Flabiol]: 'flabiol',
|
|
116
132
|
[InstrumentId.FlugeHorn]: 'trumpet',
|
|
117
133
|
[InstrumentId.FluteLow]: 'flute',
|
|
118
134
|
[InstrumentId.Flute]: 'flute',
|
|
135
|
+
[InstrumentId.FlutePeak]: 'fluteWood',
|
|
119
136
|
[InstrumentId.FrenchHorn]: 'frenchHorn',
|
|
120
137
|
[InstrumentId.Guitar]: 'guitar',
|
|
121
138
|
[InstrumentId.Harmonica]: 'harmonica',
|
|
122
139
|
[InstrumentId.Harp]: 'harp',
|
|
140
|
+
[InstrumentId.Harpsichord]: 'harpsichord',
|
|
123
141
|
[InstrumentId.Keyboard]: 'piano',
|
|
124
142
|
[InstrumentId.Lute]: 'lute',
|
|
125
143
|
[InstrumentId.Mallets]: 'xylophone',
|
|
144
|
+
[InstrumentId.Maracas]: 'maracas',
|
|
145
|
+
[InstrumentId.MarchingToms]: 'marchingDrums',
|
|
126
146
|
[InstrumentId.Mandoline]: 'mandoline',
|
|
127
147
|
[InstrumentId.MezzoSoprano]: 'choirWomen',
|
|
148
|
+
[InstrumentId.Melodica]: 'melodica',
|
|
128
149
|
[InstrumentId.MusicConductor]: 'bandmastersMace',
|
|
129
150
|
[InstrumentId.Oboe]: 'oboe',
|
|
130
151
|
[InstrumentId.Percussion]: 'drumSnare',
|
|
131
152
|
[InstrumentId.Piano]: 'pianoClassic',
|
|
132
153
|
[InstrumentId.Piccolo]: 'piccolo',
|
|
154
|
+
[InstrumentId.Repique]: 'repique',
|
|
133
155
|
[InstrumentId.SaxAlto]: 'saxophone',
|
|
134
156
|
[InstrumentId.SaxBaritone]: 'saxophoneHigh',
|
|
135
157
|
[InstrumentId.SaxLow]: 'saxophoneHigh',
|
|
@@ -139,9 +161,13 @@ exports.InstrumentIcons = {
|
|
|
139
161
|
[InstrumentId.Singer]: 'microphone',
|
|
140
162
|
[InstrumentId.SnareDrum]: 'drumSnare',
|
|
141
163
|
[InstrumentId.Soprano]: 'choirWomen',
|
|
142
|
-
[InstrumentId.
|
|
164
|
+
[InstrumentId.Surdo]: 'surdo',
|
|
143
165
|
[InstrumentId.Tabal]: 'tabal',
|
|
166
|
+
[InstrumentId.Tambourine]: 'tambourine',
|
|
167
|
+
[InstrumentId.TambourineBrazilian]: 'tambourineBrazilian',
|
|
168
|
+
[InstrumentId.Tarota]: 'dulzaina',
|
|
144
169
|
[InstrumentId.Tenor]: 'choirMen',
|
|
170
|
+
[InstrumentId.TimbalBrazilian]: 'timbalBrazilian',
|
|
145
171
|
[InstrumentId.TromboneHigh]: 'trombone',
|
|
146
172
|
[InstrumentId.TromboneLow]: 'trombone',
|
|
147
173
|
[InstrumentId.Trombone]: 'trombone',
|
|
@@ -10,7 +10,8 @@ export declare enum MusicStyleId {
|
|
|
10
10
|
TxistularisBand = "txistularis",
|
|
11
11
|
BandaCornetasYTambores = "banda-cornetas-y-tambores",
|
|
12
12
|
Charanga = "charanga",
|
|
13
|
-
Choir = "coro"
|
|
13
|
+
Choir = "coro",
|
|
14
|
+
Batucada = "batucada"
|
|
14
15
|
}
|
|
15
16
|
export declare const MusicStylesCover: Record<MusicStyleId, string>;
|
|
16
17
|
export type MusicStyleType = MusicStyleId | string;
|
|
@@ -18,6 +18,7 @@ var MusicStyleId;
|
|
|
18
18
|
MusicStyleId["BandaCornetasYTambores"] = "banda-cornetas-y-tambores";
|
|
19
19
|
MusicStyleId["Charanga"] = "charanga";
|
|
20
20
|
MusicStyleId["Choir"] = "coro";
|
|
21
|
+
MusicStyleId["Batucada"] = "batucada";
|
|
21
22
|
})(MusicStyleId = exports.MusicStyleId || (exports.MusicStyleId = {}));
|
|
22
23
|
exports.MusicStylesCover = {
|
|
23
24
|
[MusicStyleId.Orchestra]: 'orquestra',
|
|
@@ -30,6 +31,7 @@ exports.MusicStylesCover = {
|
|
|
30
31
|
[MusicStyleId.BandaCornetasYTambores]: 'bandaDeCornetaYTambores',
|
|
31
32
|
[MusicStyleId.Charanga]: 'charanga',
|
|
32
33
|
[MusicStyleId.Choir]: 'choir',
|
|
34
|
+
[MusicStyleId.Batucada]: 'batucada',
|
|
33
35
|
};
|
|
34
36
|
exports.musicStyleByCountry = {
|
|
35
37
|
[lang_1.LanguagesTypes.EN]: [
|
|
@@ -39,6 +41,7 @@ exports.musicStyleByCountry = {
|
|
|
39
41
|
MusicStyleId.BigBand,
|
|
40
42
|
MusicStyleId.JazzBand,
|
|
41
43
|
MusicStyleId.Choir,
|
|
44
|
+
MusicStyleId.Batucada,
|
|
42
45
|
],
|
|
43
46
|
[lang_1.LanguagesTypes.DE]: [
|
|
44
47
|
MusicStyleId.Orchestra,
|
|
@@ -47,6 +50,7 @@ exports.musicStyleByCountry = {
|
|
|
47
50
|
MusicStyleId.BigBand,
|
|
48
51
|
MusicStyleId.JazzBand,
|
|
49
52
|
MusicStyleId.Choir,
|
|
53
|
+
MusicStyleId.Batucada,
|
|
50
54
|
],
|
|
51
55
|
[lang_1.LanguagesTypes.ES]: [
|
|
52
56
|
MusicStyleId.Orchestra,
|
|
@@ -58,6 +62,7 @@ exports.musicStyleByCountry = {
|
|
|
58
62
|
MusicStyleId.Colla,
|
|
59
63
|
MusicStyleId.BandaCornetasYTambores,
|
|
60
64
|
MusicStyleId.Choir,
|
|
65
|
+
MusicStyleId.Batucada,
|
|
61
66
|
],
|
|
62
67
|
[lang_1.LanguagesTypes.EU]: [
|
|
63
68
|
MusicStyleId.Choir,
|
|
@@ -67,6 +72,7 @@ exports.musicStyleByCountry = {
|
|
|
67
72
|
MusicStyleId.Charanga,
|
|
68
73
|
MusicStyleId.BigBand,
|
|
69
74
|
MusicStyleId.JazzBand,
|
|
75
|
+
MusicStyleId.Batucada,
|
|
70
76
|
],
|
|
71
77
|
[lang_1.LanguagesTypes.GL]: [
|
|
72
78
|
MusicStyleId.Orchestra,
|
|
@@ -77,6 +83,7 @@ exports.musicStyleByCountry = {
|
|
|
77
83
|
MusicStyleId.Charanga,
|
|
78
84
|
MusicStyleId.BandaCornetasYTambores,
|
|
79
85
|
MusicStyleId.Choir,
|
|
86
|
+
MusicStyleId.Batucada,
|
|
80
87
|
],
|
|
81
88
|
[lang_1.LanguagesTypes.CA]: [
|
|
82
89
|
MusicStyleId.Orchestra,
|
|
@@ -87,6 +94,7 @@ exports.musicStyleByCountry = {
|
|
|
87
94
|
MusicStyleId.Colla,
|
|
88
95
|
MusicStyleId.BandaCornetasYTambores,
|
|
89
96
|
MusicStyleId.Choir,
|
|
97
|
+
MusicStyleId.Batucada,
|
|
90
98
|
],
|
|
91
99
|
[lang_1.LanguagesTypes.PT]: [
|
|
92
100
|
MusicStyleId.Orchestra,
|
|
@@ -94,6 +102,7 @@ exports.musicStyleByCountry = {
|
|
|
94
102
|
MusicStyleId.BigBand,
|
|
95
103
|
MusicStyleId.JazzBand,
|
|
96
104
|
MusicStyleId.Choir,
|
|
105
|
+
MusicStyleId.Batucada,
|
|
97
106
|
],
|
|
98
107
|
};
|
|
99
108
|
const list = (lang, filteredByCountry = false) => {
|
|
@@ -52,6 +52,7 @@ exports.orders = {
|
|
|
52
52
|
instruments_1.InstrumentId.Euphonium,
|
|
53
53
|
instruments_1.InstrumentId.Tuba,
|
|
54
54
|
instruments_1.InstrumentId.SnareDrum,
|
|
55
|
+
instruments_1.InstrumentId.MarchingToms,
|
|
55
56
|
instruments_1.InstrumentId.BassDrum,
|
|
56
57
|
instruments_1.InstrumentId.Cymbals,
|
|
57
58
|
instruments_1.InstrumentId.Timpani,
|
|
@@ -158,6 +159,7 @@ exports.orders = {
|
|
|
158
159
|
instruments_1.InstrumentId.Percussion,
|
|
159
160
|
instruments_1.InstrumentId.SnareDrum,
|
|
160
161
|
instruments_1.InstrumentId.BassDrum,
|
|
162
|
+
instruments_1.InstrumentId.MarchingToms,
|
|
161
163
|
instruments_1.InstrumentId.Cymbals,
|
|
162
164
|
],
|
|
163
165
|
[index_1.MusicStyleId.BandaCornetasYTambores]: [
|
|
@@ -181,6 +183,15 @@ exports.orders = {
|
|
|
181
183
|
instruments_1.InstrumentId.Percussion,
|
|
182
184
|
instruments_1.InstrumentId.DrumSet,
|
|
183
185
|
],
|
|
186
|
+
[index_1.MusicStyleId.Batucada]: [
|
|
187
|
+
instruments_1.InstrumentId.Repique,
|
|
188
|
+
instruments_1.InstrumentId.TambourineBrazilian,
|
|
189
|
+
instruments_1.InstrumentId.TimbalBrazilian,
|
|
190
|
+
instruments_1.InstrumentId.SnareDrum,
|
|
191
|
+
instruments_1.InstrumentId.Surdo,
|
|
192
|
+
instruments_1.InstrumentId.Agogo,
|
|
193
|
+
instruments_1.InstrumentId.Chocalho,
|
|
194
|
+
],
|
|
184
195
|
};
|
|
185
196
|
const getInstrumentsOrderByMusicStyle = (musicStyle) => {
|
|
186
197
|
return musicStyle in exports.orders ? exports.orders[musicStyle] : Object.values(instruments_1.InstrumentId);
|
package/lang/ca.json
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"group.players.remove.text": "Ja no formes part de {string:group.0.displayName}",
|
|
32
32
|
"group.players.remove.title": "Grup suprimit",
|
|
33
33
|
"instruments.accordion": "Acordió",
|
|
34
|
+
"instruments.agogo": "Agogó",
|
|
34
35
|
"instruments.altoClarinet": "Clarinet Alt",
|
|
35
36
|
"instruments.altoSaxophone": "Saxofó alt",
|
|
36
37
|
"instruments.bagpipes": "Sac de gemecs",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"instruments.cajon": "Caixó",
|
|
47
48
|
"instruments.castanets": "Castanyoles",
|
|
48
49
|
"instruments.cello": "Violoncel",
|
|
50
|
+
"instruments.chocalho": "Chocalho",
|
|
49
51
|
"instruments.choir": "Cor",
|
|
50
52
|
"instruments.clarinet": "Clarinet",
|
|
51
53
|
"instruments.contraAlto": "Contralt",
|
|
@@ -62,12 +64,14 @@
|
|
|
62
64
|
"instruments.electricGuitar": "Guitarra elèctrica",
|
|
63
65
|
"instruments.englishHorn": "Corn anglès",
|
|
64
66
|
"instruments.euphonium": "Bombardí",
|
|
67
|
+
"instruments.flabiol": "Flabiol",
|
|
65
68
|
"instruments.flugelhorn": "Fiscorn",
|
|
66
69
|
"instruments.flute": "Flauta",
|
|
67
70
|
"instruments.frenchHorn": "Trompa",
|
|
68
71
|
"instruments.guitar": "Guitarra",
|
|
69
72
|
"instruments.harmonica": "Harmònica",
|
|
70
73
|
"instruments.harp": "Arpa",
|
|
74
|
+
"instruments.harpsichord": "Clavicèmbal",
|
|
71
75
|
"instruments.highTrombone": "Trombó alt",
|
|
72
76
|
"instruments.keyboard": "Teclats",
|
|
73
77
|
"instruments.littleClarinet": "Requinto",
|
|
@@ -78,22 +82,31 @@
|
|
|
78
82
|
"instruments.lute": "Llaüt",
|
|
79
83
|
"instruments.mallets": "Làmines",
|
|
80
84
|
"instruments.mandoline": "Mandolina",
|
|
85
|
+
"instruments.maracas": "Maraques",
|
|
86
|
+
"instruments.marchingToms": "Toms de marxa",
|
|
87
|
+
"instruments.melodica": "Melódica",
|
|
81
88
|
"instruments.mezzosoproano": "Mezzosoprano",
|
|
82
89
|
"instruments.musicConductor": "Direccció Musical",
|
|
83
90
|
"instruments.oboe": "Oboè",
|
|
91
|
+
"instruments.peak-flute": "Flauta de bec",
|
|
84
92
|
"instruments.percussion": "Percussió",
|
|
85
93
|
"instruments.piano": "Piano",
|
|
86
94
|
"instruments.piccolo": "Flautí",
|
|
87
95
|
"instruments.piccoloTrumpet": "Trompeta piccolo",
|
|
96
|
+
"instruments.repique": "Repique",
|
|
88
97
|
"instruments.silbote": "Xiulet",
|
|
89
98
|
"instruments.singer": "Cantant",
|
|
90
99
|
"instruments.snareDrum": "Caixa",
|
|
91
100
|
"instruments.soprano": "Soprano",
|
|
92
101
|
"instruments.sopranoSaxophone": "Saxofó soprano",
|
|
102
|
+
"instruments.surdo": "Surdo",
|
|
93
103
|
"instruments.tabal": "Tabal",
|
|
104
|
+
"instruments.tambourine": "Pandereta",
|
|
105
|
+
"instruments.tambourineBrazilian": "Tamborín",
|
|
94
106
|
"instruments.tarota": "Tarota",
|
|
95
107
|
"instruments.tenor": "Tenor",
|
|
96
108
|
"instruments.tenorSax": "Saxofó tenor",
|
|
109
|
+
"instruments.timbalBrazilian": "Timbal",
|
|
97
110
|
"instruments.timpani": "Timbals",
|
|
98
111
|
"instruments.trombone": "Trombó",
|
|
99
112
|
"instruments.trumpet": "Trompeta",
|
|
@@ -105,6 +118,7 @@
|
|
|
105
118
|
"instruments.violin": "Violí",
|
|
106
119
|
"musicStyles.banda-cornetas-y-tambores": "Banda de cornetes i tambors",
|
|
107
120
|
"musicStyles.banda-de-musica": "Banda de música",
|
|
121
|
+
"musicStyles.batucada": "Batucada",
|
|
108
122
|
"musicStyles.big-band": "Big band",
|
|
109
123
|
"musicStyles.charanga": "Xaranga",
|
|
110
124
|
"musicStyles.colla": "Colla",
|
package/lang/de.json
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"group.players.remove.text": "Du bist nicht mehr Teil von {string:group.0.displayName}",
|
|
32
32
|
"group.players.remove.title": "Gruppe löschen",
|
|
33
33
|
"instruments.accordion": "Akkordeon",
|
|
34
|
+
"instruments.agogo": "Agogo",
|
|
34
35
|
"instruments.altoClarinet": "Alt-Klarinette",
|
|
35
36
|
"instruments.altoSaxophone": "Altsaxophon",
|
|
36
37
|
"instruments.bagpipes": "Dudelsack",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"instruments.cajon": "Cajon",
|
|
47
48
|
"instruments.castanets": "Kastagnetten",
|
|
48
49
|
"instruments.cello": "Violoncello",
|
|
50
|
+
"instruments.chocalho": "Chocalho",
|
|
49
51
|
"instruments.choir": "Chor",
|
|
50
52
|
"instruments.clarinet": "Klarinette",
|
|
51
53
|
"instruments.contraAlto": "Altstimme",
|
|
@@ -62,12 +64,14 @@
|
|
|
62
64
|
"instruments.electricGuitar": "Elektrische Gitarre",
|
|
63
65
|
"instruments.englishHorn": "Englischhorn",
|
|
64
66
|
"instruments.euphonium": "Euphonium",
|
|
67
|
+
"instruments.flabiol": "Flabiol",
|
|
65
68
|
"instruments.flugelhorn": "Flügelhorn",
|
|
66
69
|
"instruments.flute": "Flöte",
|
|
67
70
|
"instruments.frenchHorn": "Horn",
|
|
68
71
|
"instruments.guitar": "Gitarre",
|
|
69
72
|
"instruments.harmonica": "Mundharmonika",
|
|
70
73
|
"instruments.harp": "Harfe",
|
|
74
|
+
"instruments.harpsichord": "Cembalo",
|
|
71
75
|
"instruments.highTrombone": "Altposaune",
|
|
72
76
|
"instruments.keyboard": "Keyboarder",
|
|
73
77
|
"instruments.littleClarinet": "Quartklarinette",
|
|
@@ -78,22 +82,31 @@
|
|
|
78
82
|
"instruments.lute": "Laute",
|
|
79
83
|
"instruments.mallets": "Stabspiel",
|
|
80
84
|
"instruments.mandoline": "Mandoline",
|
|
85
|
+
"instruments.maracas": "Maracas",
|
|
86
|
+
"instruments.marchingToms": "Marschierende Toms",
|
|
87
|
+
"instruments.melodica": "Melodica",
|
|
81
88
|
"instruments.mezzosoproano": "Mezzosopran",
|
|
82
89
|
"instruments.musicConductor": "Dirigent",
|
|
83
90
|
"instruments.oboe": "Oboe",
|
|
91
|
+
"instruments.peak-flute": "Peak Flöte",
|
|
84
92
|
"instruments.percussion": "Perkussion",
|
|
85
93
|
"instruments.piano": "Klavier",
|
|
86
94
|
"instruments.piccolo": "Pikkoloflöte",
|
|
87
95
|
"instruments.piccoloTrumpet": "Piccolo-Trompete",
|
|
96
|
+
"instruments.repique": "Repique",
|
|
88
97
|
"instruments.silbote": "Pfeife",
|
|
89
98
|
"instruments.singer": "Sänger",
|
|
90
99
|
"instruments.snareDrum": "Snaredrum",
|
|
91
100
|
"instruments.soprano": "Sopran",
|
|
92
101
|
"instruments.sopranoSaxophone": "Sopransaxophon",
|
|
102
|
+
"instruments.surdo": "Surdo",
|
|
93
103
|
"instruments.tabal": "Trommel",
|
|
104
|
+
"instruments.tambourine": "Tamburin",
|
|
105
|
+
"instruments.tambourineBrazilian": "Brasilianisches Tamburin",
|
|
94
106
|
"instruments.tarota": "Tarota",
|
|
95
107
|
"instruments.tenor": "Tenor",
|
|
96
108
|
"instruments.tenorSax": "Tenorsaxophon",
|
|
109
|
+
"instruments.timbalBrazilian": "Pauke",
|
|
97
110
|
"instruments.timpani": "Pauke",
|
|
98
111
|
"instruments.trombone": "Posaune",
|
|
99
112
|
"instruments.trumpet": "Trompete",
|
|
@@ -105,6 +118,7 @@
|
|
|
105
118
|
"instruments.violin": "Geige",
|
|
106
119
|
"musicStyles.banda-cornetas-y-tambores": "Schlagzeug und Blasorchester",
|
|
107
120
|
"musicStyles.banda-de-musica": "Blasorchester",
|
|
121
|
+
"musicStyles.batucada": "Batukada",
|
|
108
122
|
"musicStyles.big-band": "Blaskapelle",
|
|
109
123
|
"musicStyles.charanga": "Street-Blasband",
|
|
110
124
|
"musicStyles.colla": "Colla",
|
package/lang/en.json
CHANGED
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
"group.players.remove.text": "You are no longer part of {string:group.0.displayName}",
|
|
32
32
|
"group.players.remove.title": "Delete group",
|
|
33
33
|
"instruments.accordion": "Accordion",
|
|
34
|
+
"instruments.agogo": "Agogo",
|
|
34
35
|
"instruments.altoClarinet": "Alto Clarinet",
|
|
35
36
|
"instruments.altoSaxophone": "Alto Saxophone",
|
|
36
37
|
"instruments.bagpipes": "Bagpipes",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"instruments.cajon": "Cajon",
|
|
47
48
|
"instruments.castanets": "Castanets",
|
|
48
49
|
"instruments.cello": "Violoncello",
|
|
50
|
+
"instruments.chocalho": "Chocalho",
|
|
49
51
|
"instruments.choir": "Choir",
|
|
50
52
|
"instruments.clarinet": "Clarinet",
|
|
51
53
|
"instruments.contraAlto": "Contralto",
|
|
@@ -62,12 +64,14 @@
|
|
|
62
64
|
"instruments.electricGuitar": "Electric Guitar",
|
|
63
65
|
"instruments.englishHorn": "English Horn",
|
|
64
66
|
"instruments.euphonium": "Euphonium",
|
|
67
|
+
"instruments.flabiol": "Flabiol",
|
|
65
68
|
"instruments.flugelhorn": "Flugelhorn",
|
|
66
69
|
"instruments.flute": "Flute",
|
|
67
70
|
"instruments.frenchHorn": "French Horn",
|
|
68
71
|
"instruments.guitar": "Guitar",
|
|
69
72
|
"instruments.harmonica": "Harmonica",
|
|
70
73
|
"instruments.harp": "Harp",
|
|
74
|
+
"instruments.harpsichord": "Harpsichord",
|
|
71
75
|
"instruments.highTrombone": "Alto Trombone",
|
|
72
76
|
"instruments.keyboard": "Keyboard",
|
|
73
77
|
"instruments.littleClarinet": "Piccolo Clarinet",
|
|
@@ -78,22 +82,31 @@
|
|
|
78
82
|
"instruments.lute": "Lute",
|
|
79
83
|
"instruments.mallets": "Mallets",
|
|
80
84
|
"instruments.mandoline": "Mandoline",
|
|
85
|
+
"instruments.maracas": "Maracas",
|
|
86
|
+
"instruments.marchingToms": "Marching toms",
|
|
87
|
+
"instruments.melodica": "Melodica",
|
|
81
88
|
"instruments.mezzosoproano": "Mezzosoprano",
|
|
82
89
|
"instruments.musicConductor": "Conductor",
|
|
83
90
|
"instruments.oboe": "Oboe",
|
|
91
|
+
"instruments.peak-flute": "Peak flute",
|
|
84
92
|
"instruments.percussion": "Percussion",
|
|
85
93
|
"instruments.piano": "Piano",
|
|
86
94
|
"instruments.piccolo": "Piccolo",
|
|
87
95
|
"instruments.piccoloTrumpet": "Piccolo Trumpet",
|
|
96
|
+
"instruments.repique": "Repique",
|
|
88
97
|
"instruments.silbote": "Silbote",
|
|
89
98
|
"instruments.singer": "Singer",
|
|
90
99
|
"instruments.snareDrum": "Snare drum",
|
|
91
100
|
"instruments.soprano": "Soprano",
|
|
92
101
|
"instruments.sopranoSaxophone": "Soprano Saxophone",
|
|
102
|
+
"instruments.surdo": "Surdo",
|
|
93
103
|
"instruments.tabal": "Drum",
|
|
104
|
+
"instruments.tambourine": "Tambourine",
|
|
105
|
+
"instruments.tambourineBrazilian": "Brazilian tambourine",
|
|
94
106
|
"instruments.tarota": "Tarota",
|
|
95
107
|
"instruments.tenor": "Tenor",
|
|
96
108
|
"instruments.tenorSax": "Tenor Saxophone",
|
|
109
|
+
"instruments.timbalBrazilian": "Timbal",
|
|
97
110
|
"instruments.timpani": "Timpani",
|
|
98
111
|
"instruments.trombone": "Trombone",
|
|
99
112
|
"instruments.trumpet": "Trumpet",
|
|
@@ -105,6 +118,7 @@
|
|
|
105
118
|
"instruments.violin": "Violin",
|
|
106
119
|
"musicStyles.banda-cornetas-y-tambores": "Drums and winds band",
|
|
107
120
|
"musicStyles.banda-de-musica": "Concert band",
|
|
121
|
+
"musicStyles.batucada": "Batucada",
|
|
108
122
|
"musicStyles.big-band": "Big band",
|
|
109
123
|
"musicStyles.charanga": "Street brass band",
|
|
110
124
|
"musicStyles.colla": "Colla",
|
package/lang/es.json
CHANGED
|
@@ -31,12 +31,13 @@
|
|
|
31
31
|
"group.players.remove.text": "Ya no formas parte de {string:group.0.displayName}",
|
|
32
32
|
"group.players.remove.title": "Grupo suprimido",
|
|
33
33
|
"instruments.accordion": "Acordeón",
|
|
34
|
+
"instruments.agogo": "Agogó",
|
|
34
35
|
"instruments.altoClarinet": "Clarinete Alto",
|
|
35
36
|
"instruments.altoSaxophone": "Saxofón alto",
|
|
36
37
|
"instruments.bagpipes": "Gaita",
|
|
37
38
|
"instruments.bandurria": "Bandurria",
|
|
38
39
|
"instruments.banjo": "Banjo",
|
|
39
|
-
"instruments.baritone": "
|
|
40
|
+
"instruments.baritone": "Barítono",
|
|
40
41
|
"instruments.baritoneSax": "Saxofón barítono",
|
|
41
42
|
"instruments.bass": "Bajo eléctrico",
|
|
42
43
|
"instruments.bass-choir": "Bajo",
|
|
@@ -46,6 +47,7 @@
|
|
|
46
47
|
"instruments.cajon": "Cajón",
|
|
47
48
|
"instruments.castanets": "Castañuelas",
|
|
48
49
|
"instruments.cello": "Violonchelo",
|
|
50
|
+
"instruments.chocalho": "Chocalho",
|
|
49
51
|
"instruments.choir": "Coro",
|
|
50
52
|
"instruments.clarinet": "Clarinete",
|
|
51
53
|
"instruments.contraAlto": "Contralto",
|
|
@@ -62,12 +64,14 @@
|
|
|
62
64
|
"instruments.electricGuitar": "Guitarra eléctrica",
|
|
63
65
|
"instruments.englishHorn": "Corno inglés",
|
|
64
66
|
"instruments.euphonium": "Bombardino",
|
|
67
|
+
"instruments.flabiol": "Flabiol",
|
|
65
68
|
"instruments.flugelhorn": "Fliscorno",
|
|
66
69
|
"instruments.flute": "Flauta",
|
|
67
70
|
"instruments.frenchHorn": "Trompa",
|
|
68
71
|
"instruments.guitar": "Guitarra",
|
|
69
72
|
"instruments.harmonica": "Armonica",
|
|
70
73
|
"instruments.harp": "Arpa",
|
|
74
|
+
"instruments.harpsichord": "Clavecín",
|
|
71
75
|
"instruments.highTrombone": "Trombón alto",
|
|
72
76
|
"instruments.keyboard": "Teclados",
|
|
73
77
|
"instruments.littleClarinet": "Requinto",
|
|
@@ -78,22 +82,31 @@
|
|
|
78
82
|
"instruments.lute": "Laúd",
|
|
79
83
|
"instruments.mallets": "Láminas",
|
|
80
84
|
"instruments.mandoline": "Mandolina",
|
|
85
|
+
"instruments.maracas": "Maracas",
|
|
86
|
+
"instruments.marchingToms": "Toms de marcha",
|
|
87
|
+
"instruments.melodica": "Melódica",
|
|
81
88
|
"instruments.mezzosoproano": "Mezzosoprano",
|
|
82
89
|
"instruments.musicConductor": "Dirección musical",
|
|
83
90
|
"instruments.oboe": "Oboe",
|
|
91
|
+
"instruments.peak-flute": "Flauta de pico",
|
|
84
92
|
"instruments.percussion": "Percusión",
|
|
85
93
|
"instruments.piano": "Piano",
|
|
86
94
|
"instruments.piccolo": "Flautín",
|
|
87
95
|
"instruments.piccoloTrumpet": "Trompeta piccolo",
|
|
96
|
+
"instruments.repique": "Repique",
|
|
88
97
|
"instruments.silbote": "Silbote",
|
|
89
98
|
"instruments.singer": "Cantante",
|
|
90
99
|
"instruments.snareDrum": "Caja",
|
|
91
100
|
"instruments.soprano": "Soprano",
|
|
92
101
|
"instruments.sopranoSaxophone": "Saxofón soprano",
|
|
102
|
+
"instruments.surdo": "Surdo",
|
|
93
103
|
"instruments.tabal": "Tambor",
|
|
104
|
+
"instruments.tambourine": "Pandereta",
|
|
105
|
+
"instruments.tambourineBrazilian": "Tamborín",
|
|
94
106
|
"instruments.tarota": "Tarota",
|
|
95
107
|
"instruments.tenor": "Tenor",
|
|
96
108
|
"instruments.tenorSax": "Saxofón tenor",
|
|
109
|
+
"instruments.timbalBrazilian": "Timbal",
|
|
97
110
|
"instruments.timpani": "Timbales",
|
|
98
111
|
"instruments.trombone": "Trombón",
|
|
99
112
|
"instruments.trumpet": "Trompeta",
|
|
@@ -105,6 +118,7 @@
|
|
|
105
118
|
"instruments.violin": "Violín",
|
|
106
119
|
"musicStyles.banda-cornetas-y-tambores": "Banda de cornetas y tambores",
|
|
107
120
|
"musicStyles.banda-de-musica": "Banda de música",
|
|
121
|
+
"musicStyles.batucada": "Batucada",
|
|
108
122
|
"musicStyles.big-band": "Big Band",
|
|
109
123
|
"musicStyles.charanga": "Charanga",
|
|
110
124
|
"musicStyles.colla": "Colla",
|