]> git.mxchange.org Git - friendica-addons.git/commitdiff
audon/audon.php aktualisiert
authorloma-one <loma-one@noreply.git.friendi.ca>
Fri, 18 Aug 2023 14:48:13 +0000 (16:48 +0200)
committerHypolite Petovan <hypolite@mrpetovan.com>
Fri, 18 Aug 2023 16:41:32 +0000 (18:41 +0200)
audon/audon.php

index bf0211b38a863d29fdeae190b9e79aa9a025f0af..5d41fec73f1e8a36b87d6b6069c558b52be12ab4 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
- * Name: AUDON Application
- * Description: add a audon instance for audio. Based on webRTC Addon
+ * Name: Audon Application
+ * Description: add a audon instance. Based on webRTC Addon
  * Version: 0.1
  * Author: Stephen Mahood <https://friends.mayfirst.org/profile/marxistvegan>
  * Author: Tobias Diekershoff <https://f.diekershoff.de/profile/tobias>
@@ -19,7 +19,7 @@ function audon_install()
 
 function audon_app_menu(array &$b)
 {
-       $b['app_menu'][] = '<div class="app-title"><a href="audon">' . DI::l10n()->t('audon Audiochat') . '</a></div>';
+       $b['app_menu'][] = '<div class="app-title"><a href="audon">' . DI::l10n()->t('Audon Audiochat') . '</a></div>';
 }
 
 function audon_addon_admin(string &$o)
@@ -29,9 +29,9 @@ function audon_addon_admin(string &$o)
                '$submit'   => DI::l10n()->t('Save Settings'), 
                '$audonurl' => [
                        'audonurl', 
-                       DI::l10n()->t('audon Base URL'), 
+                       DI::l10n()->t('Audon Base URL'), 
                        DI::config()->get('audon','audonurl'), 
-                       DI::l10n()->t('Page your users will create a audon Audio chat room on. For example you could use https://audon.space.'), 
+                       DI::l10n()->t('Page your users will create an Audon audio chat room on. For example you could use https://audon.space.'), 
                ], 
        ]);
 }
@@ -53,13 +53,14 @@ function audon_content(): string
        $o = '';
 
        /* landingpage to create chatrooms */
-       $audonurl = DI::config()->get('audon','audonurl');
+       $audonurl = DI::config()->get('audon', 'audonurl');
+
 
        /* embedd the landing page in an iframe */
        $o .= '<h2>' . DI::l10n()->t('Audio Chat') . '</h2>';
        $o .= '<p>' . DI::l10n()->t('Audon is an audio conferencing tool. Connect your account to Audon and create a room. Share the generated link to talk to other participants.') . '</p>';
        if ($audonurl == '') {
-               $o .= '<p>' . DI::l10n()->t('Please contact your friendica administrator to remind them to configure the Audon addon.') . '</p>';
+               $o .= '<p>' . DI::l10n()->t('Please contact your Friendica administrator to remind them to configure the Audon addon.') . '</p>';
        } else {
                $o .= '<iframe src="' . $audonurl . '" width="740px" height="600px"></iframe>';
        }