mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-08 17:12:25 +03:00
Merge pull request #870 from popod/fix-translations
Fix the undo translation
This commit is contained in:
commit
6d6dc9b19c
1 changed files with 4 additions and 4 deletions
|
@ -618,7 +618,7 @@ window.BackendCalendarDefaultView = window.BackendCalendarDefaultView || {};
|
||||||
|
|
||||||
Backend.displayNotification(EALang.appointment_updated, [
|
Backend.displayNotification(EALang.appointment_updated, [
|
||||||
{
|
{
|
||||||
'label': 'Undo',
|
'label': EALang.undo,
|
||||||
'function': undoFunction
|
'function': undoFunction
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
@ -667,7 +667,7 @@ window.BackendCalendarDefaultView = window.BackendCalendarDefaultView || {};
|
||||||
|
|
||||||
Backend.displayNotification(EALang.unavailable_updated, [
|
Backend.displayNotification(EALang.unavailable_updated, [
|
||||||
{
|
{
|
||||||
'label': 'Undo',
|
'label': EALang.undo,
|
||||||
'function': undoFunction
|
'function': undoFunction
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
@ -780,7 +780,7 @@ window.BackendCalendarDefaultView = window.BackendCalendarDefaultView || {};
|
||||||
|
|
||||||
Backend.displayNotification(EALang.appointment_updated, [
|
Backend.displayNotification(EALang.appointment_updated, [
|
||||||
{
|
{
|
||||||
'label': 'Undo',
|
'label': EALang.undo,
|
||||||
'function': undoFunction
|
'function': undoFunction
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
@ -830,7 +830,7 @@ window.BackendCalendarDefaultView = window.BackendCalendarDefaultView || {};
|
||||||
|
|
||||||
Backend.displayNotification(EALang.unavailable_updated, [
|
Backend.displayNotification(EALang.unavailable_updated, [
|
||||||
{
|
{
|
||||||
label: 'Undo',
|
label: EALang.undo,
|
||||||
function: undoFunction
|
function: undoFunction
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Reference in a new issue