improved English strings

This commit is contained in:
Davide Alberani 2015-05-17 10:38:11 +02:00
parent df1aa84d3f
commit 66661c6bb6
2 changed files with 6 additions and 6 deletions

View file

@ -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;
});
});

View file

@ -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?"
}