deprecated the XMPP addon

This commit is contained in:
Tobias Diekershoff 2021-11-27 17:07:48 +01:00
commit 8be6275d43
61 changed files with 21163 additions and 0 deletions

53
xmpp/lang/ar/messages.po Normal file
View file

@ -0,0 +1,53 @@
# ADDON xmpp
# Copyright (C)
# This file is distributed under the same license as the Friendica xmpp addon package.
#
#
# Translators:
# Farida Khalaf <faridakhalaf@hotmail.com>, 2021
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-25 13:16+0000\n"
"PO-Revision-Date: 2017-11-27 10:38+0000\n"
"Last-Translator: Farida Khalaf <faridakhalaf@hotmail.com>, 2021\n"
"Language-Team: Arabic (https://www.transifex.com/Friendica/teams/12172/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#: xmpp.php:57 xmpp.php:61
msgid "XMPP-Chat (Jabber)"
msgstr ""
#: xmpp.php:65
msgid "Enable Webchat"
msgstr ""
#: xmpp.php:70
msgid "Individual Credentials"
msgstr ""
#: xmpp.php:76 xmpp.php:102
msgid "Jabber BOSH host"
msgstr "مضيف BOSH لجابر "
#: xmpp.php:85 xmpp.php:101
msgid "Save Settings"
msgstr "حفظ الإعدادات"
#: xmpp.php:103
msgid "Use central userbase"
msgstr ""
#: xmpp.php:103
msgid ""
"If enabled, users will automatically login to an ejabberd server that has to"
" be installed on this machine with synchronized credentials via the "
"\"auth_ejabberd.php\" script."
msgstr ""

9
xmpp/lang/ar/strings.php Normal file
View file

@ -0,0 +1,9 @@
<?php
if(! function_exists("string_plural_select_ar")) {
function string_plural_select_ar($n){
$n = intval($n);
if ($n==0) { return 0; } else if ($n==1) { return 1; } else if ($n==2) { return 2; } else if ($n%100>=3 && $n%100<=10) { return 3; } else if ($n%100>=11 && $n%100<=99) { return 4; } else { return 5; }
}}
$a->strings['Jabber BOSH host'] = 'مضيف BOSH لجابر ';
$a->strings['Save Settings'] = 'حفظ الإعدادات';