diff --git a/angular_app/js/controllers.js b/angular_app/js/controllers.js index 25263e5..ca202e9 100644 --- a/angular_app/js/controllers.js +++ b/angular_app/js/controllers.js @@ -68,9 +68,9 @@ eventManControllers.controller('EventsListCtrl', ['$scope', 'Event', '$modal', ' $scope.personsOrderProp = 'name'; $scope.eventsOrderProp = "'-begin-date'"; - $scope.confirm_delete = 'You really want to delete this event?'; + $scope.confirm_delete = 'Do you really want to delete this event?'; $rootScope.$on('$translateChangeSuccess', function () { - $translate('You really want to delete this event?').then(function (translation) { + $translate('Do you really want to delete this event?').then(function (translation) { $scope.confirm_delete = translation; }); }); @@ -280,9 +280,9 @@ eventManControllers.controller('PersonsListCtrl', ['$scope', 'Person', 'Setting' $scope.customFields = Setting.query({setting: 'person_custom_field', in_persons_list: true}); - $scope.confirm_delete = 'You really want to delete this person?'; + $scope.confirm_delete = 'Do you really want to delete this person?'; $rootScope.$on('$translateChangeSuccess', function () { - $translate('You really want to delete this person?').then(function (translation) { + $translate('Do you really want to delete this person?').then(function (translation) { $scope.confirm_delete = translation; }); }); diff --git a/static/i18n/it_IT.json b/static/i18n/it_IT.json index 99a630c..4b3836c 100644 --- a/static/i18n/it_IT.json +++ b/static/i18n/it_IT.json @@ -52,7 +52,7 @@ "Registered": "Registrato", "Add person": "Aggiungi persona", "Persons:": "Persone:", - "You really want to delete this event?": "Vuoi veramente cancellare questo evento?", + "Do you really want to delete this event?": "Vuoi veramente cancellare questo evento?", "{{person_name}} {{person_surname}} successfully added to event {{event_title}}": "{{person_name}} {{person_surname}} aggiunto con successo all'evento {{event_title}}", - "You really want to delete this person?": "Vuoi veramente cancellare questa persona?" + "Do you really want to delete this person?": "Vuoi veramente cancellare questa persona?" }