1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 09:49:28 +02:00

Fix typo.

This commit is contained in:
Caleb Mazalevskis 2019-12-23 20:57:09 +08:00
parent 33f49442dd
commit 8108fc1e68
No known key found for this signature in database
GPG key ID: 082E6BC1046FAB95
3 changed files with 7 additions and 7 deletions

View file

@ -11,7 +11,7 @@
<div class="panel-body"><?php include './general_settings_upload.php'; ?></div> <div class="panel-body"><?php include './general_settings_upload.php'; ?></div>
</div> </div>
</div> </div>
<div class="col-md-6"> <div class="col-md-6">
<div class="panel panel-default"> <div class="panel panel-default">
<div class="panel-heading"><?php echo __('Encoder') ?></div> <div class="panel-heading"><?php echo __('Encoder') ?></div>

View file

@ -1,9 +1,9 @@
<?php <?php
$filter = array( $filter = array(
'encoderNetwork'=>'The <a target="_blank" href="https://github.com/WWBN/AVideo-Encoder-Network">Encoder Network</a> URL ', 'encoderNetwork'=>'The <a target="_blank" href="https://github.com/WWBN/AVideo-Encoder-Network">Encoder Network</a> URL ',
'useEncoderNetworkRecomendation'=>'Let the encoder network (If configured) choose what is the best encoder to use', 'useEncoderNetworkRecomendation'=>'Let the encoder network (if configured) choose what is the best encoder to use',
'doNotShowUploadMP4Button'=>'Users will not be able to direct upload, only use the encoder', 'doNotShowUploadMP4Button'=>'Users will not be able to directly upload, only use the encoder',
'doNotShowImportMP4Button'=>'Disable the option to import MP4 videos from your local (Server) storage', 'doNotShowImportMP4Button'=>'Disable the option to import MP4 videos from your local (Server) storage',
'doNotShowEncoderButton'=>'Do not show the button to the encoder', 'doNotShowEncoderButton'=>'Do not show the button to the encoder',
'doNotShowEmbedButton'=>'Check this if you will not use embed videos on your site'); 'doNotShowEmbedButton'=>'Check this if you will not use embed videos on your site');
createTable("CustomizeAdvanced", $filter); createTable("CustomizeAdvanced", $filter);

View file

@ -1,7 +1,7 @@
<?php <?php
$filter = array( $filter = array(
'disableNativeSignUp'=>'This is usefull if you want to use our LDAP plugin or maybe only allow authentication from Social Networks', 'disableNativeSignUp'=>'This is useful if you want to use our LDAP plugin or maybe only allow authentication from Social Networks',
'disableNativeSignIn'=>'This is usefull if you want to use our LDAP plugin or maybe only allow authentication from Social Networks', 'disableNativeSignIn'=>'This is useful if you want to use our LDAP plugin or maybe only allow authentication from Social Networks',
'disablePersonalInfo'=>'Disable the My Account personal info like: First and Last Name and address', 'disablePersonalInfo'=>'Disable the My Account personal info like: First and Last Name and address',
'newUsersCanStream'=>'Automatic allow new users to use your Livestream Platform', 'newUsersCanStream'=>'Automatic allow new users to use your Livestream Platform',
'doNotIndentifyByEmail'=>'Do not show user\'s email on the site', 'doNotIndentifyByEmail'=>'Do not show user\'s email on the site',
@ -11,4 +11,4 @@
'onlyVerifiedEmailCanUpload'=>'Users must verify their emails before upload/submit videos', 'onlyVerifiedEmailCanUpload'=>'Users must verify their emails before upload/submit videos',
'sendVerificationMailAutomaic'=>'After sign up we will automatic send a verification email', 'sendVerificationMailAutomaic'=>'After sign up we will automatic send a verification email',
'userMustBeLoggedIn'=>'Hide the website to non logged users'); 'userMustBeLoggedIn'=>'Hide the website to non logged users');
createTable("CustomizeUser", $filter); createTable("CustomizeUser", $filter);