@@ -74,19 +74,19 @@ function i18n(deployment) {
74
74
/** @export {string} @desc The message says that that many replicas were updated in the deployment
75
75
(deployment details page). */
76
76
MSG_DEPLOYMENT_DETAIL_REPLICAS_UPDATED_LABEL :
77
- goog . getMsg ( '{$replicas} updated' , { 'replicas' : deployment . status . updated } ) ,
77
+ goog . getMsg ( '{$replicas} updated' , { 'replicas' : deployment . statusInfo . updated } ) ,
78
78
/** @export {string} @desc The message says that that many replicas (in total) are in the deployment
79
79
(deployment details page). */
80
80
MSG_DEPLOYMENT_DETAIL_REPLICAS_TOTAL_LABEL :
81
- goog . getMsg ( '{$replicas} total' , { 'replicas' : deployment . status . replicas } ) ,
81
+ goog . getMsg ( '{$replicas} total' , { 'replicas' : deployment . statusInfo . replicas } ) ,
82
82
/** @export {string} @desc The message says that that many replicas are available in the deployment
83
83
(deployment details page). */
84
84
MSG_DEPLOYMENT_DETAIL_REPLICAS_AVAILABLE_LABEL :
85
- goog . getMsg ( '{$replicas} available' , { 'replicas' : deployment . status . available } ) ,
85
+ goog . getMsg ( '{$replicas} available' , { 'replicas' : deployment . statusInfo . available } ) ,
86
86
/** @export {string} @desc The message says that that many replicas are unavailable in the deployment
87
87
(deployment details page). */
88
88
MSG_DEPLOYMENT_DETAIL_REPLICAS_UNAVAILABLE_LABEL :
89
- goog . getMsg ( '{$replicas} unavailable' , { 'replicas' : deployment . status . unavailable } ) ,
89
+ goog . getMsg ( '{$replicas} unavailable' , { 'replicas' : deployment . statusInfo . unavailable } ) ,
90
90
/** @export {string} @desc The message says how many replicas are allowed to be unavailable during an
91
91
update in the deployment (deployment details page). */
92
92
MSG_DEPLOYMENT_DETAIL_MAX_UNAVAILABLE_LABEL : goog . getMsg (
0 commit comments