diff --git a/www/js/analog.js b/www/js/analog.js index b4fb0de3..6db926d7 100644 --- a/www/js/analog.js +++ b/www/js/analog.js @@ -117,7 +117,7 @@ function showAdjustmentsEditor( progAdjust, callback ) { "
" + "

" + _( "Notice: If you want to combine multiple sensors, then build a sensor group. " ) + - _( "See Help Documentation for details." ) + + _( "See help documentation for details." ) + "

" + "
" + @@ -168,22 +168,22 @@ function showAdjustmentsEditor( progAdjust, callback ) { list += "
" + "" + "" + "" + "" + "" + "" + "" + "" + @@ -282,7 +282,7 @@ function showSensorEditor( sensor, callback ) { "
" + "

" + _( "Edit Sensor Configuration. " ) + - _( "See Help Documentation for details." ) + + _( "See help documentation for details." ) + "

" + "
" + "" + "" + "
" + @@ -372,7 +372,7 @@ function showSensorEditor( sensor, callback ) { areYouSure( _( "This function sets the Modbus ID for one SMT100 sensor. Disconnect all other sensors on this Modbus port. Please confirm." ), "new id=" + newid, function() { sendToOS( "/sa?pw=&nr=" + nr + "&id=" + newid ).done( function() { - window.alert( "SMT100 id assigned!" ); + window.alert( _( "SMT100 id assigned!" ) ); updateAnalogSensor( refresh ); } ); } ); @@ -388,7 +388,7 @@ function showSensorEditor( sensor, callback ) { var nr = parseInt( popup.find( ".nr" ).val() ); for ( var i = 0; i < analogSensors.length; i++ ) { if ( analogSensors[ i ].nr === nr ) { - window.alert( _( "Sensor-Number exists!" ) ); + window.alert( _( "Sensor number exists!" ) ); return; } } @@ -689,7 +689,7 @@ function buildSensorConfig() { } ); list += ""; list += "

"; - list += "

"; + list += "

"; //Program adjustments table: list += "" + @@ -800,7 +800,7 @@ var showAnalogSensorCharts = ( function() { } ); changeHeader( { - title: _( "Analog sensor log" ), + title: _( "Analog Sensor Log" ), leftBtn: { icon: "carat-l", text: _( "Back" ),