diff --git a/public/javascripts/Admin/src/Admin.GSVLabelView.js b/public/javascripts/Admin/src/Admin.GSVLabelView.js
index db2f808df9..6c296be089 100644
--- a/public/javascripts/Admin/src/Admin.GSVLabelView.js
+++ b/public/javascripts/Admin/src/Admin.GSVLabelView.js
@@ -54,19 +54,19 @@ function AdminGSVLabelView(admin) {
'
| ' +
'' +
'' +
- '' + i18next.t('common:severity') + ' | ' +
+ `${i18next.t('common:severity')} | ` +
' | ' +
'
' +
'' +
- '' + i18next.t('common:temporary') + ' | ' +
+ `${i18next.t('common:temporary')} | ` +
' | ' +
'
' +
'' +
- '' + i18next.t('common:tags') + ' | ' +
+ `${i18next.t('common:tags')} | ` +
' | ' +
'
' +
'' +
- '' + i18next.t('common:description') + ' | ' +
+ `${i18next.t('common:description')} | ` +
' | ' +
'
' +
'' +
@@ -74,14 +74,14 @@ function AdminGSVLabelView(admin) {
' | ' +
'
' +
'' +
- '' + i18next.t('common:labeled') + ' | ' +
+ `${i18next.t('common:labeled')} | ` +
' | ' +
'
' +
'' + i18next.t('common:image-date') + ' | ' +
' | ' +
'' +
'' +
- 'Pano ID | ' +
+ `${i18next.t('common:gsv-info.panorama-id')} | ` +
' | ' +
'
' +
'' +
@@ -89,23 +89,23 @@ function AdminGSVLabelView(admin) {
' | ' +
'
' +
'' +
- 'Latitude | ' +
+ `${i18next.t('common:gsv-info.latitude')} | ` +
' | ' +
'
' +
'' +
- 'Longitude | ' +
+ `${i18next.t('common:gsv-info.longitude')} | ` +
' | ' +
'
' +
'' +
- 'Label ID | ' +
+ `${i18next.t('common:gsv-info.label-id')} | ` +
' | ' +
'
' +
'' +
- 'Street ID | ' +
+ `${i18next.t('common:gsv-info.street-id')} | ` +
' | ' +
'
' +
'' +
- 'Region ID | ' +
+ `${i18next.t('common:gsv-info.region-id')} | ` +
' | ' +
'
';
if (self.admin) {
@@ -330,7 +330,7 @@ function AdminGSVLabelView(admin) {
var panoCallback = function () {
var lat = self.panorama.panorama.getPosition().lat();
var lng = self.panorama.panorama.getPosition().lng();
- self.modalGsvLink.html(`View in Google Street View`);
+ self.modalGsvLink.html(`${i18next.t('common:gsv-info.view-in-gsv')}`);
self.modalLat.html(lat.toFixed(8) + '°');
self.modalLng.html(lng.toFixed(8) + '°');
}