improved English strings
This commit is contained in:
parent
df1aa84d3f
commit
66661c6bb6
2 changed files with 6 additions and 6 deletions
8
angular_app/js/controllers.js
vendored
8
angular_app/js/controllers.js
vendored
|
@ -68,9 +68,9 @@ eventManControllers.controller('EventsListCtrl', ['$scope', 'Event', '$modal', '
|
||||||
$scope.personsOrderProp = 'name';
|
$scope.personsOrderProp = 'name';
|
||||||
$scope.eventsOrderProp = "'-begin-date'";
|
$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 () {
|
$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;
|
$scope.confirm_delete = translation;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -280,9 +280,9 @@ eventManControllers.controller('PersonsListCtrl', ['$scope', 'Person', 'Setting'
|
||||||
$scope.customFields = Setting.query({setting: 'person_custom_field',
|
$scope.customFields = Setting.query({setting: 'person_custom_field',
|
||||||
in_persons_list: true});
|
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 () {
|
$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;
|
$scope.confirm_delete = translation;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
"Registered": "Registrato",
|
"Registered": "Registrato",
|
||||||
"Add person": "Aggiungi persona",
|
"Add person": "Aggiungi persona",
|
||||||
"Persons:": "Persone:",
|
"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}}",
|
"{{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?"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue