@glissandoo/lib 1.102.12 → 1.102.14
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/event.d.ts +19 -3
- package/functions/event.js +2 -0
- package/functions/partnershipGroup.d.ts +2 -1
- package/functions/partnershipPartner.d.ts +2 -2
- package/functions/partnershipPayment.d.ts +1 -2
- package/functions/partnershipPlan.d.ts +1 -2
- package/functions/partnershipSubscription.d.ts +3 -6
- package/helpers/appScenes.d.ts +22 -17
- package/helpers/appScenes.js +21 -16
- package/helpers/notifications/index.d.ts +2 -0
- package/helpers/notifications/index.js +10 -0
- package/lang/ca.json +13 -1
- package/lang/de.json +13 -1
- package/lang/en.json +13 -1
- package/lang/es.json +13 -1
- package/lang/eu.json +13 -1
- package/lang/fr.json +13 -1
- package/lang/gl.json +13 -1
- package/lang/it.json +13 -1
- package/lang/nl.json +15 -3
- package/lang/pt.json +13 -1
- package/models/Evento/index.d.ts +2 -0
- package/models/Evento/index.js +6 -0
- package/models/Evento/types.d.ts +2 -0
- package/models/Notification/types.d.ts +6 -0
- package/models/Notification/types.js +6 -0
- package/models/Partnership/Partner/index.d.ts +6 -1
- package/models/Partnership/Partner/index.js +11 -2
- package/models/Partnership/Partner/types.d.ts +3 -7
- package/models/Partnership/Payment/index.d.ts +2 -3
- package/models/Partnership/Payment/index.js +1 -1
- package/models/Partnership/Payment/types.d.ts +6 -2
- package/models/Partnership/Payment/types.js +7 -1
- package/models/Partnership/Plan/index.d.ts +2 -2
- package/models/Partnership/Plan/index.js +11 -4
- package/models/Partnership/Plan/types.d.ts +4 -8
- package/models/Partnership/Plan/types.js +0 -7
- package/models/Partnership/Subscription/index.d.ts +2 -1
- package/models/Partnership/Subscription/index.js +4 -1
- package/models/Partnership/Subscription/types.d.ts +5 -1
- package/models/User/index.d.ts +2 -0
- package/models/User/index.js +6 -0
- package/models/User/types.d.ts +1 -0
- package/package.json +13 -13
package/functions/event.d.ts
CHANGED
|
@@ -53,7 +53,9 @@ export declare namespace EventoFbFunctionsTypes {
|
|
|
53
53
|
Locality = "locality",
|
|
54
54
|
Comments = "comments",
|
|
55
55
|
Attendance = "attendance",
|
|
56
|
-
Stage = "stage"
|
|
56
|
+
Stage = "stage",
|
|
57
|
+
Attachments = "attachments",
|
|
58
|
+
Images = "images"
|
|
57
59
|
}
|
|
58
60
|
export interface EditTitleData {
|
|
59
61
|
scope: EditScope.Title;
|
|
@@ -98,8 +100,22 @@ export declare namespace EventoFbFunctionsTypes {
|
|
|
98
100
|
};
|
|
99
101
|
}
|
|
100
102
|
type EditStageParams = EditStageData & EditParamsBase;
|
|
101
|
-
export
|
|
102
|
-
|
|
103
|
+
export interface EditImagesData {
|
|
104
|
+
scope: EditScope.Images;
|
|
105
|
+
value: {
|
|
106
|
+
imagesPath: string[];
|
|
107
|
+
};
|
|
108
|
+
}
|
|
109
|
+
type EditImagesParams = EditImagesData & EditParamsBase;
|
|
110
|
+
export interface EditAttachmentsData {
|
|
111
|
+
scope: EditScope.Attachments;
|
|
112
|
+
value: {
|
|
113
|
+
attachmentsPath: string[];
|
|
114
|
+
};
|
|
115
|
+
}
|
|
116
|
+
type EditAttachmentsParams = EditAttachmentsData & EditParamsBase;
|
|
117
|
+
export type EditData = EditTitleData | EditLocalityData | EditCommentsData | EditAttendanceData | EditStageData | EditImagesData | EditAttachmentsData;
|
|
118
|
+
export type EditParams = EditTitleParams | EditLocalityParams | EditCommentsParams | EditAttendanceParams | EditStageParams | EditImagesParams | EditAttachmentsParams;
|
|
103
119
|
export type EditResult = void;
|
|
104
120
|
export interface EditResponseDeadlineParams {
|
|
105
121
|
eventId: string;
|
package/functions/event.js
CHANGED
|
@@ -16,6 +16,8 @@ var EventoFbFunctionsTypes;
|
|
|
16
16
|
EditScope["Comments"] = "comments";
|
|
17
17
|
EditScope["Attendance"] = "attendance";
|
|
18
18
|
EditScope["Stage"] = "stage";
|
|
19
|
+
EditScope["Attachments"] = "attachments";
|
|
20
|
+
EditScope["Images"] = "images";
|
|
19
21
|
})(EditScope = EventoFbFunctionsTypes.EditScope || (EventoFbFunctionsTypes.EditScope = {}));
|
|
20
22
|
// setRollCall
|
|
21
23
|
let UndoAction;
|
|
@@ -2,8 +2,9 @@ export declare namespace PartnershipGroupFbFunctionsTypes {
|
|
|
2
2
|
interface AddParams {
|
|
3
3
|
partnershipId: string;
|
|
4
4
|
groupId: string;
|
|
5
|
+
userIds: string[];
|
|
5
6
|
}
|
|
6
|
-
type AddResult =
|
|
7
|
+
type AddResult = Record<string, string>;
|
|
7
8
|
interface RemoveParams {
|
|
8
9
|
partnershipId: string;
|
|
9
10
|
groupId: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { SetOptional } from 'type-fest';
|
|
1
2
|
import { BasicAddressData, CreatedOn } from '../helpers/types';
|
|
2
3
|
import { PartnershipPartnerSepaMandate } from '../models/Partnership/Partner/types';
|
|
3
|
-
import { SetOptional } from 'type-fest';
|
|
4
4
|
export declare namespace PartnershipPartnerFbFunctionsTypes {
|
|
5
5
|
interface BaseCreateData {
|
|
6
6
|
NIF: string | null;
|
|
@@ -10,7 +10,7 @@ export declare namespace PartnershipPartnerFbFunctionsTypes {
|
|
|
10
10
|
phone: string | null;
|
|
11
11
|
birthdate: number | null;
|
|
12
12
|
address: BasicAddressData | null;
|
|
13
|
-
userId: string;
|
|
13
|
+
userId: string | null;
|
|
14
14
|
}
|
|
15
15
|
export interface CreateData extends BaseCreateData {
|
|
16
16
|
sepaMandate: SetOptional<PartnershipPartnerSepaMandate, 'mandateId'> | null;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { PaymentStatus } from '../models/Partnership/Payment/types';
|
|
2
|
-
import { PaymentMethod } from '../models/Partnership/Plan/types';
|
|
1
|
+
import { PaymentMethod, PaymentStatus } from '../models/Partnership/Payment/types';
|
|
3
2
|
export declare namespace PartnershipPaymentFbFunctionsTypes {
|
|
4
3
|
interface CreateOneTimeData {
|
|
5
4
|
title: string;
|
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PlanScheduleType } from '../models/Partnership/Plan/types';
|
|
2
2
|
export declare namespace PartnershipPlanFbFunctionsTypes {
|
|
3
3
|
interface CreateData {
|
|
4
4
|
name: string;
|
|
5
5
|
description: string;
|
|
6
6
|
price: number;
|
|
7
7
|
schedule: PlanScheduleType;
|
|
8
|
-
paymentMethod: PaymentMethod;
|
|
9
8
|
}
|
|
10
9
|
interface CreateParams extends CreateData {
|
|
11
10
|
partnershipId: string;
|
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
export declare namespace PartnershipSubscriptionFbFunctionsTypes {
|
|
2
|
-
interface
|
|
2
|
+
interface CreateParams {
|
|
3
3
|
planId: string;
|
|
4
|
-
partnerId: string;
|
|
5
|
-
endDate: number | null;
|
|
6
|
-
}
|
|
7
|
-
interface CreateParams extends CreateData {
|
|
8
4
|
partnershipId: string;
|
|
9
|
-
|
|
5
|
+
partnerIds: string[];
|
|
6
|
+
endDate: number | null;
|
|
10
7
|
}
|
|
11
8
|
type CreateResult = void;
|
|
12
9
|
interface EditParams {
|
package/helpers/appScenes.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export declare enum AppScenes {
|
|
|
18
18
|
CreateEventSettings = "CreateEventSettings",
|
|
19
19
|
CreateEventTemplates = "CreateEventTemplates",
|
|
20
20
|
CreateEventTitle = "CreateEventTitle",
|
|
21
|
+
Drawer = "Drawer",
|
|
21
22
|
EditGroupPlayerInstruments = "EditGroupPlayerInstruments",
|
|
22
23
|
EditProfileBirthDate = "EditProfileBirthDate",
|
|
23
24
|
EditProfileDeleteAccount = "EditProfileDeleteAccount",
|
|
@@ -41,7 +42,9 @@ export declare enum AppScenes {
|
|
|
41
42
|
EventSelection = "eventSelection",
|
|
42
43
|
EventSettings = "EventSettings",
|
|
43
44
|
EventSettingsAddress = "EventSettingsAddress",
|
|
45
|
+
EventSettingsAttachments = "EventSettingsAttachments",
|
|
44
46
|
EventSettingsComments = "EventSettingsComments",
|
|
47
|
+
EventSettingsCover = "EventSettingsCover",
|
|
45
48
|
EventSettingsDate = "EventSettingsDate",
|
|
46
49
|
EventSettingsMaxAttendance = "EventSettingsMaxAttendance",
|
|
47
50
|
EventSettingsMembers = "EventSettingsMembers",
|
|
@@ -50,49 +53,51 @@ export declare enum AppScenes {
|
|
|
50
53
|
EventSettingsResponseDeadline = "EventSettingsResponseDeadline",
|
|
51
54
|
EventSettingsTime = "EventSettingsTime",
|
|
52
55
|
EventSettingsTitle = "EventSettingsTitle",
|
|
56
|
+
EventsTab = "EventsTab",
|
|
57
|
+
EventStage = "EventStage",
|
|
53
58
|
EventView = "EventView",
|
|
54
59
|
Explore = "Explore",
|
|
55
60
|
ForgotPassword = "ForgotPassword",
|
|
56
61
|
Group = "group",
|
|
57
62
|
GroupPlayer = "groupPlayer",
|
|
58
|
-
GroupsNavigation = "GroupsNavigation",
|
|
59
|
-
GroupTab = "GroupTab",
|
|
60
|
-
GroupView = "GroupView",
|
|
61
63
|
GroupPlayerEditInstruments = "GroupPlayerEditInstruments",
|
|
62
64
|
GroupSettings = "GroupSettings",
|
|
63
|
-
|
|
65
|
+
GroupSettingsAddresses = "GroupSettingsAddresses",
|
|
66
|
+
GroupSettingsConfigShowAttendance = "GroupSettingsConfigShowAttendance",
|
|
67
|
+
GroupSettingsDelete = "GroupSettingsDelete",
|
|
64
68
|
GroupSettingsDisplayName = "GroupSettingsDisplayName",
|
|
65
|
-
GroupSettingsUsername = "GroupSettingsUsername",
|
|
66
|
-
GroupSettingsMusicStyle = "GroupSettingsMusicStyle",
|
|
67
69
|
GroupSettingsLocality = "GroupSettingsLocality",
|
|
70
|
+
GroupSettingsMusicStyle = "GroupSettingsMusicStyle",
|
|
68
71
|
GroupSettingsPhotoURL = "GroupSettingsPhotoURL",
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
+
GroupSettingsStack = "GroupSettingsStack",
|
|
73
|
+
GroupSettingsUsername = "GroupSettingsUsername",
|
|
74
|
+
GroupsNavigation = "GroupsNavigation",
|
|
75
|
+
GroupTab = "GroupTab",
|
|
76
|
+
GroupView = "GroupView",
|
|
72
77
|
Join = "Join",
|
|
73
78
|
JoinImageProfile = "AddProfileImage",
|
|
74
79
|
JoinInstrument = "SelectGroupInstrument",
|
|
75
80
|
JoinView = "JoinView",
|
|
76
81
|
Login = "Login",
|
|
77
82
|
Modal = "Modal",
|
|
83
|
+
NewGroup = "NewGroup",
|
|
84
|
+
NewGroupInfo = "NewGroupInfo",
|
|
85
|
+
NewGroupMusicMember = "NewGroupMusicMember",
|
|
86
|
+
NewGroupMusicStyle = "NewGroupMusicStyle",
|
|
78
87
|
Notifications = "Notifications",
|
|
79
|
-
OnBoarding = "OnBoarding",
|
|
80
88
|
Offer = "Offer",
|
|
89
|
+
OnBoarding = "OnBoarding",
|
|
81
90
|
Profile = "Me",
|
|
82
91
|
ProfileSettings = "MeSettings",
|
|
83
92
|
ProfileSettingsStack = "ProfileSettingsStack",
|
|
93
|
+
ProfileTab = "ProfileTab",
|
|
84
94
|
Register = "Register",
|
|
95
|
+
RepertoireTab = "RepertoireTab",
|
|
85
96
|
Repertory = "repertory",
|
|
86
97
|
TabStack = "TabStack",
|
|
87
98
|
Theme = "theme",
|
|
88
99
|
ThemeView = "ThemeView",
|
|
89
100
|
VisorImage = "visorImage",
|
|
90
101
|
VisorPDF = "visorPDF",
|
|
91
|
-
VisorQR = "VisorQR"
|
|
92
|
-
NewGroup = "NewGroup",
|
|
93
|
-
NewGroupInfo = "NewGroupInfo",
|
|
94
|
-
NewGroupMusicStyle = "NewGroupMusicStyle",
|
|
95
|
-
NewGroupMusicMember = "NewGroupMusicMember",
|
|
96
|
-
Drawer = "Drawer",
|
|
97
|
-
EventStage = "EventStage"
|
|
102
|
+
VisorQR = "VisorQR"
|
|
98
103
|
}
|
package/helpers/appScenes.js
CHANGED
|
@@ -22,6 +22,7 @@ var AppScenes;
|
|
|
22
22
|
AppScenes["CreateEventSettings"] = "CreateEventSettings";
|
|
23
23
|
AppScenes["CreateEventTemplates"] = "CreateEventTemplates";
|
|
24
24
|
AppScenes["CreateEventTitle"] = "CreateEventTitle";
|
|
25
|
+
AppScenes["Drawer"] = "Drawer";
|
|
25
26
|
AppScenes["EditGroupPlayerInstruments"] = "EditGroupPlayerInstruments";
|
|
26
27
|
AppScenes["EditProfileBirthDate"] = "EditProfileBirthDate";
|
|
27
28
|
AppScenes["EditProfileDeleteAccount"] = "EditProfileDeleteAccount";
|
|
@@ -45,7 +46,9 @@ var AppScenes;
|
|
|
45
46
|
AppScenes["EventSelection"] = "eventSelection";
|
|
46
47
|
AppScenes["EventSettings"] = "EventSettings";
|
|
47
48
|
AppScenes["EventSettingsAddress"] = "EventSettingsAddress";
|
|
49
|
+
AppScenes["EventSettingsAttachments"] = "EventSettingsAttachments";
|
|
48
50
|
AppScenes["EventSettingsComments"] = "EventSettingsComments";
|
|
51
|
+
AppScenes["EventSettingsCover"] = "EventSettingsCover";
|
|
49
52
|
AppScenes["EventSettingsDate"] = "EventSettingsDate";
|
|
50
53
|
AppScenes["EventSettingsMaxAttendance"] = "EventSettingsMaxAttendance";
|
|
51
54
|
AppScenes["EventSettingsMembers"] = "EventSettingsMembers";
|
|
@@ -54,38 +57,46 @@ var AppScenes;
|
|
|
54
57
|
AppScenes["EventSettingsResponseDeadline"] = "EventSettingsResponseDeadline";
|
|
55
58
|
AppScenes["EventSettingsTime"] = "EventSettingsTime";
|
|
56
59
|
AppScenes["EventSettingsTitle"] = "EventSettingsTitle";
|
|
60
|
+
AppScenes["EventsTab"] = "EventsTab";
|
|
61
|
+
AppScenes["EventStage"] = "EventStage";
|
|
57
62
|
AppScenes["EventView"] = "EventView";
|
|
58
63
|
AppScenes["Explore"] = "Explore";
|
|
59
64
|
AppScenes["ForgotPassword"] = "ForgotPassword";
|
|
60
65
|
AppScenes["Group"] = "group";
|
|
61
66
|
AppScenes["GroupPlayer"] = "groupPlayer";
|
|
62
|
-
AppScenes["GroupsNavigation"] = "GroupsNavigation";
|
|
63
|
-
AppScenes["GroupTab"] = "GroupTab";
|
|
64
|
-
AppScenes["GroupView"] = "GroupView";
|
|
65
67
|
AppScenes["GroupPlayerEditInstruments"] = "GroupPlayerEditInstruments";
|
|
66
68
|
AppScenes["GroupSettings"] = "GroupSettings";
|
|
67
|
-
AppScenes["
|
|
69
|
+
AppScenes["GroupSettingsAddresses"] = "GroupSettingsAddresses";
|
|
70
|
+
AppScenes["GroupSettingsConfigShowAttendance"] = "GroupSettingsConfigShowAttendance";
|
|
71
|
+
AppScenes["GroupSettingsDelete"] = "GroupSettingsDelete";
|
|
68
72
|
AppScenes["GroupSettingsDisplayName"] = "GroupSettingsDisplayName";
|
|
69
|
-
AppScenes["GroupSettingsUsername"] = "GroupSettingsUsername";
|
|
70
|
-
AppScenes["GroupSettingsMusicStyle"] = "GroupSettingsMusicStyle";
|
|
71
73
|
AppScenes["GroupSettingsLocality"] = "GroupSettingsLocality";
|
|
74
|
+
AppScenes["GroupSettingsMusicStyle"] = "GroupSettingsMusicStyle";
|
|
72
75
|
AppScenes["GroupSettingsPhotoURL"] = "GroupSettingsPhotoURL";
|
|
73
|
-
AppScenes["
|
|
74
|
-
AppScenes["
|
|
75
|
-
AppScenes["
|
|
76
|
+
AppScenes["GroupSettingsStack"] = "GroupSettingsStack";
|
|
77
|
+
AppScenes["GroupSettingsUsername"] = "GroupSettingsUsername";
|
|
78
|
+
AppScenes["GroupsNavigation"] = "GroupsNavigation";
|
|
79
|
+
AppScenes["GroupTab"] = "GroupTab";
|
|
80
|
+
AppScenes["GroupView"] = "GroupView";
|
|
76
81
|
AppScenes["Join"] = "Join";
|
|
77
82
|
AppScenes["JoinImageProfile"] = "AddProfileImage";
|
|
78
83
|
AppScenes["JoinInstrument"] = "SelectGroupInstrument";
|
|
79
84
|
AppScenes["JoinView"] = "JoinView";
|
|
80
85
|
AppScenes["Login"] = "Login";
|
|
81
86
|
AppScenes["Modal"] = "Modal";
|
|
87
|
+
AppScenes["NewGroup"] = "NewGroup";
|
|
88
|
+
AppScenes["NewGroupInfo"] = "NewGroupInfo";
|
|
89
|
+
AppScenes["NewGroupMusicMember"] = "NewGroupMusicMember";
|
|
90
|
+
AppScenes["NewGroupMusicStyle"] = "NewGroupMusicStyle";
|
|
82
91
|
AppScenes["Notifications"] = "Notifications";
|
|
83
|
-
AppScenes["OnBoarding"] = "OnBoarding";
|
|
84
92
|
AppScenes["Offer"] = "Offer";
|
|
93
|
+
AppScenes["OnBoarding"] = "OnBoarding";
|
|
85
94
|
AppScenes["Profile"] = "Me";
|
|
86
95
|
AppScenes["ProfileSettings"] = "MeSettings";
|
|
87
96
|
AppScenes["ProfileSettingsStack"] = "ProfileSettingsStack";
|
|
97
|
+
AppScenes["ProfileTab"] = "ProfileTab";
|
|
88
98
|
AppScenes["Register"] = "Register";
|
|
99
|
+
AppScenes["RepertoireTab"] = "RepertoireTab";
|
|
89
100
|
AppScenes["Repertory"] = "repertory";
|
|
90
101
|
AppScenes["TabStack"] = "TabStack";
|
|
91
102
|
AppScenes["Theme"] = "theme";
|
|
@@ -93,10 +104,4 @@ var AppScenes;
|
|
|
93
104
|
AppScenes["VisorImage"] = "visorImage";
|
|
94
105
|
AppScenes["VisorPDF"] = "visorPDF";
|
|
95
106
|
AppScenes["VisorQR"] = "VisorQR";
|
|
96
|
-
AppScenes["NewGroup"] = "NewGroup";
|
|
97
|
-
AppScenes["NewGroupInfo"] = "NewGroupInfo";
|
|
98
|
-
AppScenes["NewGroupMusicStyle"] = "NewGroupMusicStyle";
|
|
99
|
-
AppScenes["NewGroupMusicMember"] = "NewGroupMusicMember";
|
|
100
|
-
AppScenes["Drawer"] = "Drawer";
|
|
101
|
-
AppScenes["EventStage"] = "EventStage";
|
|
102
107
|
})(AppScenes = exports.AppScenes || (exports.AppScenes = {}));
|
|
@@ -17,6 +17,8 @@ export declare enum NotificationEventActions {
|
|
|
17
17
|
EditStage = "editStage",
|
|
18
18
|
EditTitle = "editTitle",
|
|
19
19
|
EditResponseDeadline = "editResponseDeadline",
|
|
20
|
+
EditImages = "editImages",
|
|
21
|
+
EditAttachments = "editAttachments",
|
|
20
22
|
AddPlayers = "addPlayers",
|
|
21
23
|
RemovePlayers = "removePlayers",
|
|
22
24
|
ConfirmAssistance = "confirmAssistance",
|
|
@@ -35,6 +35,8 @@ var NotificationEventActions;
|
|
|
35
35
|
NotificationEventActions["EditStage"] = "editStage";
|
|
36
36
|
NotificationEventActions["EditTitle"] = "editTitle";
|
|
37
37
|
NotificationEventActions["EditResponseDeadline"] = "editResponseDeadline";
|
|
38
|
+
NotificationEventActions["EditImages"] = "editImages";
|
|
39
|
+
NotificationEventActions["EditAttachments"] = "editAttachments";
|
|
38
40
|
NotificationEventActions["AddPlayers"] = "addPlayers";
|
|
39
41
|
NotificationEventActions["RemovePlayers"] = "removePlayers";
|
|
40
42
|
NotificationEventActions["ConfirmAssistance"] = "confirmAssistance";
|
|
@@ -60,6 +62,8 @@ exports.editScopeToAction = {
|
|
|
60
62
|
[event_1.EventoFbFunctionsTypes.EditScope.Comments]: NotificationEventActions.EditComments,
|
|
61
63
|
[event_1.EventoFbFunctionsTypes.EditScope.Attendance]: NotificationEventActions.EditAttendance,
|
|
62
64
|
[event_1.EventoFbFunctionsTypes.EditScope.Stage]: NotificationEventActions.EditStage,
|
|
65
|
+
[event_1.EventoFbFunctionsTypes.EditScope.Images]: NotificationEventActions.EditImages,
|
|
66
|
+
[event_1.EventoFbFunctionsTypes.EditScope.Attachments]: NotificationEventActions.EditAttachments,
|
|
63
67
|
};
|
|
64
68
|
exports.notificationPerformance = {
|
|
65
69
|
[NotificationEventActions.Cancel]: types_1.NotificationActions.PerformanceCancel,
|
|
@@ -72,6 +76,8 @@ exports.notificationPerformance = {
|
|
|
72
76
|
[NotificationEventActions.EditTitle]: types_1.NotificationActions.PerformanceEditTitle,
|
|
73
77
|
[NotificationEventActions.EditStage]: types_1.NotificationActions.PerformanceEditStage,
|
|
74
78
|
[NotificationEventActions.EditResponseDeadline]: types_1.NotificationActions.PerformanceEditResponseDeadline,
|
|
79
|
+
[NotificationEventActions.EditImages]: types_1.NotificationActions.PerformanceEditImages,
|
|
80
|
+
[NotificationEventActions.EditAttachments]: types_1.NotificationActions.PerformanceEditAttachments,
|
|
75
81
|
[NotificationEventActions.AddPlayers]: types_1.NotificationActions.PerformancePlayersAdd,
|
|
76
82
|
[NotificationEventActions.RemovePlayers]: types_1.NotificationActions.PerformancePlayersRemove,
|
|
77
83
|
[NotificationEventActions.ConfirmAssistance]: types_1.NotificationActions.PerformanceAssistanceConfirm,
|
|
@@ -102,6 +108,8 @@ exports.notificationSinglePractice = {
|
|
|
102
108
|
[NotificationEventActions.EditTitle]: types_1.NotificationActions.PracticeEditTitle,
|
|
103
109
|
[NotificationEventActions.EditStage]: types_1.NotificationActions.PracticeEditStage,
|
|
104
110
|
[NotificationEventActions.EditResponseDeadline]: types_1.NotificationActions.PracticeEditResponseDeadline,
|
|
111
|
+
[NotificationEventActions.EditImages]: types_1.NotificationActions.PracticeEditImages,
|
|
112
|
+
[NotificationEventActions.EditAttachments]: types_1.NotificationActions.PracticeEditAttachments,
|
|
105
113
|
[NotificationEventActions.AddPlayers]: types_1.NotificationActions.PracticePlayersAdd,
|
|
106
114
|
[NotificationEventActions.RemovePlayers]: types_1.NotificationActions.PracticePlayersRemove,
|
|
107
115
|
[NotificationEventActions.ConfirmAssistance]: types_1.NotificationActions.PracticeAssistanceConfirm,
|
|
@@ -132,6 +140,8 @@ exports.notificationMultiplePractice = {
|
|
|
132
140
|
[NotificationEventActions.EditTitle]: types_1.NotificationActions.PracticesEditTitle,
|
|
133
141
|
[NotificationEventActions.EditStage]: types_1.NotificationActions.PracticesEditStage,
|
|
134
142
|
[NotificationEventActions.EditResponseDeadline]: types_1.NotificationActions.PracticesEditResponseDeadline,
|
|
143
|
+
[NotificationEventActions.EditImages]: types_1.NotificationActions.PracticesEditImages,
|
|
144
|
+
[NotificationEventActions.EditAttachments]: types_1.NotificationActions.PracticesEditAttachments,
|
|
135
145
|
[NotificationEventActions.AddPlayers]: types_1.NotificationActions.PracticesPlayersAdd,
|
|
136
146
|
[NotificationEventActions.RemovePlayers]: types_1.NotificationActions.PracticesPlayersRemove,
|
|
137
147
|
[NotificationEventActions.ConfirmAssistance]: types_1.NotificationActions.PracticeAssistanceConfirm,
|
package/lang/ca.json
CHANGED
|
@@ -131,6 +131,7 @@
|
|
|
131
131
|
"instruments.unknown": "Instrument desconegut",
|
|
132
132
|
"instruments.viola": "Viola",
|
|
133
133
|
"instruments.violin": "Violí",
|
|
134
|
+
"musicStyles.agrupacion-musical": "Agrupació musical",
|
|
134
135
|
"musicStyles.banda-cornetas-y-tambores": "Banda de cornetes i tambors",
|
|
135
136
|
"musicStyles.banda-de-musica": "Banda de música",
|
|
136
137
|
"musicStyles.batucada": "Batucada",
|
|
@@ -142,7 +143,6 @@
|
|
|
142
143
|
"musicStyles.marching-band": "Marching band",
|
|
143
144
|
"musicStyles.orquesta-sinfonica": "Orquestra simfònica",
|
|
144
145
|
"musicStyles.txistularis": "Banda de txistularis",
|
|
145
|
-
"musicStyles.agrupacion-musical": "Agrupació musical",
|
|
146
146
|
"offer.applicant.add.text": "{string:user.0.displayName} ha sol·licitat la vacant {string:extra.vacancyName} a {string:group.0.displayName}",
|
|
147
147
|
"offer.applicant.add.title": "Nova sol·licitud de vacant",
|
|
148
148
|
"offer.select.applicant.text": "Enhorabona! La teua sol·licitud per a la vacant {string:extra.vacancyName} a {string:group.0.displayName} ha sigut acceptada. Uneix-te al teu nou grup i comença a gaudir de la música amb els teus nous companys",
|
|
@@ -159,12 +159,16 @@
|
|
|
159
159
|
"performance.cancel.title": "Acte cancel·lat",
|
|
160
160
|
"performance.create.text": "S'ha afegit {string:event.0.displayName} de {string:group.0.displayName}",
|
|
161
161
|
"performance.create.title": "Nou acte",
|
|
162
|
+
"performance.edit.attachments.text": "S'han actualitzat els fitxers de {string:event.0.displayName}",
|
|
163
|
+
"performance.edit.attachments.title": "Esdeveniment – fitxers actualitzats",
|
|
162
164
|
"performance.edit.attendance.text": "{string:event.0.displayName} ha actualitzat el límit d'assistència",
|
|
163
165
|
"performance.edit.attendance.title": "Acto - canvi de límit d'assistència",
|
|
164
166
|
"performance.edit.comments.text": "{string:event.0.displayName} ha actualitzat els seus comentaris",
|
|
165
167
|
"performance.edit.comments.title": "Acte - comentaris actualitzats",
|
|
166
168
|
"performance.edit.datetime.text": "S'ha actualitzat l'horari de {string:event.0.displayName}",
|
|
167
169
|
"performance.edit.datetime.title": "Acte - canvi d'horari",
|
|
170
|
+
"performance.edit.images.text": "S'han actualitzat les imatges de {string:event.0.displayName}",
|
|
171
|
+
"performance.edit.images.title": "Esdeveniment – imatges actualitzades",
|
|
168
172
|
"performance.edit.locality.text": "S'ha actualizat l'adreça de {string:event.0.displayName}",
|
|
169
173
|
"performance.edit.locality.title": "Acte - l'adreça ha canviat",
|
|
170
174
|
"performance.edit.repertory.text": "{string:event.0.displayName} ha actualitzat el seu repertori",
|
|
@@ -216,12 +220,16 @@
|
|
|
216
220
|
"practice.cancel.title": "Assaig cancel·lat",
|
|
217
221
|
"practice.create.text": "S'ha afegit un assaig de {string:group.0.displayName} el {date:event.0.[datetime,timezone]:datetime}",
|
|
218
222
|
"practice.create.title": "Nou assaig",
|
|
223
|
+
"practice.edit.attachments.text": "S'han actualitzat els fitxers de {string:event.0.displayName}",
|
|
224
|
+
"practice.edit.attachments.title": "Assaig – fitxers actualitzats",
|
|
219
225
|
"practice.edit.attendance.text": "S'ha actualitzat el límit d'assistència del assaig de {date:event.0.[datetime,timezone]:date}",
|
|
220
226
|
"practice.edit.attendance.title": "Assaig - límit d'assistència modificat",
|
|
221
227
|
"practice.edit.comments.text": "S0han actualitzat els comentaris del assaig de {date:event.0.[datetime,timezone]:date}",
|
|
222
228
|
"practice.edit.comments.title": "Assaig - comentaris actualitzats",
|
|
223
229
|
"practice.edit.datetime.text": "S'ha actualitzat l'horari de l'assaig del {date:event.0.[datetime,timezone]:date}",
|
|
224
230
|
"practice.edit.datetime.title": "Assaig - canvi d'horari",
|
|
231
|
+
"practice.edit.images.text": "S'han actualitzat les imatges de {string:event.0.displayName}",
|
|
232
|
+
"practice.edit.images.title": "Assaig – imatges actualitzades",
|
|
225
233
|
"practice.edit.locality.text": "S'ha actualitzat l'adreça de l'assaig del {date:event.0.[datetime,timezone]:date}",
|
|
226
234
|
"practice.edit.locality.title": "Assaig - l'adreça ha canviat",
|
|
227
235
|
"practice.edit.repertory.text": "S'ha actualitzat el repertori del assaig del {date:event.0.[datetime,timezone]:date}",
|
|
@@ -265,12 +273,16 @@
|
|
|
265
273
|
"practices.cancel.title": "Assajos cancel·lats",
|
|
266
274
|
"practices.create.text": "S'han afegit {string:extra.num} assajos de {string:group.0.displayName} des del {date:event.0.[datetime,timezone]:shortDate} fins al {date:event.1.[datetime,timezone]:shortDate}",
|
|
267
275
|
"practices.create.title": "Nous assajos",
|
|
276
|
+
"practices.edit.attachments.text": "S'han actualitzat els fitxers d'una sèrie d'assaigs",
|
|
277
|
+
"practices.edit.attachments.title": "Assaigs – fitxers actualitzats",
|
|
268
278
|
"practices.edit.attendance.text": "Una serie d'assajos han actualitzat el seu límit d'assistència",
|
|
269
279
|
"practices.edit.attendance.title": "Assajos - canvi de límit d'assistència",
|
|
270
280
|
"practices.edit.comments.text": "Una serie d'assajos han actualitzat els seus comentaris",
|
|
271
281
|
"practices.edit.comments.title": "Assajos - comentaris actualitzats",
|
|
272
282
|
"practices.edit.datetime.text": "Una serie d'assajos han actualitzat el seu horari",
|
|
273
283
|
"practices.edit.datetime.title": "Assajos - canvi d'horari",
|
|
284
|
+
"practices.edit.images.text": "S'han actualitzat les imatges d'una sèrie d'assaigs",
|
|
285
|
+
"practices.edit.images.title": "Assaigs – imatges actualitzades",
|
|
274
286
|
"practices.edit.locality.text": "Una serie d'assajos han actualitzat la seva adreça",
|
|
275
287
|
"practices.edit.locality.title": "Assajos - canvi d'adreça",
|
|
276
288
|
"practices.edit.repertory.text": "Una serie d'assajos han actualitzat el seu repertori",
|
package/lang/de.json
CHANGED
|
@@ -131,6 +131,7 @@
|
|
|
131
131
|
"instruments.unknown": "Unbekanntes Instrument",
|
|
132
132
|
"instruments.viola": "Viola",
|
|
133
133
|
"instruments.violin": "Violine",
|
|
134
|
+
"musicStyles.agrupacion-musical": "Musikgruppe",
|
|
134
135
|
"musicStyles.banda-cornetas-y-tambores": "Schlagzeug und Blasorchester",
|
|
135
136
|
"musicStyles.banda-de-musica": "Blasorchester",
|
|
136
137
|
"musicStyles.batucada": "Batukada",
|
|
@@ -142,7 +143,6 @@
|
|
|
142
143
|
"musicStyles.marching-band": "Marching Band",
|
|
143
144
|
"musicStyles.orquesta-sinfonica": "Sinfonisches Blasorchester",
|
|
144
145
|
"musicStyles.txistularis": "Txistularisband",
|
|
145
|
-
"musicStyles.agrupacion-musical": "Musikgruppe",
|
|
146
146
|
"offer.applicant.add.text": "{string:user.0.displayName} hat sich für die Stelle {string:extra.vacancyName} bei {string:group.0.displayName} beworben",
|
|
147
147
|
"offer.applicant.add.title": "Neue Stellenbewerbung",
|
|
148
148
|
"offer.select.applicant.text": "Herzlichen Glückwunsch! Deine Bewerbung für die Stelle {string:extra.vacancyName} bei {string:group.0.displayName} wurde angenommen. Schließe dich deiner neuen Gruppe an und genieße die Musik mit deinen neuen Kollegen",
|
|
@@ -159,12 +159,16 @@
|
|
|
159
159
|
"performance.cancel.title": "Die Veranstaltung wurde abgesagt",
|
|
160
160
|
"performance.create.text": "Eine neue {string:event.0.displayName} von {string:group.0.displayName} wurde erstellt",
|
|
161
161
|
"performance.create.title": "Neuer Auftritt\n",
|
|
162
|
+
"performance.edit.attachments.text": "Die Dateien von {string:event.0.displayName} wurden aktualisiert",
|
|
163
|
+
"performance.edit.attachments.title": "Auftritt – Dateien aktualisiert",
|
|
162
164
|
"performance.edit.attendance.text": "Das Teilnahmelimit von {string:event.0.displayName} wurde aktualisiert",
|
|
163
165
|
"performance.edit.attendance.title": "Auftritt - Das Teilnahmelimit wurde geändert",
|
|
164
166
|
"performance.edit.comments.text": "Die Beschreibung von {string:event.0.displayName} wurden aktualisiert",
|
|
165
167
|
"performance.edit.comments.title": "Auftritt - Die Beschreibung wurde geändert",
|
|
166
168
|
"performance.edit.datetime.text": "Der Zeitplan von {string:event.0.displayName} wurde aktualisiert",
|
|
167
169
|
"performance.edit.datetime.title": "Auftritt - Der Zeitplan wurde geändert",
|
|
170
|
+
"performance.edit.images.text": "Die Bilder von {string:event.0.displayName} wurden aktualisiert",
|
|
171
|
+
"performance.edit.images.title": "Auftritt – Bilder aktualisiert",
|
|
168
172
|
"performance.edit.locality.text": "Die Anschrift von {string:event.0.displayName} wurde aktualisiert",
|
|
169
173
|
"performance.edit.locality.title": "Auftritt - Die Anschrift wurde geändert",
|
|
170
174
|
"performance.edit.repertory.text": "Das Repertoire für {string:event.0.displayName} wurde aktualisiert",
|
|
@@ -216,12 +220,16 @@
|
|
|
216
220
|
"practice.cancel.title": "Die Probe wurde abgesagt",
|
|
217
221
|
"practice.create.text": "Eine neue Probe von {string:group.0.displayName} am {date:event.0.[datetime,timezone]:datetime} wurde hinzugefügt",
|
|
218
222
|
"practice.create.title": "Neue Probe",
|
|
223
|
+
"practice.edit.attachments.text": "Die Dateien von {string:event.0.displayName} wurden aktualisiert",
|
|
224
|
+
"practice.edit.attachments.title": "Probe – Dateien aktualisiert",
|
|
219
225
|
"practice.edit.attendance.text": "Das Teilnahmelimit für die Probe am {date:event.0.[datetime,timezone]:date} wurde aktualisiert",
|
|
220
226
|
"practice.edit.attendance.title": "Probe - Das Teilnahmelimit wurde geändert",
|
|
221
227
|
"practice.edit.comments.text": "Die Beschreibung der Probe am {date:event.0.[datetime,timezone]:date} wurden aktualisiert",
|
|
222
228
|
"practice.edit.comments.title": "Probe - Die Beschreibung wurde geändert",
|
|
223
229
|
"practice.edit.datetime.text": "Die Probenzeit für {date:event.0.[datetime,timezone]:date} wurde aktualisiert",
|
|
224
230
|
"practice.edit.datetime.title": "Probe - Der Zeitplan wurde geändert",
|
|
231
|
+
"practice.edit.images.text": "Die Bilder von {string:event.0.displayName} wurden aktualisiert",
|
|
232
|
+
"practice.edit.images.title": "Probe – Bilder aktualisiert",
|
|
225
233
|
"practice.edit.locality.text": "Die Anschrift der Probe am {date:event.0.[datetime,timezone]:date} wurde aktualisiert",
|
|
226
234
|
"practice.edit.locality.title": "Die Anschrift der Probe wurde geändert",
|
|
227
235
|
"practice.edit.repertory.text": "Repertoire für die Probe {date:event.0.[datetime,timezone]:date} wurden aktualisiert",
|
|
@@ -265,12 +273,16 @@
|
|
|
265
273
|
"practices.cancel.title": "Proben abgesagt",
|
|
266
274
|
"practices.create.text": "{string:extra.num} neue Proben von {string:group.0.displayName} zwischen {date:event.0.[datetime,timezone]:shortDate} und {date:event.1.[datetime,timezone]:shortDate} wurden hinzugefügt",
|
|
267
275
|
"practices.create.title": "Neue Proben",
|
|
276
|
+
"practices.edit.attachments.text": "Die Dateien einer Reihe von Proben wurden aktualisiert",
|
|
277
|
+
"practices.edit.attachments.title": "Proben – Dateien aktualisiert",
|
|
268
278
|
"practices.edit.attendance.text": "Das Teilnahmelimit einer Reihe von Proben wurde aktualisiert",
|
|
269
279
|
"practices.edit.attendance.title": "Probe - Das Teilnahmelimit wurde geändert",
|
|
270
280
|
"practices.edit.comments.text": "Die Beschreibung zu einer Reihe von Proben wurden aktualisiert.",
|
|
271
281
|
"practices.edit.comments.title": "Proben - Die Beschreibung wurde geändert",
|
|
272
282
|
"practices.edit.datetime.text": "Der Zeitplan einer Reihe von Proben wurde aktualisiert",
|
|
273
283
|
"practices.edit.datetime.title": "Proben - Der Zeitplan wurde geändert",
|
|
284
|
+
"practices.edit.images.text": "Die Bilder einer Reihe von Proben wurden aktualisiert",
|
|
285
|
+
"practices.edit.images.title": "Proben – Bilder aktualisiert",
|
|
274
286
|
"practices.edit.locality.text": "Die Anschrift einer Reihe von Proben wurde aktualisiert",
|
|
275
287
|
"practices.edit.locality.title": "Probe - Die Anschrift wurde geändert",
|
|
276
288
|
"practices.edit.repertory.text": "Die Noten einer Reihe von Proben wurden aktualisiert",
|
package/lang/en.json
CHANGED
|
@@ -131,6 +131,7 @@
|
|
|
131
131
|
"instruments.unknown": "Unknown instrument",
|
|
132
132
|
"instruments.viola": "Viola",
|
|
133
133
|
"instruments.violin": "Violin",
|
|
134
|
+
"musicStyles.agrupacion-musical": "Musical group",
|
|
134
135
|
"musicStyles.banda-cornetas-y-tambores": "Drums and winds band",
|
|
135
136
|
"musicStyles.banda-de-musica": "Concert band",
|
|
136
137
|
"musicStyles.batucada": "Batucada",
|
|
@@ -142,7 +143,6 @@
|
|
|
142
143
|
"musicStyles.marching-band": "Marching band",
|
|
143
144
|
"musicStyles.orquesta-sinfonica": "Symphony orchestra",
|
|
144
145
|
"musicStyles.txistularis": "Txistus band",
|
|
145
|
-
"musicStyles.agrupacion-musical": "Musical group",
|
|
146
146
|
"offer.applicant.add.text": "{string:user.0.displayName} applied for the vacancy {string:extra.vacancyName} in {string:group.0.displayName}",
|
|
147
147
|
"offer.applicant.add.title": "New vacancy application",
|
|
148
148
|
"offer.select.applicant.text": "Congratulations! Your application for the vacancy {string:extra.vacancyName} at {string:group.0.displayName} has been accepted. Join your new group and start enjoying the music with your new companions",
|
|
@@ -159,12 +159,16 @@
|
|
|
159
159
|
"performance.cancel.title": "Performance cancelled",
|
|
160
160
|
"performance.create.text": "A new {string:event.0.displayName} of {string:group.0.displayName} has been created",
|
|
161
161
|
"performance.create.title": "New concert",
|
|
162
|
+
"performance.edit.attachments.text": "The files of {string:event.0.displayName} have been updated",
|
|
163
|
+
"performance.edit.attachments.title": "Performance - files updated",
|
|
162
164
|
"performance.edit.attendance.text": "The attendance limit of {string:event.0.displayName} has been updated",
|
|
163
165
|
"performance.edit.attendance.title": "Concert - attendance limit has changed",
|
|
164
166
|
"performance.edit.comments.text": "The description of {string:event.0.displayName} has been updated",
|
|
165
167
|
"performance.edit.comments.title": "Concert - description has changed",
|
|
166
168
|
"performance.edit.datetime.text": "Schedule of {string:event.0.displayName} has been updated",
|
|
167
169
|
"performance.edit.datetime.title": "Concert - schedule has changed",
|
|
170
|
+
"performance.edit.images.text": "The images of {string:event.0.displayName} have been updated",
|
|
171
|
+
"performance.edit.images.title": "Performance - images updated",
|
|
168
172
|
"performance.edit.locality.text": "The address of {string:event.0.displayName} has been updated",
|
|
169
173
|
"performance.edit.locality.title": "Concert - address has changed",
|
|
170
174
|
"performance.edit.repertory.text": "The repertoire for {string:event.0.displayName} has been updated",
|
|
@@ -216,12 +220,16 @@
|
|
|
216
220
|
"practice.cancel.title": "Rehearsal cancelled",
|
|
217
221
|
"practice.create.text": "A new rehearsal of {string:group.0.displayName} on {date:event.0.[datetime,timezone]:datetime} has been added",
|
|
218
222
|
"practice.create.title": "New rehearsal",
|
|
223
|
+
"practice.edit.attachments.text": "The files of {string:event.0.displayName} have been updated",
|
|
224
|
+
"practice.edit.attachments.title": "Practice - files updated",
|
|
219
225
|
"practice.edit.attendance.text": "The rehearsal attendance limit for the {date:event.0.[datetime,timezone]:date} has been updated",
|
|
220
226
|
"practice.edit.attendance.title": "Rehearsal - attendance limit changed",
|
|
221
227
|
"practice.edit.comments.text": "The description of rehearsal {date:event.0.[datetime,timezone]:date} has been updated",
|
|
222
228
|
"practice.edit.comments.title": "Rehearsal - description has changed",
|
|
223
229
|
"practice.edit.datetime.text": "Schedule for rehearsal {date:event.0.[datetime,timezone]:date} has been modified",
|
|
224
230
|
"practice.edit.datetime.title": "Rehearsal - schedule changed",
|
|
231
|
+
"practice.edit.images.text": "The images of {string:event.0.displayName} have been updated",
|
|
232
|
+
"practice.edit.images.title": "Practice - images updated",
|
|
225
233
|
"practice.edit.locality.text": "The rehearsal address of {date:event.0.[datetime,timezone]:date} has been updated",
|
|
226
234
|
"practice.edit.locality.title": "Rehearsal - address changed",
|
|
227
235
|
"practice.edit.repertory.text": "Repertoire for rehearsal {date:event.0.[datetime,timezone]:date} have been updated",
|
|
@@ -265,12 +273,16 @@
|
|
|
265
273
|
"practices.cancel.title": "Rehearsals cancelled",
|
|
266
274
|
"practices.create.text": "{string:extra.num} new rehearsals of {string:group.0.displayName} between {date:event.0.[datetime,timezone]:shortDate} and {date:event.1.[datetime,timezone]:shortDate} have been added",
|
|
267
275
|
"practices.create.title": "New rehearsals",
|
|
276
|
+
"practices.edit.attachments.text": "The files of a series of practices have been updated",
|
|
277
|
+
"practices.edit.attachments.title": "Practices - files updated",
|
|
268
278
|
"practices.edit.attendance.text": "The attendance limit have been updated in several rehearsals",
|
|
269
279
|
"practices.edit.attendance.title": "Rehearsals - attendance limit changed",
|
|
270
280
|
"practices.edit.comments.text": "The description area has been updated on several rehearsals",
|
|
271
281
|
"practices.edit.comments.title": "Rehearsals - comments changed",
|
|
272
282
|
"practices.edit.datetime.text": "The schedule of several rehearsals have been updated",
|
|
273
283
|
"practices.edit.datetime.title": "Rehearsals - schedule changed",
|
|
284
|
+
"practices.edit.images.text": "The images of a series of practices have been updated",
|
|
285
|
+
"practices.edit.images.title": "Practices - images updated",
|
|
274
286
|
"practices.edit.locality.text": "The address of several rehearsals have changed",
|
|
275
287
|
"practices.edit.locality.title": "Rehearsals - address changed",
|
|
276
288
|
"practices.edit.repertory.text": "A number of rehearsals have updated their repertorie",
|
package/lang/es.json
CHANGED
|
@@ -131,6 +131,7 @@
|
|
|
131
131
|
"instruments.unknown": "Instrumento desconocido",
|
|
132
132
|
"instruments.viola": "Viola",
|
|
133
133
|
"instruments.violin": "Violín",
|
|
134
|
+
"musicStyles.agrupacion-musical": "Agrupación musical",
|
|
134
135
|
"musicStyles.banda-cornetas-y-tambores": "Banda de cornetas y tambores",
|
|
135
136
|
"musicStyles.banda-de-musica": "Banda de música",
|
|
136
137
|
"musicStyles.batucada": "Batucada",
|
|
@@ -142,7 +143,6 @@
|
|
|
142
143
|
"musicStyles.marching-band": "Marching band",
|
|
143
144
|
"musicStyles.orquesta-sinfonica": "Orquesta sinfónica",
|
|
144
145
|
"musicStyles.txistularis": "Banda de txistularis",
|
|
145
|
-
"musicStyles.agrupacion-musical": "Agrupación musical",
|
|
146
146
|
"offer.applicant.add.text": "{string:user.0.displayName} ha solicitado la vacante {string:extra.vacancyName} en {string:group.0.displayName}",
|
|
147
147
|
"offer.applicant.add.title": "Nueva solicitud de vacante",
|
|
148
148
|
"offer.select.applicant.text": "¡Enhorabuena! Tu solicitud para la vacante {string:extra.vacancyName} en {string:group.0.displayName} ha sido aceptada. Únete a tu nuevo grupo y empieza a disfrutar de la música con tus nuevos compañeros",
|
|
@@ -159,12 +159,16 @@
|
|
|
159
159
|
"performance.cancel.title": "Acto cancelado",
|
|
160
160
|
"performance.create.text": "Se ha creado {string:event.0.displayName} de {string:group.0.displayName}",
|
|
161
161
|
"performance.create.title": "Nuevo acto",
|
|
162
|
+
"performance.edit.attachments.text": "Se han actualizado los ficheros de {string:event.0.displayName}",
|
|
163
|
+
"performance.edit.attachments.title": "Acto - ficheros actualizados",
|
|
162
164
|
"performance.edit.attendance.text": "Se ha actualizado el límite de asistencia de {string:event.0.displayName}",
|
|
163
165
|
"performance.edit.attendance.title": "Acto - cambio de límite de asistencia",
|
|
164
166
|
"performance.edit.comments.text": "Se han actualizado los comentarios de {string:event.0.displayName}",
|
|
165
167
|
"performance.edit.comments.title": "Acto - comentarios actualizados",
|
|
166
168
|
"performance.edit.datetime.text": "Se ha actualizado el horario de {string:event.0.displayName}",
|
|
167
169
|
"performance.edit.datetime.title": "Acto - cambio de horario",
|
|
170
|
+
"performance.edit.images.text": "Se han actualizado las imágenes de {string:event.0.displayName}",
|
|
171
|
+
"performance.edit.images.title": "Acto - imágenes actualizadas",
|
|
168
172
|
"performance.edit.locality.text": "Se ha actualizado la dirección de {string:event.0.displayName}",
|
|
169
173
|
"performance.edit.locality.title": "Acto - cambio de dirección",
|
|
170
174
|
"performance.edit.repertory.text": "Se ha actualizado el repertorio para {string:event.0.displayName}",
|
|
@@ -216,12 +220,16 @@
|
|
|
216
220
|
"practice.cancel.title": "Ensayo cancelado",
|
|
217
221
|
"practice.create.text": "Se ha agendado un ensayo de {string:group.0.displayName} el {date:event.0.[datetime,timezone]:datetime}",
|
|
218
222
|
"practice.create.title": "Nuevo ensayo",
|
|
223
|
+
"practice.edit.attachments.text": "Se han actualizado los ficheros de {string:event.0.displayName}",
|
|
224
|
+
"practice.edit.attachments.title": "Ensayo - ficheros actualizados",
|
|
219
225
|
"practice.edit.attendance.text": "Se ha actualizado el límite de asistencia del ensayo del {date:event.0.[datetime,timezone]:date}",
|
|
220
226
|
"practice.edit.attendance.title": "Ensayo - cambio de límite de asistencia",
|
|
221
227
|
"practice.edit.comments.text": "Se han actualizado los comentarios del ensayo del {date:event.0.[datetime,timezone]:date}",
|
|
222
228
|
"practice.edit.comments.title": "Ensayo - comentarios actualizados",
|
|
223
229
|
"practice.edit.datetime.text": "Se ha actualizado el horario del ensayo del {date:event.0.[datetime,timezone]:date}",
|
|
224
230
|
"practice.edit.datetime.title": "Ensayo - cambio de horario",
|
|
231
|
+
"practice.edit.images.text": "Se han actualizado las imágenes de {string:event.0.displayName}",
|
|
232
|
+
"practice.edit.images.title": "Ensayo - imágenes actualizadas",
|
|
225
233
|
"practice.edit.locality.text": "Se ha actualizado la dirección del ensayo del {date:event.0.[datetime,timezone]:date}",
|
|
226
234
|
"practice.edit.locality.title": "Ensayo - cambio de dirección",
|
|
227
235
|
"practice.edit.repertory.text": "Se ha actualizado el repertorio del ensayo del {date:event.0.[datetime,timezone]:date}",
|
|
@@ -265,12 +273,16 @@
|
|
|
265
273
|
"practices.cancel.title": "Ensayos cancelados",
|
|
266
274
|
"practices.create.text": "Se han agendado {string:extra.num} ensayos de {string:group.0.displayName} entre el {date:event.0.[datetime,timezone]:shortDate} y el {date:event.1.[datetime,timezone]:shortDate}",
|
|
267
275
|
"practices.create.title": "Nuevos ensayos",
|
|
276
|
+
"practices.edit.attachments.text": "Se han actualizado los ficheros de una serie de ensayos",
|
|
277
|
+
"practices.edit.attachments.title": "Ensayos - ficheros actualizados",
|
|
268
278
|
"practices.edit.attendance.text": "Una serie de ensayos han actualizado su límite de asistencia",
|
|
269
279
|
"practices.edit.attendance.title": "Ensayos - límite de asistencia modificado",
|
|
270
280
|
"practices.edit.comments.text": "Una serie de ensayos han actualizado sus comentarios",
|
|
271
281
|
"practices.edit.comments.title": "Ensayos - comentarios actualizados",
|
|
272
282
|
"practices.edit.datetime.text": "Una serie de ensayos han actualizado su horario",
|
|
273
283
|
"practices.edit.datetime.title": "Ensayos - horarios actualizados",
|
|
284
|
+
"practices.edit.images.text": "Se han actualizado las imágenes de una serie de ensayos",
|
|
285
|
+
"practices.edit.images.title": "Ensayos - imágenes actualizadas",
|
|
274
286
|
"practices.edit.locality.text": "Una serie de ensayos han actualizado su dirección",
|
|
275
287
|
"practices.edit.locality.title": "Ensayos - cambio de dirección",
|
|
276
288
|
"practices.edit.repertory.text": "Una serie de ensayos han actualizado su repertorio",
|