Skip to content

Commit

Permalink
Change UI references to RTSP2Web to RTSPtoWeb
Browse files Browse the repository at this point in the history
Making change to reflect actual project name spelling to avoid confusion between 2 projects on github.
  • Loading branch information
SteveGilvarry committed Sep 11, 2024
1 parent 8120481 commit 119c8ab
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions scripts/ZoneMinder/lib/ZoneMinder/ConfigData.pm.in
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,8 @@ our @options = (
{
name => 'ZM_RTSP2WEB_PATH',
default => '',
description => 'URL for RTSP2Web port.',
help => q`This value points to the location of the RTSP2Web
description => 'URL for RTSPtoWeb port.',
help => q`This value points to the location of the RTSPtoWeb
install, including username and password. If left blank, this
will default to demo:demo@127.0.0.1:8083
port 8083.
Expand Down
2 changes: 1 addition & 1 deletion web/ajax/modals/function.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@

</div>
<div class="form-group" id="FunctionRTSP2WebEnabled">
<label for="newRTSP2WebEnabled"><?php echo translate('RTSP2Web Enabled') ?></label>
<label for="newRTSP2WebEnabled"><?php echo translate('RTSPtoWeb Enabled') ?></label>
<input type="checkbox" name="newRTSP2WebEnabled" id="newRTSP2WebEnabled" value="1"/>
<?php
if ( isset($OLANG['FUNCTION_RTSP2WEB_ENABLED']) ) {
Expand Down
4 changes: 2 additions & 2 deletions web/lang/en_gb.php
Original file line number Diff line number Diff line change
Expand Up @@ -938,12 +938,12 @@ function zmVlang($langVarArray, $count) {
),
'FUNCTION_RTSP2WEB_ENABLED' => array(
'Help' => '
Attempt to use RTSP2Web streaming server for h264/h265 live view. Experimental, but allows
Attempt to use RTSPtoWeb streaming server for h264/h265 live view. Experimental, but allows
for significantly better performance.'
),
'FUNCTION_RTSP2WEB_TYPE' => array(
'Help' => '
RTSP2Web supports MSE (Media Source Extensions), HLS (HTTP Live Streaming), and WebRTC.
RTSPtoWeb supports MSE (Media Source Extensions), HLS (HTTP Live Streaming), and WebRTC.
Each has its advantages, with WebRTC probably being the most performant, but also the most picky about codecs.'
),
'FUNCTION_JANUS_ENABLED' => array(
Expand Down
6 changes: 3 additions & 3 deletions web/lang/ja_jp.php
Original file line number Diff line number Diff line change
Expand Up @@ -1061,9 +1061,9 @@
'Restart' => '再起動',
'Revoke Token' => 'トークンを取り消す',
'Rewind' => '巻き戻し',
'RTSP2Web Enabled' => 'RTSP2Web有効',
'RTSP2Web Live Stream' => 'RTSP2Webライブストリーム',
'RTSP2Web Type' => 'RTSP2Webタイプ',
'RTSPtoWeb Enabled' => 'RTSP2Web有効',
'RTSPtoWeb Live Stream' => 'RTSP2Webライブストリーム',
'RTSPtoWeb Type' => 'RTSP2Webタイプ',
'RTSPServer' => 'RTSPサーバー',
'RTSPStreamName' => 'RTSPストリーム名',
'Running' => '実行中',
Expand Down
4 changes: 2 additions & 2 deletions web/skins/classic/views/monitor.php
Original file line number Diff line number Diff line change
Expand Up @@ -1218,15 +1218,15 @@ class="nav-link<?php echo $tab == $name ? ' active' : '' ?>"
<input type="text" name="newMonitor[RTSPStreamName]" value="<?php echo validHtmlStr($monitor->RTSPStreamName()) ?>"/>
</li>
<li id="FunctionRTSP2WebEnabled">
<label><?php echo translate('RTSP2Web Live Stream') ?></label>
<label><?php echo translate('RTSPtoWeb Live Stream') ?></label>
<input type="checkbox" name="newMonitor[RTSP2WebEnabled]" value="1"<?php echo $monitor->RTSP2WebEnabled() ? ' checked="checked"' : '' ?>/>
<?php
if ( isset($OLANG['FUNCTION_RTSP2WEB_ENABLED']) ) {
echo '<div class="form-text">'.$OLANG['FUNCTION_RTSP2WEB_ENABLED']['Help'].'</div>';
}
?>
<li>
<label><?php echo translate('RTSP2Web Type') ?> <?php echo $monitor->RTSP2WebType() ?> </label>
<label><?php echo translate('RTSPtoWeb Type') ?> <?php echo $monitor->RTSP2WebType() ?> </label>
<?php echo htmlSelect('newMonitor[RTSP2WebType]', $RTSP2WebTypes, $monitor->RTSP2WebType()); ?>
</li>
<li id="FunctionJanusEnabled">
Expand Down

0 comments on commit 119c8ab

Please sign in to comment.