From 671aa134f72b33e66e05178e22fae7dea917ac25 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 "" -- 2.43.5 From 76f0a0075bc2cf3db9a1a135a32c633750bfbf91 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 "" -- 2.43.5 From 7e927527047a700c1b0e74479e27c43ddef04e24 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}} -
-- 2.43.5 From 38b2700e50d761392f342bc8c5956b0773219727 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}} +
-- 2.43.5 From 8c164c548d009acf767e61e1ed513a9e58d05c95 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 "" -- 2.43.5 From d304652421fd4bf1977dab7f0a6640392a5a2dbf 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.'), - ], + ], ]); } -- 2.43.5 From 53cff6c0d4e576d44eb2b19e5e110e7bab1beedf 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.'), ], ]); } -- 2.43.5 From 776c1996e7609141c39fd324350f868f85f9c90a 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}} -
+ -- 2.43.5 From f93c242568b9125a11d53fcdf355521cdebfb4c2 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 .= ''; } -- 2.43.5 From 730353f9f325036519443fa8906b48c50b356ef8 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 -- 2.43.5 From 6d1c5d800884c8588850be40e667162fac607da5 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 "" -- 2.43.5 From 1418aa30a003a91d5a77966172d67544e6593731 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 "" -- 2.43.5 From b8b80b01ccfe59e19dbc07554a5b8e9a140a99e3 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 "" -- 2.43.5 From c18f29502fb773b4edd18bc6ff21284ea9827609 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 -- 2.43.5 From 62b4a7916ba1d35ce7b605b2c5b88b56b9e03cde 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 "" -- 2.43.5 From 5b5d7accc9ec40172ef9bad90abc4f129f0d1966 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 "" -- 2.43.5 From 2aee37bde7c462a94857b1587711e01dbdb8239c 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 -- 2.43.5 From 60bc097d039620918b49be43ef620ac009fbb7d3 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 "" -- 2.43.5