From effa19c467fda5138b601196b53d26a48ed963b1 Mon Sep 17 00:00:00 2001 From: loma-one Date: Tue, 20 Jun 2023 17:26:03 +0200 Subject: [PATCH 01/19] Audon Audio Chat based on the WebRTC Addon This Addon based on webrtc. Audon is a service of realtime audio chat. With small changes, the WebRTC addon could be adapted to Audon so that it can be loaded into an iframe. In the ifram, the Friendica handle can be connected and a room opened. Audio conversations between Friendica users are possible. https://github.com/friendica/friendica-addons/pull/1357 --- audon/README.md | 6 +++++ audon/admin.tpl | 2 ++ audon/audon.php | 68 +++++++++++++++++++++++++++++++++++++++++++++++ audon/messages.po | 53 ++++++++++++++++++++++++++++++++++++ 4 files changed, 129 insertions(+) create mode 100644 audon/README.md create mode 100644 audon/admin.tpl create mode 100644 audon/audon.php create mode 100644 audon/messages.po diff --git a/audon/README.md b/audon/README.md new file mode 100644 index 00000000..beb89a1e --- /dev/null +++ b/audon/README.md @@ -0,0 +1,6 @@ +Audon Addon +============= + +This is a quick and dirty addon to add a [Audon][1] website as an app. This Addon based on webrtc. Audon is a service of realtime audio chat + +[1]: https://codeberg.org/nmkj/audon diff --git a/audon/admin.tpl b/audon/admin.tpl new file mode 100644 index 00000000..917ebd67 --- /dev/null +++ b/audon/admin.tpl @@ -0,0 +1,2 @@ +{{include file="field_input.tpl" field=$audonurl}} +
diff --git a/audon/audon.php b/audon/audon.php new file mode 100644 index 00000000..10eeb514 --- /dev/null +++ b/audon/audon.php @@ -0,0 +1,68 @@ +< + * Author: Tobias Diekershoff + * Author: Matthias Ebers + */ + +use Friendica\Core\Hook; +use Friendica\Core\Renderer; +use Friendica\DI; + +function audon_install() +{ + Hook::register('app_menu', __FILE__, 'audon_app_menu'); +} + +function audon_app_menu(array &$b) +{ + $b['app_menu'][] = ''; +} + +function audon_addon_admin(string &$o) +{ + $t = Renderer::getMarkupTemplate('admin.tpl', 'addon/audon/'); + $o = Renderer::replaceMacros($t, [ + '$submit' => DI::l10n()->t('Save Settings'), + '$audonurl' => [ + 'audonurl', + 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.'), + ], + ]); +} + +function audon_addon_admin_post() +{ + DI::config()->set('audon', 'audonurl', trim($_POST['audonurl'] ?? '')); +} + +/** + * This is a statement rather than an actual function definition. The simple + * existence of this method is checked to figure out if the addon offers a + * module. + */ +function audon_module() {} + +function audon_content(): string +{ + $o = ''; + + /* landingpage to create chatrooms */ + $audonurl = DI::config()->get('audon','audonurl'); + + /* embedd the landing page in an iframe */ + $o .= '

' . DI::l10n()->t('Audio Chat') . '

'; + $o .= '

' . 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.') . '

'; + if ($audonurl == '') { + $o .= '

' . DI::l10n()->t('Please contact your friendica administrator to remind them to configure the Audon addon.') . '

'; + } else { + $o .= ''; + } + + return $o; +} diff --git a/audon/messages.po b/audon/messages.po new file mode 100644 index 00000000..ad233014 --- /dev/null +++ b/audon/messages.po @@ -0,0 +1,53 @@ +# ADDON webrtc +# Copyright (C) +# This file is distributed under the same license as the Friendica webrtc addon package. +# +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-29 15:56+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: webrtc.php:18 +msgid "WebRTC Videochat" +msgstr "" + +#: webrtc.php:24 +msgid "Save Settings" +msgstr "" + +#: webrtc.php:25 +msgid "WebRTC Base URL" +msgstr "" + +#: webrtc.php:25 +msgid "" +"Page your users will create a WebRTC chat room on. For example you could use " +"https://live.mayfirst.org ." +msgstr "" + +#: webrtc.php:44 +msgid "Video Chat" +msgstr "" + +#: webrtc.php:45 +msgid "" +"WebRTC is a video and audio conferencing tool that works in all modern " +"browsers. Just create a new chat room and send the link to someone you want " +"to chat with." +msgstr "" + +#: webrtc.php:47 +msgid "" +"Please contact your friendica admin and send a reminder to configure the " +"WebRTC addon." +msgstr "" From 630f4ab9914efdd4b863b642925b5c8348b23f95 Mon Sep 17 00:00:00 2001 From: loma-one Date: Tue, 20 Jun 2023 17:26:57 +0200 Subject: [PATCH 02/19] =?UTF-8?q?=E2=80=9Eaudon/messages.po=E2=80=9C=20l?= =?UTF-8?q?=C3=B6schen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- audon/messages.po | 53 ----------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 audon/messages.po diff --git a/audon/messages.po b/audon/messages.po deleted file mode 100644 index ad233014..00000000 --- a/audon/messages.po +++ /dev/null @@ -1,53 +0,0 @@ -# ADDON webrtc -# Copyright (C) -# This file is distributed under the same license as the Friendica webrtc addon package. -# -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-04-29 15:56+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: webrtc.php:18 -msgid "WebRTC Videochat" -msgstr "" - -#: webrtc.php:24 -msgid "Save Settings" -msgstr "" - -#: webrtc.php:25 -msgid "WebRTC Base URL" -msgstr "" - -#: webrtc.php:25 -msgid "" -"Page your users will create a WebRTC chat room on. For example you could use " -"https://live.mayfirst.org ." -msgstr "" - -#: webrtc.php:44 -msgid "Video Chat" -msgstr "" - -#: webrtc.php:45 -msgid "" -"WebRTC is a video and audio conferencing tool that works in all modern " -"browsers. Just create a new chat room and send the link to someone you want " -"to chat with." -msgstr "" - -#: webrtc.php:47 -msgid "" -"Please contact your friendica admin and send a reminder to configure the " -"WebRTC addon." -msgstr "" From 4e17f3c9dbc68dea0b0bca6ae73b4e44e403d7c3 Mon Sep 17 00:00:00 2001 From: loma-one Date: Tue, 20 Jun 2023 17:27:07 +0200 Subject: [PATCH 03/19] =?UTF-8?q?=E2=80=9Eaudon/admin.tpl=E2=80=9C=20l?= =?UTF-8?q?=C3=B6schen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- audon/admin.tpl | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 audon/admin.tpl diff --git a/audon/admin.tpl b/audon/admin.tpl deleted file mode 100644 index 917ebd67..00000000 --- a/audon/admin.tpl +++ /dev/null @@ -1,2 +0,0 @@ -{{include file="field_input.tpl" field=$audonurl}} -
From 9035144e5bff9dfb3cec233aa10de6c10fb52981 Mon Sep 17 00:00:00 2001 From: loma-one Date: Tue, 20 Jun 2023 17:27:41 +0200 Subject: [PATCH 04/19] =?UTF-8?q?Dateien=20hochladen=20nach=20=E2=80=9Eaud?= =?UTF-8?q?on/templates=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- audon/templates/admin.tpl | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 audon/templates/admin.tpl diff --git a/audon/templates/admin.tpl b/audon/templates/admin.tpl new file mode 100644 index 00000000..917ebd67 --- /dev/null +++ b/audon/templates/admin.tpl @@ -0,0 +1,2 @@ +{{include file="field_input.tpl" field=$audonurl}} +
From a3dc032a51af30e87a659116b9bc5c6c6ab6d6b3 Mon Sep 17 00:00:00 2001 From: loma-one Date: Tue, 20 Jun 2023 17:28:39 +0200 Subject: [PATCH 05/19] =?UTF-8?q?=E2=80=9Eaudon/lang/C=E2=80=9C=20hinzuf?= =?UTF-8?q?=C3=BCgen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- audon/lang/C | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 audon/lang/C diff --git a/audon/lang/C b/audon/lang/C new file mode 100644 index 00000000..ad233014 --- /dev/null +++ b/audon/lang/C @@ -0,0 +1,53 @@ +# ADDON webrtc +# Copyright (C) +# This file is distributed under the same license as the Friendica webrtc addon package. +# +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-04-29 15:56+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: webrtc.php:18 +msgid "WebRTC Videochat" +msgstr "" + +#: webrtc.php:24 +msgid "Save Settings" +msgstr "" + +#: webrtc.php:25 +msgid "WebRTC Base URL" +msgstr "" + +#: webrtc.php:25 +msgid "" +"Page your users will create a WebRTC chat room on. For example you could use " +"https://live.mayfirst.org ." +msgstr "" + +#: webrtc.php:44 +msgid "Video Chat" +msgstr "" + +#: webrtc.php:45 +msgid "" +"WebRTC is a video and audio conferencing tool that works in all modern " +"browsers. Just create a new chat room and send the link to someone you want " +"to chat with." +msgstr "" + +#: webrtc.php:47 +msgid "" +"Please contact your friendica admin and send a reminder to configure the " +"WebRTC addon." +msgstr "" From e391a65695770375b368f900fbe3c9f239cbc6d9 Mon Sep 17 00:00:00 2001 From: loma-one Date: Tue, 20 Jun 2023 17:47:55 +0200 Subject: [PATCH 06/19] =?UTF-8?q?=E2=80=9Eaudon/audon.php=E2=80=9C=20?= =?UTF-8?q?=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- audon/audon.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audon/audon.php b/audon/audon.php index 10eeb514..d0930227 100644 --- a/audon/audon.php +++ b/audon/audon.php @@ -1,4 +1,4 @@ -< Date: Fri, 18 Aug 2023 16:17:47 +0200 Subject: [PATCH 07/19] audon/audon.php aktualisiert --- audon/audon.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/audon/audon.php b/audon/audon.php index d0930227..59a79ea3 100644 --- a/audon/audon.php +++ b/audon/audon.php @@ -1,6 +1,6 @@ @@ -26,13 +26,13 @@ function audon_addon_admin(string &$o) { $t = Renderer::getMarkupTemplate('admin.tpl', 'addon/audon/'); $o = Renderer::replaceMacros($t, [ - '$submit' => DI::l10n()->t('Save Settings'), + '$submit' => DI::l10n()->t('Save Settings'), '$audonurl' => [ - 'audonurl', - DI::l10n()->t('audon Base URL'), - DI::config()->get('audon','audonurl'), + 'audonurl', + 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.'), - ], + ], ]); } From 38460a4cff68b24075300c5c7c493c03bd387ee4 Mon Sep 17 00:00:00 2001 From: loma-one Date: Fri, 18 Aug 2023 16:18:33 +0200 Subject: [PATCH 08/19] audon/audon.php aktualisiert --- audon/audon.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audon/audon.php b/audon/audon.php index 59a79ea3..bf0211b3 100644 --- a/audon/audon.php +++ b/audon/audon.php @@ -31,7 +31,7 @@ function audon_addon_admin(string &$o) 'audonurl', 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 a audon Audio chat room on. For example you could use https://audon.space.'), ], ]); } From 65d8e467fe5b674a1622712af7b44d25c0a3a92d Mon Sep 17 00:00:00 2001 From: loma-one Date: Fri, 18 Aug 2023 16:24:04 +0200 Subject: [PATCH 09/19] audon/templates/admin.tpl aktualisiert --- audon/templates/admin.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audon/templates/admin.tpl b/audon/templates/admin.tpl index 917ebd67..e2758583 100644 --- a/audon/templates/admin.tpl +++ b/audon/templates/admin.tpl @@ -1,2 +1,2 @@ {{include file="field_input.tpl" field=$audonurl}} -
+ From c93e6840fa68cc10bdf183c07d1e96142c28b03b Mon Sep 17 00:00:00 2001 From: loma-one Date: Fri, 18 Aug 2023 16:48:13 +0200 Subject: [PATCH 10/19] audon/audon.php aktualisiert --- audon/audon.php | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/audon/audon.php b/audon/audon.php index bf0211b3..5d41fec7 100644 --- a/audon/audon.php +++ b/audon/audon.php @@ -1,7 +1,7 @@ * Author: Tobias Diekershoff @@ -19,7 +19,7 @@ function audon_install() function audon_app_menu(array &$b) { - $b['app_menu'][] = ''; + $b['app_menu'][] = ''; } 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 .= '

' . DI::l10n()->t('Audio Chat') . '

'; $o .= '

' . 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.') . '

'; if ($audonurl == '') { - $o .= '

' . DI::l10n()->t('Please contact your friendica administrator to remind them to configure the Audon addon.') . '

'; + $o .= '

' . DI::l10n()->t('Please contact your Friendica administrator to remind them to configure the Audon addon.') . '

'; } else { $o .= ''; } From 8ef6fafdaa91b273bc10dc6d5a74ab3efd72babf Mon Sep 17 00:00:00 2001 From: loma-one Date: Fri, 18 Aug 2023 16:51:29 +0200 Subject: [PATCH 11/19] audon/audon.php aktualisiert --- audon/audon.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audon/audon.php b/audon/audon.php index 5d41fec7..553e7f5c 100644 --- a/audon/audon.php +++ b/audon/audon.php @@ -1,7 +1,7 @@ * Author: Tobias Diekershoff From a26c2c975825051bd86907c2d96d157ccdd72239 Mon Sep 17 00:00:00 2001 From: loma-one Date: Fri, 18 Aug 2023 17:19:03 +0200 Subject: [PATCH 12/19] audon/lang/C aktualisiert --- audon/lang/C | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/audon/lang/C b/audon/lang/C index ad233014..3e7df977 100644 --- a/audon/lang/C +++ b/audon/lang/C @@ -1,6 +1,6 @@ -# ADDON webrtc +# ADDON Audon # Copyright (C) -# This file is distributed under the same license as the Friendica webrtc addon package. +# This file is distributed under the same license as the Friendica Audon addon package. # # #, fuzzy @@ -17,37 +17,37 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: webrtc.php:18 -msgid "WebRTC Videochat" +#: audon.php:19 +msgid "Audon audio conferencing" msgstr "" -#: webrtc.php:24 +#: audon.php:25 msgid "Save Settings" msgstr "" -#: webrtc.php:25 -msgid "WebRTC Base URL" +#: audon.php:26 +msgid "Audon Base URL" msgstr "" -#: webrtc.php:25 +#: audon.php:26 msgid "" -"Page your users will create a WebRTC chat room on. For example you could use " -"https://live.mayfirst.org ." +"Page your users will create a Audon audio conferencing on. For example you could use " +"https://audon.space ." msgstr "" -#: webrtc.php:44 -msgid "Video Chat" +#: audon.php:44 +msgid "Audio Chat" msgstr "" -#: webrtc.php:45 +#: audon.php:45 msgid "" -"WebRTC is a video and audio conferencing tool that works in all modern " -"browsers. Just create a new chat room and send the link to someone you want " -"to chat with." +"Audon is a audio conferencing tool that works in all modern " +"browsers. Just create a new Audio room and send the link to someone you want " +"to talk with." msgstr "" -#: webrtc.php:47 +#: audon.php:47 msgid "" "Please contact your friendica admin and send a reminder to configure the " -"WebRTC addon." +"Audon addon." msgstr "" From 9786b605b62abcfa4add190f98346150d1846229 Mon Sep 17 00:00:00 2001 From: loma-one Date: Fri, 18 Aug 2023 18:26:01 +0200 Subject: [PATCH 13/19] audon/lang/C aktualisiert now :) --- audon/lang/C | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/audon/lang/C b/audon/lang/C index 3e7df977..c8fd38af 100644 --- a/audon/lang/C +++ b/audon/lang/C @@ -1,6 +1,6 @@ -# ADDON Audon +# ADDON audon # Copyright (C) -# This file is distributed under the same license as the Friendica Audon addon package. +# This file is distributed under the same license as the Friendica audon addon package. # # #, fuzzy @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-04-29 15:56+0200\n" +"POT-Creation-Date: 2023-08-18 18:23+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,37 +17,36 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: audon.php:19 -msgid "Audon audio conferencing" +#: audon.php:22 +msgid "Audon Audiochat" msgstr "" -#: audon.php:25 +#: audon.php:29 msgid "Save Settings" msgstr "" -#: audon.php:26 +#: audon.php:32 msgid "Audon Base URL" msgstr "" -#: audon.php:26 +#: audon.php:34 msgid "" -"Page your users will create a Audon audio conferencing on. For example you could use " -"https://audon.space ." +"Page your users will create an Audon audio chat room on. For example you " +"could use https://audon.space." msgstr "" -#: audon.php:44 +#: audon.php:60 msgid "Audio Chat" msgstr "" -#: audon.php:45 +#: audon.php:61 msgid "" -"Audon is a audio conferencing tool that works in all modern " -"browsers. Just create a new Audio room and send the link to someone you want " -"to talk with." +"Audon is an audio conferencing tool. Connect your account to Audon and " +"create a room. Share the generated link to talk to other participants." msgstr "" -#: audon.php:47 +#: audon.php:63 msgid "" -"Please contact your friendica admin and send a reminder to configure the " +"Please contact your Friendica administrator to remind them to configure the " "Audon addon." msgstr "" From 476fdd1bb7a7d74efb4f903c0a7e307e31c7e83e Mon Sep 17 00:00:00 2001 From: loma-one Date: Fri, 18 Aug 2023 18:35:33 +0200 Subject: [PATCH 14/19] =?UTF-8?q?audon/lang/C=20gel=C3=B6scht?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: loma-one --- audon/lang/C | 52 ---------------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 audon/lang/C diff --git a/audon/lang/C b/audon/lang/C deleted file mode 100644 index c8fd38af..00000000 --- a/audon/lang/C +++ /dev/null @@ -1,52 +0,0 @@ -# ADDON audon -# Copyright (C) -# This file is distributed under the same license as the Friendica audon addon package. -# -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-18 18:23+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: audon.php:22 -msgid "Audon Audiochat" -msgstr "" - -#: audon.php:29 -msgid "Save Settings" -msgstr "" - -#: audon.php:32 -msgid "Audon Base URL" -msgstr "" - -#: audon.php:34 -msgid "" -"Page your users will create an Audon audio chat room on. For example you " -"could use https://audon.space." -msgstr "" - -#: audon.php:60 -msgid "Audio Chat" -msgstr "" - -#: audon.php:61 -msgid "" -"Audon is an audio conferencing tool. Connect your account to Audon and " -"create a room. Share the generated link to talk to other participants." -msgstr "" - -#: audon.php:63 -msgid "" -"Please contact your Friendica administrator to remind them to configure the " -"Audon addon." -msgstr "" From 7ef59da623fcd3813b8f7a695edafd1b203107a7 Mon Sep 17 00:00:00 2001 From: loma-one Date: Fri, 18 Aug 2023 18:36:03 +0200 Subject: [PATCH 15/19] =?UTF-8?q?audon/C/messages.po=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- audon/C/messages.po | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 audon/C/messages.po diff --git a/audon/C/messages.po b/audon/C/messages.po new file mode 100644 index 00000000..e69de29b From 2fa030aa65244c6037030ff60377a677cfc40488 Mon Sep 17 00:00:00 2001 From: loma-one Date: Fri, 18 Aug 2023 18:36:32 +0200 Subject: [PATCH 16/19] audon/C/messages.po aktualisiert --- audon/C/messages.po | 52 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/audon/C/messages.po b/audon/C/messages.po index e69de29b..c8fd38af 100644 --- a/audon/C/messages.po +++ b/audon/C/messages.po @@ -0,0 +1,52 @@ +# ADDON audon +# Copyright (C) +# This file is distributed under the same license as the Friendica audon addon package. +# +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-08-18 18:23+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: audon.php:22 +msgid "Audon Audiochat" +msgstr "" + +#: audon.php:29 +msgid "Save Settings" +msgstr "" + +#: audon.php:32 +msgid "Audon Base URL" +msgstr "" + +#: audon.php:34 +msgid "" +"Page your users will create an Audon audio chat room on. For example you " +"could use https://audon.space." +msgstr "" + +#: audon.php:60 +msgid "Audio Chat" +msgstr "" + +#: audon.php:61 +msgid "" +"Audon is an audio conferencing tool. Connect your account to Audon and " +"create a room. Share the generated link to talk to other participants." +msgstr "" + +#: audon.php:63 +msgid "" +"Please contact your Friendica administrator to remind them to configure the " +"Audon addon." +msgstr "" From 983d334ef5d82d63eab4de56d0c74342324f257c Mon Sep 17 00:00:00 2001 From: loma-one Date: Fri, 18 Aug 2023 18:37:37 +0200 Subject: [PATCH 17/19] =?UTF-8?q?audon/C/messages.po=20gel=C3=B6scht?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- audon/C/messages.po | 52 --------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 audon/C/messages.po diff --git a/audon/C/messages.po b/audon/C/messages.po deleted file mode 100644 index c8fd38af..00000000 --- a/audon/C/messages.po +++ /dev/null @@ -1,52 +0,0 @@ -# ADDON audon -# Copyright (C) -# This file is distributed under the same license as the Friendica audon addon package. -# -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-08-18 18:23+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: audon.php:22 -msgid "Audon Audiochat" -msgstr "" - -#: audon.php:29 -msgid "Save Settings" -msgstr "" - -#: audon.php:32 -msgid "Audon Base URL" -msgstr "" - -#: audon.php:34 -msgid "" -"Page your users will create an Audon audio chat room on. For example you " -"could use https://audon.space." -msgstr "" - -#: audon.php:60 -msgid "Audio Chat" -msgstr "" - -#: audon.php:61 -msgid "" -"Audon is an audio conferencing tool. Connect your account to Audon and " -"create a room. Share the generated link to talk to other participants." -msgstr "" - -#: audon.php:63 -msgid "" -"Please contact your Friendica administrator to remind them to configure the " -"Audon addon." -msgstr "" From dfbf8d4acf5ef674ed87147b63188afb1e72b83e Mon Sep 17 00:00:00 2001 From: loma-one Date: Fri, 18 Aug 2023 18:38:06 +0200 Subject: [PATCH 18/19] =?UTF-8?q?audon/lang/C/messages.po=20hinzugef=C3=BC?= =?UTF-8?q?gt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- audon/lang/C/messages.po | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 audon/lang/C/messages.po diff --git a/audon/lang/C/messages.po b/audon/lang/C/messages.po new file mode 100644 index 00000000..e69de29b From 94a4c93368bf90dd074f010d05918f3a170e5672 Mon Sep 17 00:00:00 2001 From: loma-one Date: Fri, 18 Aug 2023 18:38:30 +0200 Subject: [PATCH 19/19] audon/lang/C/messages.po aktualisiert --- audon/lang/C/messages.po | 52 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/audon/lang/C/messages.po b/audon/lang/C/messages.po index e69de29b..c8fd38af 100644 --- a/audon/lang/C/messages.po +++ b/audon/lang/C/messages.po @@ -0,0 +1,52 @@ +# ADDON audon +# Copyright (C) +# This file is distributed under the same license as the Friendica audon addon package. +# +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-08-18 18:23+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: audon.php:22 +msgid "Audon Audiochat" +msgstr "" + +#: audon.php:29 +msgid "Save Settings" +msgstr "" + +#: audon.php:32 +msgid "Audon Base URL" +msgstr "" + +#: audon.php:34 +msgid "" +"Page your users will create an Audon audio chat room on. For example you " +"could use https://audon.space." +msgstr "" + +#: audon.php:60 +msgid "Audio Chat" +msgstr "" + +#: audon.php:61 +msgid "" +"Audon is an audio conferencing tool. Connect your account to Audon and " +"create a room. Share the generated link to talk to other participants." +msgstr "" + +#: audon.php:63 +msgid "" +"Please contact your Friendica administrator to remind them to configure the " +"Audon addon." +msgstr ""