ソースを参照

improved English strings

Davide Alberani 9 年 前
コミット
66661c6bb6
2 ファイル変更6 行追加6 行削除
  1. 4 4
      angular_app/js/controllers.js
  2. 2 2
      static/i18n/it_IT.json

+ 4 - 4
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;
             });
         });

+ 2 - 2
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?"
 }