Welcome version 2025.02-dev!

# Conflicts:
#	CHANGELOG
#	VERSION
#	database.sql
#	src/App.php
#	view/lang/C/messages.po
This commit is contained in:
Hypolite Petovan 2025-01-01 12:16:35 -05:00
commit 8b47378720
52 changed files with 18753 additions and 18556 deletions

View file

@ -2,6 +2,12 @@
#
# SPDX-License-Identifier: CC0-1.0
# The code standard check is just triggered for PRs and pushes to non-stable branches of Friendica
when:
branch:
exclude: [ stable ]
event: [ pull_request, push ]
steps:
restore_cache:
image: meltwater/drone-cache:dev
@ -31,12 +37,19 @@ steps:
volumes:
- /tmp/drone-cache:/tmp/cache
check:
image: friendicaci/php-cs
image: php:8.3
commands:
- apt-get update -q
- DEBIAN_FRONTEND=noninteractive apt-get install -q -y git
- if [ ! -z "$${CI_COMMIT_PULL_REQUEST}" ]; then
git fetch --no-tags origin ${CI_COMMIT_TARGET_BRANCH};
export CHANGED_FILES="$(git diff --name-status $(git merge-base FETCH_HEAD origin/${CI_COMMIT_TARGET_BRANCH})..${CI_COMMIT_SHA} | grep ^A | cut -f2)";
CHANGED_FILES="$(git diff --name-only --diff-filter=ACMRTUXB $(git merge-base FETCH_HEAD origin/${CI_COMMIT_TARGET_BRANCH})..${CI_COMMIT_SHA})";
else
export CHANGED_FILES="$(git diff --name-status ${CI_COMMIT_SHA} | grep ^A | cut -f2)";
CHANGED_FILES="$(git diff --name-only --diff-filter=ACMRTUXB ${CI_COMMIT_SHA})";
fi
- /check-php-cs.sh
- if ! echo "$${CHANGED_FILES}" | grep -qE "^(\\.php-cs-fixer(\\.dist)?\\.php|composer\\.lock)$"; then
EXTRA_ARGS=$(printf -- '--path-mode=intersection\n--\n%s' "$${CHANGED_FILES}");
else
EXTRA_ARGS='';
fi
- ./bin/dev/php-cs-fixer/vendor/bin/php-cs-fixer check --config=.php-cs-fixer.dist.php -v --diff --using-cache=no $${EXTRA_ARGS}

View file

@ -13,6 +13,12 @@ labels:
location: friendica
type: releaser
# CD is triggered after pushing new code to the develop or *-rc branch, excluding the stable branch
when:
repo: friendica/friendica
branch: [ develop, '*-rc' ]
event: push
skip_clone: true
steps:
@ -23,10 +29,6 @@ steps:
- git checkout $CI_COMMIT_BRANCH
- git fetch origin $CI_COMMIT_REF
- git merge $CI_COMMIT_SHA
when:
repo: friendica/friendica
branch: [ develop, '*-rc' ]
event: push
restore_cache:
image: meltwater/drone-cache:dev
settings:
@ -38,10 +40,6 @@ steps:
- '.composer'
volumes:
- /tmp/drone-cache:/tmp/cache
when:
repo: friendica/friendica
branch: [ develop, '*-rc' ]
event: push
composer_install:
image: friendicaci/php8.2:php8.2.16
commands:
@ -51,10 +49,6 @@ steps:
- composer install --no-dev --optimize-autoloader
volumes:
- /etc/hosts:/etc/hosts
when:
repo: friendica/friendica
branch: [ develop, '*-rc' ]
event: push
create_artifacts:
image: debian
commands:
@ -75,10 +69,6 @@ steps:
- ls -lh
- cat "$ARTIFACT.sum256"
- sha256sum "$ARTIFACT"
when:
repo: friendica/friendica
branch: [ develop, '*-rc' ]
event: push
sign_artifacts:
image: plugins/gpgsign
settings:
@ -91,17 +81,9 @@ steps:
exclude:
- build/*.sum256
detach_sign: true
when:
repo: friendica/friendica
branch: [ develop, '*-rc' ]
event: push
publish_artifacts:
image: alpine
commands:
- cp -fr build/* /tmp/friendica_files/
volumes:
- files:/tmp/friendica_files
when:
repo: friendica/friendica
branch: [ develop, '*-rc' ]
event: push

View file

@ -8,8 +8,9 @@ matrix:
PHP_VERSION: 8.2.16
when:
- branch:
exclude: [ stable ]
branch:
exclude: [ stable ]
event: [ pull_request, push ]
# This forces CI executions at the "opensocial" labeled location (because of much more power...)
labels:

View file

@ -2,6 +2,11 @@
#
# SPDX-License-Identifier: CC0-1.0
when:
branch:
exclude: [ stable ]
event: [ pull_request, push ]
steps:
check:
image: fsfe/reuse:latest

View file

@ -2,6 +2,11 @@
#
# SPDX-License-Identifier: CC0-1.0
when:
branch:
exclude: [ stable ]
event: [ pull_request, push ]
steps:
build_xgettext:
image: friendicaci/transifex
@ -11,7 +16,3 @@ steps:
image: friendicaci/transifex
commands:
- /check-messages.sh
when:
- branch:
exclude: [ stable ]

View file

@ -19,6 +19,11 @@ matrix:
labels:
location: opensocial
when:
branch:
exclude: [ stable ]
event: [ pull_request, push ]
steps:
php-lint:
image: php:${PHP_MAJOR_VERSION}

View file

@ -13,6 +13,11 @@ labels:
skip_clone: true
when:
repo: friendica/friendica
branch: stable
event: tag
steps:
clone:
image: alpine/git
@ -21,10 +26,7 @@ steps:
- git checkout $CI_COMMIT_BRANCH
- git fetch origin $CI_COMMIT_REF
- git merge $CI_COMMIT_SHA
when:
repo: friendica/friendica
branch: stable
event: tag
restore_cache:
image: meltwater/drone-cache:dev
settings:
@ -36,10 +38,6 @@ steps:
- '.composer'
volumes:
- /tmp/drone-cache:/tmp/cache
when:
repo: friendica/friendica
branch: stable
event: tag
composer_install:
image: friendicaci/php8.2:php8.2.16
commands:
@ -47,10 +45,6 @@ steps:
- export COMPOSER_HOME=.composer
- composer validate
- composer install --no-dev --optimize-autoloader
when:
repo: friendica/friendica
branch: stable
event: tag
volumes:
- /etc/hosts:/etc/hosts
create_artifacts:
@ -73,10 +67,6 @@ steps:
- ls -lh
- cat "$ARTIFACT.sum256"
- sha256sum "$ARTIFACT"
when:
repo: friendica/friendica
branch: stable
event: tag
sign_artifacts:
image: plugins/gpgsign
settings:
@ -99,7 +89,3 @@ steps:
- cp -fr build/* /tmp/friendica_files/
volumes:
- files:/tmp/friendica_files
when:
repo: friendica/friendica
branch: stable
event: tag

View file

@ -1,16 +1,74 @@
Version 2024.12 (unreleased)
Version 2025.02 (unreleased)
Friendica Core
Friendica Addons
Closed Issues
Version 2024.09 (unreleased)
Version 2024.12 (2024-12-31)
Friendica Core
Updates to the translations AR, BG, CA, CS, DE, EO, ES, ET, FR, GD, HU, IS, IT, JA, NL, PL, RU, SV
Updates to the documentation [annando, bmillwood, tobiasd]
Updates to the themes (frio) [haheute]
Friendica Core is now REUSE compliant [tobiasd]
General code cleanup [annando, nupplaphil, mexon]
Improved federation with Bluesky, Hubzilla, Peertube, threads, Wordpress [annando]
Improved the API [annando]
Improved display of contact connection state [annando]
Improved handling of bad webfinger requests [annando, mexon, zotanmew]
Improved the order of actions on the 2FA settings page [tobiasd]
Improved server type detection [annando]
Improved content negotiation [annando]
Improved expiration [annando]
Improved contact archiving [annando]
Improved delivery of content [annando]
Improved displayed project icons [annando]
Improved splitting of long postings via connectors [annando]
Improved contact import [annando]
Improved URL detection in searches [annando]
Improved handling of blocked users [annando]
Fixed a bug in creating app specific passwords [nupplaphil]
Fixed a bug in importing some notes from Mastodon [annando]
Fixed a bug with postings from buffer including images [annando]
Fixed a apache2 problem with unsafe URLs [annando]
Fixed a bug in the contact settings [annando]
Fixed a bug with latin1 encoded databases [annando]
Fixed a bug while uploading server blocklists [ne20002]
Fixed a bug while parsing events [annando]
Fixed a bug in the initial registry settings [annando]
Fixed a bug in 0Auth with buffer [annando]
Fixed a problem with rich HTML content [annando]
Fixed a bug with private comments [annando]
Fixed a bug in gettext [tobiasd]
Fixed a bug in the installation process [tobiasd]
Fixed schema.org issue [annando]
Added admin info to stats module [nupplaphil]
Added an option to exclude postings with images without ALT text [annando]
Added an option to hide custom emojis [annando]
Added support for HLS [annando]
Added devcontainer for Friendica [ne20002]
Added jetstream support for AT protocol [annando]
Added native probe support for AT protocol [annando]
Removed custom emojis from contact names [annando]
Removed OStatus support [annando]
Friendica Addons
bluesky
Added block functionality [annando]
Added option to complete threads [annando]
Fixed issue with blocking contacts [annando]
Improved handling of startersets [annando]
Improved fetching of postings [annando]
invidious [loma-one]
unicode_smileys [loma-one]
fancybox
Deprecated the addon [tobiasd]
Closed Issues
13270, 13943, 14121, 14126, 14145, 14174, 14212, 14244, 14281,
14292, 14294, 14303, 14307, 14344, 14368, 14370, 14373, 14377,
14381, 14413, 14421, 14525, 14450, 14451, 14464, 14487, 14488,
14491, 14495, 14512, 14587, 14609, 14630
Version 2024.08 (2024-08-17)
Friendica Core

View file

@ -23,6 +23,7 @@ Andi Stadler
Andreas H.
Andreas Neustifter
Andrej Stieben
Andrey Esin
André Alves
André Lohan
Andy
@ -46,6 +47,7 @@ beardyunixer
Beatriz Vital
Beluga
Ben
Ben Millwood
Ben Roberts
ben-utzer
Beringer Zsolt
@ -72,6 +74,7 @@ Christian Wiwie
Cohan Robinson
Colby Sollars
Copiis
cracrayol
CrystalStiletto
csolisr
Cyboulette
@ -91,9 +94,11 @@ Dean Townsley
Denis Chenu
dependabot[bot]
Devlon Duthie
dew-git
Diego Souza
Domovoy
Doru DEACONU
Dr. Tobias Quathamer
Dylan Thiedeke
Développeur égaré
eddy2508
@ -188,8 +193,10 @@ Kris
Kristoffer Grundström
ktlinux
KulikAlex
Laura Hausmann
Lea1995polish
Leberwurscht
Leonard
Leonard Lausen
Lionel Triay
loma-one
@ -227,9 +234,11 @@ Mike Macgirvin
miqrogroove
Morgan McMillian
mpanhans
MrPetovan
mytbk
nathilia-peirce
Nicola Spanti
ne20002
Nicolas Derive
nnsrymni
nobody
@ -308,7 +317,6 @@ snajafov
softmetz
soko1
Spencer Dub
SpencerDub
St John Karp
Stanislav N.
Steffen K9
@ -340,6 +348,7 @@ Tom
Tom Aurlund
Tom Hu
tomamplius
tommy tomson
tomtom84
Tony Baldwin
Torbjörn Andersson
@ -370,6 +379,7 @@ Wanting Chen
Wil Tur
Wladimir Palant
Wouter Broers
www-data
Xiaofei Xu
XMPPはいいぞ
xundeenergie
@ -382,6 +392,7 @@ Zered
zotlabs
zottel
Zvi ben Yaakov (a.k.a rdc)
Éibhear Ó hAnluain
Михаил
Олексій Замковий
朱陈锬

View file

@ -1 +1 @@
2024.12-dev
2025.02-dev

2
Vagrantfile vendored
View file

@ -7,7 +7,7 @@ public_folder = "/vagrant"
Vagrant.configure(2) do |config|
# Set server to Debian 11 / Bullseye 64bit
config.vm.box = "debian/bullseye64"
config.vm.box = "debian/bookworm64"
# Disable automatic box update checking. If you disable this, then
# boxes will only be checked for updates when the user runs

View file

@ -42,6 +42,18 @@ openssl genrsa -out "$SSL_DIR/xip.io.key" 4096
openssl req -new -subj "$(echo -n "$SUBJ" | tr "\n" "/")" -key "$SSL_DIR/xip.io.key" -out "$SSL_DIR/xip.io.csr" -passin pass:$PASSPHRASE
openssl x509 -req -days 365 -in "$SSL_DIR/xip.io.csr" -signkey "$SSL_DIR/xip.io.key" -out "$SSL_DIR/xip.io.crt"
#Install php
echo ">>> Add PHP repository"
apt-get install -qq -y lsb-release ca-certificates apt-transport-https software-properties-common gnupg
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/sury-php.list
wget -qO - https://packages.sury.org/php/apt.gpg | sudo gpg --dearmor --yes -o /etc/apt/trusted.gpg.d/php.gpg
apt update
echo ">>> Installing PHP8"
apt-get install -qq php libapache2-mod-php php8.3-cli php8.3-mysql php8.3-curl php8.3-gd php8.3-mbstring php8.3-xml imagemagick php8.3-imagick php8.3-zip php8.3-gmp php8.3-intl
echo ">>> Installing PHP7"
apt-get install -qq php7.4 php7.4-cli php7.4-mysql php7.4-curl php7.4-gd php7.4-mbstring php7.4-xml php7.4-imagick php7.4-zip php7.4-gmp php7.4-intl
#Install apache2
echo ">>> Installing Apache2 webserver"
@ -53,19 +65,6 @@ vhost -s 192.168.56.10.xip.io -d /var/www -p /etc/ssl/xip.io -c xip.io -a friend
a2dissite 000-default
service apache2 restart
#Install php
echo ">>> Installing PHP7"
apt-get install -qq php libapache2-mod-php php-cli php-mysql php-curl php-gd php-mbstring php-xml imagemagick php-imagick php-zip php-gmp
systemctl restart apache2
echo ">>> Installing PHP8"
apt-get install -qq -y lsb-release ca-certificates apt-transport-https software-properties-common gnupg
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/sury-php.list
wget -qO - https://packages.sury.org/php/apt.gpg | sudo apt-key add -
apt update
apt-get install -qq php8.0 php8.0-cli php8.0-mysql php8.0-curl php8.0-gd php8.0-mbstring php8.0-xml php8.0-imagick php8.0-zip php8.0-gmp
systemctl restart apache2
#Install mysql
echo ">>> Installing Mysql"
debconf-set-selections <<< "mariadb-server mariadb-server/root_password password root"

View file

@ -1,5 +1,5 @@
-- ------------------------------------------
-- Friendica 2024.12-dev (Yellow Archangel)
-- Friendica 2025.02-dev (Interrupted Fern)
-- DB_UPDATE_VERSION 1576
-- ------------------------------------------

View file

@ -63,8 +63,8 @@ use Psr\Log\LoggerInterface;
class App
{
const PLATFORM = 'Friendica';
const CODENAME = 'Yellow Archangel';
const VERSION = '2024.12-dev';
const CODENAME = 'Interrupted Fern';
const VERSION = '2025.02-dev';
public static function fromDice(Dice $dice): self
{

View file

@ -677,11 +677,12 @@ class User
* @param mixed $user_info
* @param string $password
* @param bool $third_party
* @param bool $with_blocked
* @return int User Id if authentication is successful
* @throws HTTPException\ForbiddenException
* @throws HTTPException\NotFoundException
*/
public static function getIdFromPasswordAuthentication($user_info, string $password, bool $third_party = false): int
public static function getIdFromPasswordAuthentication($user_info, string $password, bool $third_party = false, bool $with_blocked = false): int
{
// Addons registered with the "authenticate" hook may create the user on the
// fly. `getAuthenticationInfo` will fail if the user doesn't exist yet. If
@ -689,7 +690,7 @@ class User
// user in our database, if applicable, before re-throwing the exception if
// they fail.
try {
$user = self::getAuthenticationInfo($user_info);
$user = self::getAuthenticationInfo($user_info, $with_blocked);
} catch (Exception $e) {
$username = (is_string($user_info) ? $user_info : $user_info['nickname'] ?? '');
@ -782,10 +783,11 @@ class User
* - User array with at least the uid and the hashed password
*
* @param mixed $user_info
* @param bool $with_blocked
* @return array|null Null if not found/determined
* @throws HTTPException\NotFoundException
*/
public static function getAuthenticationInfo($user_info)
public static function getAuthenticationInfo($user_info, bool $with_blocked = false)
{
$user = null;
@ -804,25 +806,27 @@ class User
throw new Exception(DI::l10n()->t('Not enough information to authenticate'));
}
} elseif (is_int($user_info) || is_string($user_info)) {
$fields = ['uid', 'nickname', 'password', 'legacy_password'];
if (is_int($user_info)) {
$user = DBA::selectFirst(
'user',
['uid', 'nickname', 'password', 'legacy_password'],
[
'uid' => $user_info,
'blocked' => 0,
'account_expired' => 0,
'account_removed' => 0,
'verified' => 1
]
);
$condition = [
'uid' => $user_info,
'account_expired' => false,
'account_removed' => false,
'verified' => true
];
if (!$with_blocked) {
$condition = DBA::mergeConditions($condition, ['blocked' => false]);
}
$user = DBA::selectFirst('user', $fields, $condition);
} else {
$fields = ['uid', 'nickname', 'password', 'legacy_password'];
$condition = [
"(`email` = ? OR `username` = ? OR `nickname` = ?)
AND `verified` AND NOT `blocked` AND NOT `account_removed` AND NOT `account_expired`",
AND `verified` AND NOT `account_removed` AND NOT `account_expired`",
$user_info, $user_info, $user_info
];
if (!$with_blocked) {
$condition = DBA::mergeConditions($condition, ['blocked' => false]);
}
$user = DBA::selectFirst('user', $fields, $condition);
}

View file

@ -273,7 +273,7 @@ class Index extends BaseSearch
*/
private static function tryRedirectToPost(string $search)
{
if (parse_url($search, PHP_URL_SCHEME) == '') {
if (!parse_url($search, PHP_URL_SCHEME) && !preg_match('=^[a-z]+://=', $search)) {
return;
}

View file

@ -291,10 +291,6 @@ final class ATProtocol
*/
public function getUserDid(int $uid, bool $refresh = false): ?string
{
if (!$this->pConfig->get($uid, 'bluesky', 'post')) {
return null;
}
if (!$refresh) {
$did = $this->pConfig->get($uid, 'bluesky', 'did');
if (!empty($did)) {

View file

@ -254,7 +254,7 @@ class Authentication
$record = $this->dba->selectFirst(
'user',
[],
['uid' => User::getIdFromPasswordAuthentication($username, $password)]
['uid' => User::getIdFromPasswordAuthentication($username, $password, false, true)]
);
} catch (Exception $e) {
$this->logger->warning('authenticate: failed login attempt', ['action' => 'login', 'username' => $username, 'ip' => $this->remoteAddress]);
@ -262,6 +262,12 @@ class Authentication
$this->baseUrl->redirect();
}
if ($record['blocked']) {
$this->logger->warning('authenticate: user is blocked', ['action' => 'login', 'username' => $username, 'ip' => $this->remoteAddress]);
DI::sysmsg()->addNotice($this->l10n->t('Login failed because your account is blocked.'));
$this->baseUrl->redirect();
}
if (!$remember) {
$trusted = $this->cookie->get('2fa_cookie_hash') ?? null;
$this->cookie->clear();

View file

@ -189,7 +189,7 @@ class OAuth
'created_at' => DateTimeFormat::utcNow()
];
foreach ([BaseApi::SCOPE_READ, BaseApi::SCOPE_WRITE, BaseApi::SCOPE_WRITE, BaseApi::SCOPE_PUSH] as $scope) {
foreach ([BaseApi::SCOPE_READ, BaseApi::SCOPE_WRITE, BaseApi::SCOPE_FOLLOW, BaseApi::SCOPE_PUSH] as $scope) {
if ($fields[$scope] && !$application[$scope]) {
Logger::warning('Requested token scope is not allowed for the application', ['token' => $fields, 'application' => $application]);
}

View file

@ -227,6 +227,11 @@ class JsonLD
Logger::debug('schema.org path fixed');
$value = 'http://schema.org#';
}
// Issue 14630: Wordpress Event Bridge uses a URL that cannot be retrieved
if (is_int($key) && $value == 'https://schema.org/') {
Logger::debug('https schema.org path fixed');
$value = 'https://schema.org/docs/jsonldcontext.json#';
}
});
// Bookwyrm transmits "id" fields with "null", which isn't allowed.

View file

@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: 2024.12-dev\n"
"Project-Id-Version: 2024.12\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-26 13:40+0000\n"
"POT-Creation-Date: 2024-12-28 00:35+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -18,79 +18,79 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
#: mod/item.php:88 mod/item.php:91 mod/item.php:158 mod/item.php:161
#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162
msgid "Unable to locate original post."
msgstr ""
#: mod/item.php:126
#: mod/item.php:127
msgid "Post updated."
msgstr ""
#: mod/item.php:191 mod/item.php:195
#: mod/item.php:192 mod/item.php:196
msgid "Item wasn't stored."
msgstr ""
#: mod/item.php:205
#: mod/item.php:206
msgid "Item couldn't be fetched."
msgstr ""
#: mod/item.php:249 mod/item.php:253
#: mod/item.php:250 mod/item.php:254
msgid "Empty post discarded."
msgstr ""
#: mod/item.php:424 src/Module/Admin/Themes/Details.php:31
#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:34
#: src/Module/Debug/ItemBody.php:42 src/Module/Item/Feed.php:66
#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31
#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:28
#: src/Module/Debug/ItemBody.php:43 src/Module/Item/Feed.php:66
msgid "Item not found."
msgstr ""
#: mod/item.php:448 mod/message.php:54 mod/message.php:100 mod/notes.php:34
#: mod/photos.php:133 mod/photos.php:625 src/Model/Event.php:508
#: src/Module/Attach.php:41 src/Module/BaseApi.php:91
#: src/Module/BaseNotifications.php:83 src/Module/BaseSettings.php:38
#: src/Module/Calendar/Event/API.php:75 src/Module/Calendar/Event/Form.php:70
#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:71
#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33
#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506
#: src/Module/Attach.php:41 src/Module/BaseApi.php:89
#: src/Module/BaseNotifications.php:84 src/Module/BaseSettings.php:36
#: src/Module/Calendar/Event/API.php:74 src/Module/Calendar/Event/Form.php:70
#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:68
#: src/Module/Circle.php:27 src/Module/Circle.php:70
#: src/Module/Contact/Advanced.php:46 src/Module/Contact/Follow.php:77
#: src/Module/Contact/Follow.php:145 src/Module/Contact/MatchInterests.php:73
#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52
#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98
#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:44
#: src/Module/Invite.php:28 src/Module/Invite.php:116
#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:43
#: src/Module/Invite.php:28 src/Module/Invite.php:117
#: src/Module/Notifications/Notification.php:62
#: src/Module/Notifications/Notification.php:93
#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:67
#: src/Module/Profile/Common.php:63 src/Module/Profile/Contacts.php:66
#: src/Module/Profile/Photos.php:81 src/Module/Profile/Schedule.php:25
#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:71
#: src/Module/Register.php:84 src/Module/Register.php:200
#: src/Module/Register.php:239 src/Module/Search/Directory.php:23
#: src/Module/Settings/Account.php:34 src/Module/Settings/Account.php:337
#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:62
#: src/Module/Profile/Common.php:61 src/Module/Profile/Contacts.php:64
#: src/Module/Profile/Photos.php:78 src/Module/Profile/Schedule.php:25
#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:70
#: src/Module/Register.php:83 src/Module/Register.php:199
#: src/Module/Register.php:238 src/Module/Search/Directory.php:23
#: src/Module/Settings/Account.php:34 src/Module/Settings/Account.php:339
#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127
#: src/Module/Settings/ContactImport.php:49
#: src/Module/Settings/ContactImport.php:96
#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:80
#: src/Module/Settings/Display.php:194
#: src/Module/Settings/Profile/Photo/Crop.php:148
#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:77
#: src/Module/Settings/Display.php:191
#: src/Module/Settings/Profile/Photo/Crop.php:151
#: src/Module/Settings/Profile/Photo/Index.php:96
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64
#: src/Module/Settings/UserExport.php:100
#: src/Module/Settings/UserExport.php:199
#: src/Module/Settings/UserExport.php:219
#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:142
#: src/Module/Settings/UserExport.php:284 src/Module/User/Delegation.php:140
#: src/Module/User/Import.php:71 src/Module/User/Import.php:78
msgid "Permission denied."
msgstr ""
#: mod/lostpass.php:27
#: mod/lostpass.php:28
msgid "No valid account found."
msgstr ""
#: mod/lostpass.php:39
#: mod/lostpass.php:40
msgid "Password reset request issued. Check your email."
msgstr ""
#: mod/lostpass.php:45
#: mod/lostpass.php:46
#, php-format
msgid ""
"\n"
@ -106,7 +106,7 @@ msgid ""
"\t\tissued this request."
msgstr ""
#: mod/lostpass.php:56
#: mod/lostpass.php:57
#, php-format
msgid ""
"\n"
@ -123,64 +123,64 @@ msgid ""
"\t\tLogin Name:\t%3$s"
msgstr ""
#: mod/lostpass.php:71
#: mod/lostpass.php:72
#, php-format
msgid "Password reset requested at %s"
msgstr ""
#: mod/lostpass.php:87
#: mod/lostpass.php:88
msgid "Request could not be verified. (You may have previously submitted it.) Password reset failed."
msgstr ""
#: mod/lostpass.php:100
#: mod/lostpass.php:101
msgid "Request has expired, please make a new one."
msgstr ""
#: mod/lostpass.php:115
#: mod/lostpass.php:116
msgid "Forgot your Password?"
msgstr ""
#: mod/lostpass.php:116
#: mod/lostpass.php:117
msgid "Enter your email address and submit to have your password reset. Then check your email for further instructions."
msgstr ""
#: mod/lostpass.php:117 src/Module/Security/Login.php:149
#: mod/lostpass.php:118 src/Module/Security/Login.php:150
msgid "Nickname or Email: "
msgstr ""
#: mod/lostpass.php:118
#: mod/lostpass.php:119
msgid "Reset"
msgstr ""
#: mod/lostpass.php:133 src/Module/Security/Login.php:161
#: mod/lostpass.php:134 src/Module/Security/Login.php:162
msgid "Password Reset"
msgstr ""
#: mod/lostpass.php:134
#: mod/lostpass.php:135
msgid "Your password has been reset as requested."
msgstr ""
#: mod/lostpass.php:135
#: mod/lostpass.php:136
msgid "Your new password is"
msgstr ""
#: mod/lostpass.php:136
#: mod/lostpass.php:137
msgid "Save or copy your new password - and then"
msgstr ""
#: mod/lostpass.php:137
#: mod/lostpass.php:138
msgid "click here to login"
msgstr ""
#: mod/lostpass.php:138
#: mod/lostpass.php:139
msgid "Your password may be changed from the <em>Settings</em> page after successful login."
msgstr ""
#: mod/lostpass.php:142
#: mod/lostpass.php:143
msgid "Your password has been reset."
msgstr ""
#: mod/lostpass.php:145
#: mod/lostpass.php:146
#, php-format
msgid ""
"\n"
@ -191,7 +191,7 @@ msgid ""
"\t\t"
msgstr ""
#: mod/lostpass.php:151
#: mod/lostpass.php:152
#, php-format
msgid ""
"\n"
@ -205,7 +205,7 @@ msgid ""
"\t\t"
msgstr ""
#: mod/lostpass.php:163
#: mod/lostpass.php:164
#, php-format
msgid "Your password has been changed at %s"
msgstr ""
@ -269,44 +269,44 @@ msgstr ""
msgid "Subject:"
msgstr ""
#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:155
#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157
msgid "Your message:"
msgstr ""
#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:358
#: src/Module/Post/Edit.php:122
#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:355
#: src/Module/Post/Edit.php:117
msgid "Upload photo"
msgstr ""
#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:126
#: mod/message.php:187 mod/message.php:342 src/Module/Post/Edit.php:121
msgid "Insert web link"
msgstr ""
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1253
#: src/Content/Conversation.php:389 src/Content/Conversation.php:1565
#: src/Module/Item/Compose.php:202 src/Module/Post/Edit.php:136
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255
#: src/Content/Conversation.php:386 src/Content/Conversation.php:1562
#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:131
#: src/Object/Post.php:605
msgid "Please wait"
msgstr ""
#: mod/message.php:189 mod/message.php:343 mod/photos.php:656
#: mod/photos.php:776 mod/photos.php:1053 mod/photos.php:1094
#: mod/photos.php:1150 mod/photos.php:1230
#: mod/message.php:189 mod/message.php:343 mod/photos.php:658
#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096
#: mod/photos.php:1152 mod/photos.php:1232
#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118
#: src/Module/Contact/Profile.php:376
#: src/Module/Debug/ActivityPubConversion.php:128
#: src/Module/Debug/Babel.php:279 src/Module/Debug/Localtime.php:50
#: src/Module/Debug/ActivityPubConversion.php:132
#: src/Module/Debug/Babel.php:307 src/Module/Debug/Localtime.php:50
#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37
#: src/Module/FriendSuggest.php:132 src/Module/Install.php:220
#: src/Module/Install.php:260 src/Module/Install.php:295
#: src/Module/Invite.php:162 src/Module/Item/Compose.php:185
#: src/Module/Moderation/Item/Source.php:74
#: src/Module/FriendSuggest.php:131 src/Module/Install.php:221
#: src/Module/Install.php:261 src/Module/Install.php:296
#: src/Module/Invite.php:164 src/Module/Item/Compose.php:182
#: src/Module/Moderation/Item/Source.php:71
#: src/Module/Moderation/Report/Create.php:154
#: src/Module/Moderation/Report/Create.php:169
#: src/Module/Moderation/Report/Create.php:197
#: src/Module/Moderation/Report/Create.php:249
#: src/Module/Profile/Profile.php:265 src/Module/Settings/Profile/Index.php:248
#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:177
#: src/Module/Profile/Profile.php:262 src/Module/Settings/Profile/Index.php:248
#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:175
#: src/Object/Post.php:1146 view/theme/duepuntozero/config.php:73
#: view/theme/frio/config.php:155 view/theme/quattro/config.php:75
#: view/theme/vier/config.php:123
@ -363,383 +363,391 @@ msgid_plural "%d messages"
msgstr[0] ""
msgstr[1] ""
#: mod/notes.php:41 src/Module/BaseProfile.php:93
#: mod/notes.php:40 src/Module/BaseProfile.php:94
msgid "Personal Notes"
msgstr ""
#: mod/notes.php:45
#: mod/notes.php:44
msgid "Personal notes are visible only by yourself."
msgstr ""
#: mod/notes.php:46 src/Content/Text/HTML.php:847
#: mod/notes.php:45 src/Content/Text/HTML.php:847
#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60
#: src/Module/Post/Edit.php:120 src/Module/Settings/Channels.php:215
#: src/Module/Post/Edit.php:115 src/Module/Settings/Channels.php:215
msgid "Save"
msgstr ""
#: mod/photos.php:52 mod/photos.php:115 mod/photos.php:535
#: src/Model/Event.php:500 src/Model/Profile.php:212
#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:63
#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537
#: src/Model/Event.php:498 src/Model/Profile.php:213
#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:60
#: src/Module/Feed.php:52 src/Module/HCard.php:37
#: src/Module/Profile/Common.php:50 src/Module/Profile/Common.php:59
#: src/Module/Profile/Contacts.php:52 src/Module/Profile/Contacts.php:60
#: src/Module/Profile/Conversations.php:81 src/Module/Profile/Media.php:58
#: src/Module/Profile/Photos.php:72 src/Module/Profile/RemoteFollow.php:57
#: src/Module/Register.php:261
#: src/Module/Profile/Common.php:48 src/Module/Profile/Common.php:57
#: src/Module/Profile/Contacts.php:50 src/Module/Profile/Contacts.php:58
#: src/Module/Profile/Conversations.php:77 src/Module/Profile/Media.php:42
#: src/Module/Profile/Photos.php:69 src/Module/Profile/RemoteFollow.php:57
#: src/Module/Register.php:260
msgid "User not found."
msgstr ""
#: mod/photos.php:89 src/Module/BaseProfile.php:53
#: src/Module/Profile/Photos.php:372
#: mod/photos.php:91 src/Module/BaseProfile.php:54
#: src/Module/Profile/Photos.php:361
msgid "Photo Albums"
msgstr ""
#: mod/photos.php:90 src/Module/Profile/Photos.php:373
#: src/Module/Profile/Photos.php:393
#: mod/photos.php:92 src/Module/Profile/Photos.php:362
#: src/Module/Profile/Photos.php:382
msgid "Recent Photos"
msgstr ""
#: mod/photos.php:92 mod/photos.php:824 src/Module/Profile/Photos.php:375
#: src/Module/Profile/Photos.php:395
#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:364
#: src/Module/Profile/Photos.php:384
msgid "Upload New Photos"
msgstr ""
#: mod/photos.php:104 src/Module/BaseSettings.php:60
#: src/Module/Profile/Photos.php:356
#: mod/photos.php:106 src/Module/BaseSettings.php:58
#: src/Module/Profile/Photos.php:345
msgid "everybody"
msgstr ""
#: mod/photos.php:140
#: mod/photos.php:142
msgid "Contact information unavailable"
msgstr ""
#: mod/photos.php:169
#: mod/photos.php:171
msgid "Album not found."
msgstr ""
#: mod/photos.php:225
#: mod/photos.php:227
msgid "Album successfully deleted"
msgstr ""
#: mod/photos.php:227
#: mod/photos.php:229
msgid "Album was empty."
msgstr ""
#: mod/photos.php:258
#: mod/photos.php:260
msgid "Failed to delete the photo."
msgstr ""
#: mod/photos.php:502
#: mod/photos.php:504
msgid "a photo"
msgstr ""
#: mod/photos.php:502
#: mod/photos.php:504
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr ""
#: mod/photos.php:539 src/Module/Conversation/Community.php:148
#: src/Module/Directory.php:34 src/Module/Profile/Photos.php:290
#: mod/photos.php:541 src/Module/Conversation/Community.php:148
#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:279
#: src/Module/Search/Index.php:51
msgid "Public access denied."
msgstr ""
#: mod/photos.php:544
#: mod/photos.php:546
msgid "No photos selected"
msgstr ""
#: mod/photos.php:672
#: mod/photos.php:674
#, php-format
msgid "The maximum accepted image size is %s"
msgstr ""
#: mod/photos.php:679
#: mod/photos.php:681
msgid "Upload Photos"
msgstr ""
#: mod/photos.php:683 mod/photos.php:772
#: mod/photos.php:685 mod/photos.php:774
msgid "New album name: "
msgstr ""
#: mod/photos.php:684
#: mod/photos.php:686
msgid "or select existing album:"
msgstr ""
#: mod/photos.php:685
#: mod/photos.php:687
msgid "Do not show a status post for this upload"
msgstr ""
#: mod/photos.php:688 mod/photos.php:1049 src/Content/Conversation.php:391
#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:174
#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:388
#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:169
msgid "Permissions"
msgstr ""
#: mod/photos.php:753
#: mod/photos.php:755
msgid "Do you really want to delete this photo album and all its photos?"
msgstr ""
#: mod/photos.php:754 mod/photos.php:777
#: mod/photos.php:756 mod/photos.php:779
msgid "Delete Album"
msgstr ""
#: mod/photos.php:755 mod/photos.php:855 src/Content/Conversation.php:406
#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:403
#: src/Module/Contact/Follow.php:158 src/Module/Contact/Revoke.php:92
#: src/Module/Contact/Unfollow.php:112
#: src/Module/Media/Attachment/Browser.php:64
#: src/Module/Media/Photo/Browser.php:76 src/Module/Post/Edit.php:158
#: src/Module/Post/Tag/Remove.php:96 src/Module/Profile/RemoteFollow.php:120
#: src/Module/Media/Attachment/Browser.php:63
#: src/Module/Media/Photo/Browser.php:74 src/Module/Post/Edit.php:153
#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120
#: src/Module/Security/TwoFactor/SignOut.php:111
msgid "Cancel"
msgstr ""
#: mod/photos.php:781
#: mod/photos.php:783
msgid "Edit Album"
msgstr ""
#: mod/photos.php:782
#: mod/photos.php:784
msgid "Drop Album"
msgstr ""
#: mod/photos.php:786
#: mod/photos.php:788
msgid "Show Newest First"
msgstr ""
#: mod/photos.php:788
#: mod/photos.php:790
msgid "Show Oldest First"
msgstr ""
#: mod/photos.php:809 src/Module/Profile/Photos.php:343
#: mod/photos.php:811 src/Module/Profile/Photos.php:332
msgid "View Photo"
msgstr ""
#: mod/photos.php:841
#: mod/photos.php:843
msgid "Permission denied. Access to this item may be restricted."
msgstr ""
#: mod/photos.php:843
#: mod/photos.php:845
msgid "Photo not available"
msgstr ""
#: mod/photos.php:853
#: mod/photos.php:855
msgid "Do you really want to delete this photo?"
msgstr ""
#: mod/photos.php:854 mod/photos.php:1054
#: mod/photos.php:856 mod/photos.php:1056
msgid "Delete Photo"
msgstr ""
#: mod/photos.php:952
#: mod/photos.php:954
msgid "View photo"
msgstr ""
#: mod/photos.php:954
#: mod/photos.php:956
msgid "Edit photo"
msgstr ""
#: mod/photos.php:955
#: mod/photos.php:957
msgid "Delete photo"
msgstr ""
#: mod/photos.php:956
#: mod/photos.php:958
msgid "Use as profile photo"
msgstr ""
#: mod/photos.php:963
#: mod/photos.php:965
msgid "Private Photo"
msgstr ""
#: mod/photos.php:969
#: mod/photos.php:971
msgid "View Full Size"
msgstr ""
#: mod/photos.php:1022
#: mod/photos.php:1024
msgid "Tags: "
msgstr ""
#: mod/photos.php:1025
#: mod/photos.php:1027
msgid "[Select tags to remove]"
msgstr ""
#: mod/photos.php:1040
#: mod/photos.php:1042
msgid "New album name"
msgstr ""
#: mod/photos.php:1041
#: mod/photos.php:1043
msgid "Caption"
msgstr ""
#: mod/photos.php:1042
#: mod/photos.php:1044
msgid "Add a Tag"
msgstr ""
#: mod/photos.php:1042
#: mod/photos.php:1044
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr ""
#: mod/photos.php:1043
#: mod/photos.php:1045
msgid "Do not rotate"
msgstr ""
#: mod/photos.php:1044
#: mod/photos.php:1046
msgid "Rotate CW (right)"
msgstr ""
#: mod/photos.php:1045
#: mod/photos.php:1047
msgid "Rotate CCW (left)"
msgstr ""
#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227
#: src/Module/Contact.php:600 src/Module/Item/Compose.php:184
#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229
#: src/Module/Contact.php:600 src/Module/Item/Compose.php:181
#: src/Object/Post.php:1143
msgid "This is you"
msgstr ""
#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599
#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231
#: src/Module/Moderation/Reports.php:102 src/Object/Post.php:599
#: src/Object/Post.php:1145
msgid "Comment"
msgstr ""
#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231
#: src/Content/Conversation.php:403 src/Module/Calendar/Event/Form.php:234
#: src/Module/Item/Compose.php:197 src/Module/Post/Edit.php:156
#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233
#: src/Content/Conversation.php:400 src/Module/Calendar/Event/Form.php:234
#: src/Module/Item/Compose.php:194 src/Module/Post/Edit.php:151
#: src/Object/Post.php:1159
msgid "Preview"
msgstr ""
#: mod/photos.php:1096 src/Content/Conversation.php:357
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147
#: mod/photos.php:1098 src/Content/Conversation.php:354
#: src/Module/Post/Edit.php:116 src/Object/Post.php:1147
msgid "Loading..."
msgstr ""
#: mod/photos.php:1188 src/Content/Conversation.php:1487
#: mod/photos.php:1190 src/Content/Conversation.php:1484
#: src/Object/Post.php:261
msgid "Select"
msgstr ""
#: mod/photos.php:1189 src/Content/Conversation.php:1488
#: src/Module/Moderation/Users/Active.php:125
#: src/Module/Moderation/Users/Blocked.php:125
#: src/Module/Moderation/Users/Index.php:140
#: mod/photos.php:1191 src/Content/Conversation.php:1485
#: src/Module/Moderation/Users/Active.php:122
#: src/Module/Moderation/Users/Blocked.php:122
#: src/Module/Moderation/Users/Index.php:137
#: src/Module/Settings/Connectors.php:226
#: src/Module/Settings/Server/Index.php:95
msgid "Delete"
msgstr ""
#: mod/photos.php:1250 src/Object/Post.php:427
#: mod/photos.php:1252 src/Object/Post.php:427
msgid "Like"
msgstr ""
#: mod/photos.php:1251 src/Object/Post.php:427
#: mod/photos.php:1253 src/Object/Post.php:427
msgid "I like this (toggle)"
msgstr ""
#: mod/photos.php:1252 src/Object/Post.php:428
#: mod/photos.php:1254 src/Object/Post.php:428
msgid "Dislike"
msgstr ""
#: mod/photos.php:1254 src/Object/Post.php:428
#: mod/photos.php:1256 src/Object/Post.php:428
msgid "I don't like this (toggle)"
msgstr ""
#: mod/photos.php:1276
#: mod/photos.php:1278
msgid "Map"
msgstr ""
#: src/App/Page.php:241
#: src/App.php:432
msgid "No system theme config value set."
msgstr ""
#: src/App.php:540
msgid "Apologies but the website is unavailable at the moment."
msgstr ""
#: src/App/Page.php:236
msgid "Delete this item?"
msgstr ""
#: src/App/Page.php:242
#: src/App/Page.php:237
msgid "Block this author? They won't be able to follow you nor see your public posts, and you won't be able to see their posts and their notifications."
msgstr ""
#: src/App/Page.php:243
#: src/App/Page.php:238
msgid "Ignore this author? You won't be able to see their posts and their notifications."
msgstr ""
#: src/App/Page.php:244
#: src/App/Page.php:239
msgid "Collapse this author's posts?"
msgstr ""
#: src/App/Page.php:245
#: src/App/Page.php:240
msgid "Ignore this author's server?"
msgstr ""
#: src/App/Page.php:246 src/Module/Settings/Server/Action.php:47
#: src/App/Page.php:241 src/Module/Settings/Server/Action.php:47
#: src/Module/Settings/Server/Index.php:94
msgid "You won't see any content from this server including reshares in your Network page, the community pages and individual conversations."
msgstr ""
#: src/App/Page.php:248
#: src/App/Page.php:243
msgid "Like not successful"
msgstr ""
#: src/App/Page.php:249
#: src/App/Page.php:244
msgid "Dislike not successful"
msgstr ""
#: src/App/Page.php:250
#: src/App/Page.php:245
msgid "Sharing not successful"
msgstr ""
#: src/App/Page.php:251
#: src/App/Page.php:246
msgid "Attendance unsuccessful"
msgstr ""
#: src/App/Page.php:252
#: src/App/Page.php:247
msgid "Backend error"
msgstr ""
#: src/App/Page.php:253
#: src/App/Page.php:248
msgid "Network error"
msgstr ""
#: src/App/Page.php:256
#: src/App/Page.php:251
msgid "Drop files here to upload"
msgstr ""
#: src/App/Page.php:257
#: src/App/Page.php:252
msgid "Your browser does not support drag and drop file uploads."
msgstr ""
#: src/App/Page.php:258
#: src/App/Page.php:253
msgid "Please use the fallback form below to upload your files like in the olden days."
msgstr ""
#: src/App/Page.php:259
#: src/App/Page.php:254
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
msgstr ""
#: src/App/Page.php:260
#: src/App/Page.php:255
msgid "You can't upload files of this type."
msgstr ""
#: src/App/Page.php:261
#: src/App/Page.php:256
msgid "Server responded with {{statusCode}} code."
msgstr ""
#: src/App/Page.php:262
#: src/App/Page.php:257
msgid "Cancel upload"
msgstr ""
#: src/App/Page.php:263
#: src/App/Page.php:258
msgid "Upload canceled."
msgstr ""
#: src/App/Page.php:264
#: src/App/Page.php:259
msgid "Are you sure you want to cancel this upload?"
msgstr ""
#: src/App/Page.php:265
#: src/App/Page.php:260
msgid "Remove file"
msgstr ""
#: src/App/Page.php:266
#: src/App/Page.php:261
msgid "You can't upload any more files."
msgstr ""
#: src/App/Page.php:350
#: src/App/Page.php:346
msgid "toggle mobile"
msgstr ""
@ -757,10 +765,6 @@ msgstr ""
msgid "You must be logged in to use addons. "
msgstr ""
#: src/AppLegacy.php:317
msgid "No system theme config value set."
msgstr ""
#: src/BaseModule.php:393
msgid "The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."
msgstr ""
@ -770,7 +774,7 @@ msgid "All contacts"
msgstr ""
#: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32
#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395
#: src/Content/Widget.php:254 src/Core/ACL.php:181 src/Module/Contact.php:395
#: src/Module/Privacy/PermissionTooltip.php:150
#: src/Module/Privacy/PermissionTooltip.php:172
#: src/Module/Settings/Channels.php:146
@ -790,15 +794,15 @@ msgstr ""
msgid "Common"
msgstr ""
#: src/Console/Addon.php:162 src/Console/Addon.php:186
#: src/Console/Addon.php:161 src/Console/Addon.php:185
msgid "Addon not found"
msgstr ""
#: src/Console/Addon.php:166
#: src/Console/Addon.php:165
msgid "Addon already enabled"
msgstr ""
#: src/Console/Addon.php:190
#: src/Console/Addon.php:189
msgid "Addon already disabled"
msgstr ""
@ -811,18 +815,18 @@ msgstr ""
msgid "The contact entries have been archived"
msgstr ""
#: src/Console/ClearAvatarCache.php:74
#: src/Console/ClearAvatarCache.php:73
msgid "The avatar cache needs to be disabled in local.config.php to use this command."
msgstr ""
#: src/Console/GlobalCommunityBlock.php:82
#: src/Module/Moderation/Blocklist/Contact.php:53
#: src/Module/Moderation/Blocklist/Contact.php:51
#, php-format
msgid "Could not find any contact entry for this URL (%s)"
msgstr ""
#: src/Console/GlobalCommunityBlock.php:87
#: src/Module/Moderation/Blocklist/Contact.php:70
#: src/Module/Moderation/Blocklist/Contact.php:68
msgid "The contact has been blocked from the node"
msgstr ""
@ -895,44 +899,44 @@ msgstr ""
msgid "no resource in photo %s"
msgstr ""
#: src/Console/MoveToAvatarCache.php:127
#: src/Console/MoveToAvatarCache.php:123
#, php-format
msgid "no photo with id %s"
msgstr ""
#: src/Console/MoveToAvatarCache.php:136
#: src/Console/MoveToAvatarCache.php:132
#, php-format
msgid "no image data for photo with id %s"
msgstr ""
#: src/Console/MoveToAvatarCache.php:145
#: src/Console/MoveToAvatarCache.php:141
#, php-format
msgid "invalid image for id %s"
msgstr ""
#: src/Console/MoveToAvatarCache.php:158
#: src/Console/MoveToAvatarCache.php:154
#, php-format
msgid "Quit on invalid photo %s"
msgstr ""
#: src/Console/PostUpdate.php:77
#: src/Console/PostUpdate.php:73
#, php-format
msgid "Post update version number has been set to %s."
msgstr ""
#: src/Console/PostUpdate.php:85
#: src/Console/PostUpdate.php:81
msgid "Check for pending update actions."
msgstr ""
#: src/Console/PostUpdate.php:87
#: src/Console/PostUpdate.php:83
msgid "Done."
msgstr ""
#: src/Console/PostUpdate.php:89
#: src/Console/PostUpdate.php:85
msgid "Execute pending post updates."
msgstr ""
#: src/Console/PostUpdate.php:95
#: src/Console/PostUpdate.php:91
msgid "All pending post updates are done."
msgstr ""
@ -940,14 +944,11 @@ msgstr ""
msgid "Enter user nickname: "
msgstr ""
#: src/Console/User.php:168 src/Model/User.php:830
#: src/Module/Api/Twitter/ContactEndpoint.php:62
#: src/Module/Moderation/Users/Active.php:55
#: src/Module/Moderation/Users/Active.php:61
#: src/Module/Moderation/Users/Blocked.php:55
#: src/Module/Moderation/Users/Blocked.php:61
#: src/Module/Moderation/Users/Index.php:62
#: src/Module/Moderation/Users/Index.php:68
#: src/Console/User.php:168 src/Model/User.php:835
#: src/Module/Api/Twitter/ContactEndpoint.php:60
#: src/Module/Moderation/Users/Active.php:57
#: src/Module/Moderation/Users/Blocked.php:57
#: src/Module/Moderation/Users/Index.php:64
#: src/Module/Moderation/Users/Pending.php:53
msgid "User not found"
msgstr ""
@ -957,12 +958,12 @@ msgid "Enter new password: "
msgstr ""
#: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55
#: src/Module/Settings/Account.php:57
#: src/Module/Settings/Account.php:59
msgid "Password update failed. Please try again."
msgstr ""
#: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58
#: src/Module/Settings/Account.php:60
#: src/Module/Settings/Account.php:62
msgid "Password changed."
msgstr ""
@ -1043,86 +1044,86 @@ msgstr ""
msgid "Monthly"
msgstr ""
#: src/Content/ContactSelector.php:117
#: src/Content/ContactSelector.php:118
msgid "DFRN"
msgstr ""
#: src/Content/ContactSelector.php:118
#: src/Content/ContactSelector.php:119
msgid "OStatus"
msgstr ""
#: src/Content/ContactSelector.php:119
#: src/Content/ContactSelector.php:120
msgid "RSS/Atom"
msgstr ""
#: src/Content/ContactSelector.php:120
#: src/Module/Moderation/Users/Active.php:115
#: src/Module/Moderation/Users/Blocked.php:115
#: src/Content/ContactSelector.php:121
#: src/Module/Moderation/Users/Active.php:112
#: src/Module/Moderation/Users/Blocked.php:112
#: src/Module/Moderation/Users/Create.php:58
#: src/Module/Moderation/Users/Deleted.php:69
#: src/Module/Moderation/Users/Index.php:129
#: src/Module/Moderation/Users/Index.php:149
#: src/Module/Moderation/Users/Index.php:126
#: src/Module/Moderation/Users/Index.php:146
#: src/Module/Moderation/Users/Pending.php:85
msgid "Email"
msgstr ""
#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273
#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:301
msgid "Diaspora"
msgstr ""
#: src/Content/ContactSelector.php:122
#: src/Content/ContactSelector.php:123
msgid "Zot!"
msgstr ""
#: src/Content/ContactSelector.php:123
#: src/Content/ContactSelector.php:124
msgid "LinkedIn"
msgstr ""
#: src/Content/ContactSelector.php:124
#: src/Content/ContactSelector.php:125
msgid "XMPP/IM"
msgstr ""
#: src/Content/ContactSelector.php:125
#: src/Content/ContactSelector.php:126
msgid "MySpace"
msgstr ""
#: src/Content/ContactSelector.php:126
#: src/Content/ContactSelector.php:127
msgid "Google+"
msgstr ""
#: src/Content/ContactSelector.php:127
#: src/Content/ContactSelector.php:128
msgid "pump.io"
msgstr ""
#: src/Content/ContactSelector.php:128
#: src/Content/ContactSelector.php:129
msgid "Twitter"
msgstr ""
#: src/Content/ContactSelector.php:129
#: src/Content/ContactSelector.php:130
msgid "Discourse"
msgstr ""
#: src/Content/ContactSelector.php:130
#: src/Content/ContactSelector.php:131
msgid "Diaspora Connector"
msgstr ""
#: src/Content/ContactSelector.php:131
#: src/Content/ContactSelector.php:132
msgid "GNU Social Connector"
msgstr ""
#: src/Content/ContactSelector.php:132
#: src/Content/ContactSelector.php:133
msgid "ActivityPub"
msgstr ""
#: src/Content/ContactSelector.php:133
#: src/Content/ContactSelector.php:134
msgid "pnut"
msgstr ""
#: src/Content/ContactSelector.php:134
#: src/Content/ContactSelector.php:135
msgid "Tumblr"
msgstr ""
#: src/Content/ContactSelector.php:135
#: src/Content/ContactSelector.php:136
msgid "Bluesky"
msgstr ""
@ -1131,374 +1132,374 @@ msgstr ""
msgid "%s (via %s)"
msgstr ""
#: src/Content/Conversation.php:215
#: src/Content/Conversation.php:212
msgid "and"
msgstr ""
#: src/Content/Conversation.php:218
#: src/Content/Conversation.php:215
#, php-format
msgid "and %d other people"
msgstr ""
#: src/Content/Conversation.php:224
#: src/Content/Conversation.php:221
#, php-format
msgid "%2$s likes this."
msgid_plural "%2$s like this."
msgstr[0] ""
msgstr[1] ""
#: src/Content/Conversation.php:226
#: src/Content/Conversation.php:223
#, php-format
msgid "%2$s doesn't like this."
msgid_plural "%2$s don't like this."
msgstr[0] ""
msgstr[1] ""
#: src/Content/Conversation.php:228
#: src/Content/Conversation.php:225
#, php-format
msgid "%2$s attends."
msgid_plural "%2$s attend."
msgstr[0] ""
msgstr[1] ""
#: src/Content/Conversation.php:230
#: src/Content/Conversation.php:227
#, php-format
msgid "%2$s doesn't attend."
msgid_plural "%2$s don't attend."
msgstr[0] ""
msgstr[1] ""
#: src/Content/Conversation.php:232
#: src/Content/Conversation.php:229
#, php-format
msgid "%2$s attends maybe."
msgid_plural "%2$s attend maybe."
msgstr[0] ""
msgstr[1] ""
#: src/Content/Conversation.php:234
#: src/Content/Conversation.php:231
#, php-format
msgid "%2$s reshared this."
msgid_plural "%2$s reshared this."
msgstr[0] ""
msgstr[1] ""
#: src/Content/Conversation.php:265
#: src/Content/Conversation.php:262
#, php-format
msgid "<button type=\"button\" %2$s>%1$d person</button> likes this"
msgid_plural "<button type=\"button\" %2$s>%1$d people</button> like this"
msgstr[0] ""
msgstr[1] ""
#: src/Content/Conversation.php:268
#: src/Content/Conversation.php:265
#, php-format
msgid "<button type=\"button\" %2$s>%1$d person</button> doesn't like this"
msgid_plural "<button type=\"button\" %2$s>%1$d peiple</button> don't like this"
msgstr[0] ""
msgstr[1] ""
#: src/Content/Conversation.php:271
#: src/Content/Conversation.php:268
#, php-format
msgid "<button type=\"button\" %2$s>%1$d person</button> attends"
msgid_plural "<button type=\"button\" %2$s>%1$d people</button> attend"
msgstr[0] ""
msgstr[1] ""
#: src/Content/Conversation.php:274
#: src/Content/Conversation.php:271
#, php-format
msgid "<button type=\"button\" %2$s>%1$d person</button> doesn't attend"
msgid_plural "<button type=\"button\" %2$s>%1$d people</button> don't attend"
msgstr[0] ""
msgstr[1] ""
#: src/Content/Conversation.php:277
#: src/Content/Conversation.php:274
#, php-format
msgid "<button type=\"button\" %2$s>%1$d person</button> attends maybe"
msgid_plural "<button type=\"button\" %2$s>%1$d people</button> attend maybe"
msgstr[0] ""
msgstr[1] ""
#: src/Content/Conversation.php:280
#: src/Content/Conversation.php:277
#, php-format
msgid "<button type=\"button\" %2$s>%1$d person</button> reshared this"
msgid_plural "<button type=\"button\" %2$s>%1$d people</button> reshared this"
msgstr[0] ""
msgstr[1] ""
#: src/Content/Conversation.php:326
#: src/Content/Conversation.php:323
msgid "Visible to <strong>everybody</strong>"
msgstr ""
#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196
#: src/Content/Conversation.php:324 src/Module/Item/Compose.php:193
#: src/Object/Post.php:1158
msgid "Please enter a image/video/audio/webpage URL:"
msgstr ""
#: src/Content/Conversation.php:328
#: src/Content/Conversation.php:325
msgid "Tag term:"
msgstr ""
#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59
#: src/Content/Conversation.php:326 src/Module/Filer/SaveTag.php:59
msgid "Save to Folder:"
msgstr ""
#: src/Content/Conversation.php:330
#: src/Content/Conversation.php:327
msgid "Where are you right now?"
msgstr ""
#: src/Content/Conversation.php:331
#: src/Content/Conversation.php:328
msgid "Delete item(s)?"
msgstr ""
#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171
#: src/Content/Conversation.php:340 src/Module/Item/Compose.php:168
msgid "Created at"
msgstr ""
#: src/Content/Conversation.php:353
#: src/Content/Conversation.php:350
msgid "New Post"
msgstr ""
#: src/Content/Conversation.php:356
#: src/Content/Conversation.php:353
msgid "Share"
msgstr ""
#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123
#: src/Content/Conversation.php:356 src/Module/Post/Edit.php:118
msgid "upload photo"
msgstr ""
#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124
#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:119
msgid "Attach file"
msgstr ""
#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125
#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:120
msgid "attach file"
msgstr ""
#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148
#: src/Content/Conversation.php:359 src/Module/Item/Compose.php:183
#: src/Module/Post/Edit.php:157 src/Object/Post.php:1148
msgid "Bold"
msgstr ""
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149
#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:184
#: src/Module/Post/Edit.php:158 src/Object/Post.php:1149
msgid "Italic"
msgstr ""
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150
#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:185
#: src/Module/Post/Edit.php:159 src/Object/Post.php:1150
msgid "Underline"
msgstr ""
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152
#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186
#: src/Module/Post/Edit.php:160 src/Object/Post.php:1152
msgid "Quote"
msgstr ""
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
#: src/Module/Post/Edit.php:161 src/Object/Post.php:1153
msgid "Add emojis"
msgstr ""
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
#: src/Object/Post.php:1151
msgid "Content Warning"
msgstr ""
#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1154
msgid "Code"
msgstr ""
#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
#: src/Object/Post.php:1155
msgid "Image"
msgstr ""
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1156
msgid "Link"
msgstr ""
#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157
#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1157
msgid "Link or Media"
msgstr ""
#: src/Content/Conversation.php:372
#: src/Content/Conversation.php:369
msgid "Video"
msgstr ""
#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198
#: src/Module/Post/Edit.php:132
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:195
#: src/Module/Post/Edit.php:127
msgid "Set your location"
msgstr ""
#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133
#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:128
msgid "set location"
msgstr ""
#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134
#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:129
msgid "Clear browser location"
msgstr ""
#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135
#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:130
msgid "clear location"
msgstr ""
#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203
#: src/Module/Post/Edit.php:148
#: src/Content/Conversation.php:375 src/Module/Item/Compose.php:200
#: src/Module/Post/Edit.php:143
msgid "Set title"
msgstr ""
#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204
#: src/Module/Post/Edit.php:150
#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:201
#: src/Module/Post/Edit.php:145
msgid "Categories (comma-separated list)"
msgstr ""
#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220
#: src/Content/Conversation.php:382 src/Module/Item/Compose.php:217
msgid "Scheduled at"
msgstr ""
#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137
#: src/Content/Conversation.php:387 src/Module/Post/Edit.php:132
msgid "Permission settings"
msgstr ""
#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146
#: src/Content/Conversation.php:396 src/Module/Post/Edit.php:141
msgid "Public post"
msgstr ""
#: src/Content/Conversation.php:413 src/Content/Widget/VCard.php:121
#: src/Model/Profile.php:461 src/Module/Admin/Logs/View.php:80
#: src/Module/Post/Edit.php:172
#: src/Content/Conversation.php:410 src/Content/Widget/VCard.php:122
#: src/Model/Profile.php:462 src/Module/Admin/Logs/View.php:80
#: src/Module/Post/Edit.php:167
msgid "Message"
msgstr ""
#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173
#: src/Content/Conversation.php:411 src/Module/Post/Edit.php:168
#: src/Module/Settings/TwoFactor/Trusted.php:129
msgid "Browser"
msgstr ""
#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176
#: src/Content/Conversation.php:413 src/Module/Post/Edit.php:171
msgid "Open Compose page"
msgstr ""
#: src/Content/Conversation.php:583
#: src/Content/Conversation.php:580
msgid "remove"
msgstr ""
#: src/Content/Conversation.php:587
#: src/Content/Conversation.php:584
msgid "Delete Selected Items"
msgstr ""
#: src/Content/Conversation.php:715 src/Content/Conversation.php:718
#: src/Content/Conversation.php:721 src/Content/Conversation.php:724
#: src/Content/Conversation.php:727
#: src/Content/Conversation.php:712 src/Content/Conversation.php:715
#: src/Content/Conversation.php:718 src/Content/Conversation.php:721
#: src/Content/Conversation.php:724
#, php-format
msgid "You had been addressed (%s)."
msgstr ""
#: src/Content/Conversation.php:730
#: src/Content/Conversation.php:727
#, php-format
msgid "You are following %s."
msgstr ""
#: src/Content/Conversation.php:735
#: src/Content/Conversation.php:732
#, php-format
msgid "You subscribed to %s."
msgstr ""
#: src/Content/Conversation.php:737
#: src/Content/Conversation.php:734
msgid "You subscribed to one or more tags in this post."
msgstr ""
#: src/Content/Conversation.php:757
#: src/Content/Conversation.php:754
#, php-format
msgid "%s reshared this."
msgstr ""
#: src/Content/Conversation.php:759
#: src/Content/Conversation.php:756
msgid "Reshared"
msgstr ""
#: src/Content/Conversation.php:759
#: src/Content/Conversation.php:756
#, php-format
msgid "Reshared by %s <%s>"
msgstr ""
#: src/Content/Conversation.php:762
#: src/Content/Conversation.php:759
#, php-format
msgid "%s is participating in this thread."
msgstr ""
#: src/Content/Conversation.php:765
#: src/Content/Conversation.php:762
msgid "Stored for general reasons"
msgstr ""
#: src/Content/Conversation.php:768
#: src/Content/Conversation.php:765
msgid "Global post"
msgstr ""
#: src/Content/Conversation.php:771
#: src/Content/Conversation.php:768
msgid "Sent via an relay server"
msgstr ""
#: src/Content/Conversation.php:771
#: src/Content/Conversation.php:768
#, php-format
msgid "Sent via the relay server %s <%s>"
msgstr ""
#: src/Content/Conversation.php:774
#: src/Content/Conversation.php:771
msgid "Fetched"
msgstr ""
#: src/Content/Conversation.php:774
#: src/Content/Conversation.php:771
#, php-format
msgid "Fetched because of %s <%s>"
msgstr ""
#: src/Content/Conversation.php:777
#: src/Content/Conversation.php:774
msgid "Stored because of a child post to complete this thread."
msgstr ""
#: src/Content/Conversation.php:780
#: src/Content/Conversation.php:777
msgid "Local delivery"
msgstr ""
#: src/Content/Conversation.php:783
#: src/Content/Conversation.php:780
msgid "Stored because of your activity (like, comment, star, ...)"
msgstr ""
#: src/Content/Conversation.php:786
#: src/Content/Conversation.php:783
msgid "Distributed"
msgstr ""
#: src/Content/Conversation.php:789
#: src/Content/Conversation.php:786
msgid "Pushed to us"
msgstr ""
#: src/Content/Conversation.php:1507 src/Object/Post.php:248
#: src/Content/Conversation.php:1504 src/Object/Post.php:248
msgid "Pinned item"
msgstr ""
#: src/Content/Conversation.php:1524 src/Object/Post.php:542
#: src/Content/Conversation.php:1521 src/Object/Post.php:542
#: src/Object/Post.php:543
#, php-format
msgid "View %s's profile @ %s"
msgstr ""
#: src/Content/Conversation.php:1538 src/Object/Post.php:530
#: src/Content/Conversation.php:1535 src/Object/Post.php:530
msgid "Categories:"
msgstr ""
#: src/Content/Conversation.php:1539 src/Object/Post.php:531
#: src/Content/Conversation.php:1536 src/Object/Post.php:531
msgid "Filed under:"
msgstr ""
#: src/Content/Conversation.php:1547 src/Object/Post.php:557
#: src/Content/Conversation.php:1544 src/Object/Post.php:557
#, php-format
msgid "%s from %s"
msgstr ""
#: src/Content/Conversation.php:1563
#: src/Content/Conversation.php:1560
msgid "View in context"
msgstr ""
@ -1707,7 +1708,7 @@ msgstr ""
#: src/Content/Feature.php:116 src/Content/GroupManager.php:133
#: src/Content/Nav.php:264 src/Content/Text/HTML.php:868
#: src/Content/Widget.php:555 src/Model/User.php:1390
#: src/Content/Widget.php:552 src/Model/User.php:1394
msgid "Groups"
msgstr ""
@ -1715,7 +1716,7 @@ msgstr ""
msgid "Display posts that have been distributed by the selected group."
msgstr ""
#: src/Content/Feature.php:117 src/Content/Widget.php:524
#: src/Content/Feature.php:117 src/Content/Widget.php:521
msgid "Archives"
msgstr ""
@ -1731,8 +1732,8 @@ msgstr ""
msgid "Display posts with the selected protocols."
msgstr ""
#: src/Content/Feature.php:119 src/Content/Widget.php:561
#: src/Module/Settings/Account.php:391
#: src/Content/Feature.php:119 src/Content/Widget.php:558
#: src/Module/Settings/Account.php:395
msgid "Account Types"
msgstr ""
@ -1740,9 +1741,9 @@ msgstr ""
msgid "Display posts done by accounts with the selected account type."
msgstr ""
#: src/Content/Feature.php:120 src/Content/Widget.php:610
#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:113
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:323
#: src/Content/Feature.php:120 src/Content/Widget.php:607
#: src/Module/Admin/Site.php:464 src/Module/BaseSettings.php:111
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:320
msgid "Channels"
msgstr ""
@ -1766,7 +1767,7 @@ msgstr ""
msgid "Display a list of folders in which posts are stored."
msgstr ""
#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189
#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186
msgid "Own Contacts"
msgstr ""
@ -1818,12 +1819,12 @@ msgstr ""
msgid "External link to group"
msgstr ""
#: src/Content/GroupManager.php:139 src/Content/Widget.php:530
#: src/Content/GroupManager.php:139 src/Content/Widget.php:527
msgid "show less"
msgstr ""
#: src/Content/GroupManager.php:140 src/Content/Widget.php:425
#: src/Content/Widget.php:531
#: src/Content/Widget.php:528
msgid "show more"
msgstr ""
@ -1831,65 +1832,65 @@ msgstr ""
msgid "Create new group"
msgstr ""
#: src/Content/Item.php:322 src/Model/Item.php:3281
#: src/Content/Item.php:317 src/Model/Item.php:3279
msgid "event"
msgstr ""
#: src/Content/Item.php:325 src/Content/Item.php:335
#: src/Content/Item.php:320 src/Content/Item.php:330
msgid "status"
msgstr ""
#: src/Content/Item.php:331 src/Model/Item.php:3283
#: src/Content/Item.php:326 src/Model/Item.php:3281
#: src/Module/Post/Tag/Add.php:109
msgid "photo"
msgstr ""
#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127
#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127
#, php-format
msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr ""
#: src/Content/Item.php:419 view/theme/frio/theme.php:253
#: src/Content/Item.php:414 view/theme/frio/theme.php:253
msgid "Follow Thread"
msgstr ""
#: src/Content/Item.php:420 src/Model/Contact.php:1245
#: src/Content/Item.php:415 src/Model/Contact.php:1244
msgid "View Status"
msgstr ""
#: src/Content/Item.php:421 src/Content/Item.php:444 src/Model/Contact.php:1180
#: src/Model/Contact.php:1236 src/Model/Contact.php:1246
#: src/Module/Directory.php:143 src/Module/Settings/Profile/Index.php:250
#: src/Content/Item.php:416 src/Content/Item.php:439 src/Model/Contact.php:1179
#: src/Model/Contact.php:1235 src/Model/Contact.php:1245
#: src/Module/Directory.php:144 src/Module/Settings/Profile/Index.php:250
msgid "View Profile"
msgstr ""
#: src/Content/Item.php:422 src/Model/Contact.php:1247
#: src/Content/Item.php:417 src/Model/Contact.php:1246
msgid "View Photos"
msgstr ""
#: src/Content/Item.php:423 src/Model/Contact.php:1214
#: src/Model/Profile.php:446
#: src/Content/Item.php:418 src/Model/Contact.php:1213
#: src/Model/Profile.php:447
msgid "Network Posts"
msgstr ""
#: src/Content/Item.php:424 src/Model/Contact.php:1238
#: src/Model/Contact.php:1249
#: src/Content/Item.php:419 src/Model/Contact.php:1237
#: src/Model/Contact.php:1248
msgid "View Contact"
msgstr ""
#: src/Content/Item.php:425 src/Model/Contact.php:1250
#: src/Content/Item.php:420 src/Model/Contact.php:1249
msgid "Send PM"
msgstr ""
#: src/Content/Item.php:426 src/Module/Contact.php:449
#: src/Content/Item.php:421 src/Module/Contact.php:449
#: src/Module/Contact/Profile.php:524
#: src/Module/Moderation/Blocklist/Contact.php:104
#: src/Module/Moderation/Users/Active.php:126
#: src/Module/Moderation/Users/Index.php:141
#: src/Module/Moderation/Blocklist/Contact.php:102
#: src/Module/Moderation/Users/Active.php:123
#: src/Module/Moderation/Users/Index.php:138
msgid "Block"
msgstr ""
#: src/Content/Item.php:427 src/Module/Contact.php:450
#: src/Content/Item.php:422 src/Module/Contact.php:450
#: src/Module/Contact/Profile.php:532
#: src/Module/Notifications/Introductions.php:126
#: src/Module/Notifications/Introductions.php:199
@ -1897,27 +1898,27 @@ msgstr ""
msgid "Ignore"
msgstr ""
#: src/Content/Item.php:428 src/Module/Contact.php:451
#: src/Content/Item.php:423 src/Module/Contact.php:451
#: src/Module/Contact/Profile.php:540
msgid "Collapse"
msgstr ""
#: src/Content/Item.php:429 src/Object/Post.php:289
#: src/Content/Item.php:424 src/Object/Post.php:289
#, php-format
msgid "Ignore %s server"
msgstr ""
#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188
#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188
#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503
msgid "Languages"
msgstr ""
#: src/Content/Item.php:436 src/Object/Post.php:583
#: src/Content/Item.php:431 src/Object/Post.php:583
msgid "Search Text"
msgstr ""
#: src/Content/Item.php:441 src/Content/Widget.php:66
#: src/Model/Contact.php:1239 src/Model/Contact.php:1251
#: src/Content/Item.php:436 src/Content/Widget.php:66
#: src/Model/Contact.php:1238 src/Model/Contact.php:1250
#: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183
msgid "Connect/Follow"
msgstr ""
@ -1930,7 +1931,7 @@ msgstr ""
msgid "Nothing new here"
msgstr ""
#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64
#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63
msgid "Go back"
msgstr ""
@ -1942,7 +1943,7 @@ msgstr ""
msgid "@name, !group, #tags, content"
msgstr ""
#: src/Content/Nav.php:208 src/Module/Security/Login.php:146
#: src/Content/Nav.php:208 src/Module/Security/Login.php:147
msgid "Logout"
msgstr ""
@ -1951,7 +1952,7 @@ msgid "End this session"
msgstr ""
#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30
#: src/Module/Security/Login.php:147
#: src/Module/Security/Login.php:148
msgid "Login"
msgstr ""
@ -1959,7 +1960,7 @@ msgstr ""
msgid "Sign in"
msgstr ""
#: src/Content/Nav.php:215 src/Module/BaseProfile.php:42
#: src/Content/Nav.php:215 src/Module/BaseProfile.php:43
#: src/Module/Contact.php:493
msgid "Conversations"
msgstr ""
@ -1968,9 +1969,9 @@ msgstr ""
msgid "Conversations you started"
msgstr ""
#: src/Content/Nav.php:216 src/Module/BaseProfile.php:34
#: src/Module/BaseSettings.php:86 src/Module/Contact.php:485
#: src/Module/Contact/Profile.php:431 src/Module/Profile/Profile.php:259
#: src/Content/Nav.php:216 src/Module/BaseProfile.php:35
#: src/Module/BaseSettings.php:84 src/Module/Contact.php:485
#: src/Module/Contact/Profile.php:431 src/Module/Profile/Profile.php:256
#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221
msgid "Profile"
msgstr ""
@ -1979,8 +1980,8 @@ msgstr ""
msgid "Your profile page"
msgstr ""
#: src/Content/Nav.php:217 src/Module/BaseProfile.php:50
#: src/Module/Media/Photo/Browser.php:62 view/theme/frio/theme.php:225
#: src/Content/Nav.php:217 src/Module/BaseProfile.php:51
#: src/Module/Media/Photo/Browser.php:60 view/theme/frio/theme.php:225
msgid "Photos"
msgstr ""
@ -1988,8 +1989,8 @@ msgstr ""
msgid "Your photos"
msgstr ""
#: src/Content/Nav.php:218 src/Module/BaseProfile.php:58
#: src/Module/BaseProfile.php:61 src/Module/Contact.php:509
#: src/Content/Nav.php:218 src/Module/BaseProfile.php:59
#: src/Module/BaseProfile.php:62 src/Module/Contact.php:509
#: view/theme/frio/theme.php:226
msgid "Media"
msgstr ""
@ -1999,9 +2000,9 @@ msgid "Your postings with media"
msgstr ""
#: src/Content/Nav.php:219 src/Content/Nav.php:279
#: src/Module/BaseProfile.php:70 src/Module/BaseProfile.php:73
#: src/Module/BaseProfile.php:81 src/Module/BaseProfile.php:84
#: src/Module/Settings/Display.php:324 view/theme/frio/theme.php:227
#: src/Module/BaseProfile.php:71 src/Module/BaseProfile.php:74
#: src/Module/BaseProfile.php:82 src/Module/BaseProfile.php:85
#: src/Module/Settings/Display.php:321 view/theme/frio/theme.php:227
#: view/theme/frio/theme.php:231
msgid "Calendar"
msgstr ""
@ -2026,8 +2027,8 @@ msgstr ""
msgid "Home Page"
msgstr ""
#: src/Content/Nav.php:241 src/Module/Register.php:162
#: src/Module/Security/Login.php:113
#: src/Content/Nav.php:241 src/Module/Register.php:161
#: src/Module/Security/Login.php:114
msgid "Register"
msgstr ""
@ -2074,8 +2075,8 @@ msgid "Tags"
msgstr ""
#: src/Content/Nav.php:260 src/Content/Nav.php:315
#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:112
#: src/Module/BaseProfile.php:115 src/Module/Contact.php:407
#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:113
#: src/Module/BaseProfile.php:116 src/Module/Contact.php:407
#: src/Module/Contact.php:517 view/theme/frio/theme.php:234
msgid "Contacts"
msgstr ""
@ -2097,7 +2098,7 @@ msgid "People directory"
msgstr ""
#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71
#: src/Module/BaseModeration.php:97
#: src/Module/BaseModeration.php:94
msgid "Information"
msgstr ""
@ -2106,7 +2107,7 @@ msgid "Information about this friendica instance"
msgstr ""
#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64
#: src/Module/BaseAdmin.php:81 src/Module/Register.php:170
#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169
#: src/Module/Tos.php:87
msgid "Terms of Service"
msgstr ""
@ -2135,7 +2136,7 @@ msgstr ""
msgid "Friend Requests"
msgstr ""
#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:134
#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:135
#: src/Module/Notifications/Introductions.php:61
msgid "Notifications"
msgstr ""
@ -2172,8 +2173,8 @@ msgstr ""
msgid "Manage other pages"
msgstr ""
#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:98
#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:177
#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100
#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:175
#: src/Module/Welcome.php:38 view/theme/frio/theme.php:233
msgid "Settings"
msgstr ""
@ -2194,17 +2195,17 @@ msgstr ""
msgid "Site setup and configuration"
msgstr ""
#: src/Content/Nav.php:321 src/Module/BaseModeration.php:117
#: src/Module/Moderation/Blocklist/Contact.php:98
#: src/Module/Moderation/Blocklist/Server/Add.php:110
#: src/Module/Moderation/Blocklist/Server/Import.php:105
#: src/Module/Moderation/Blocklist/Server/Index.php:84
#: src/Content/Nav.php:321 src/Module/BaseModeration.php:114
#: src/Module/Moderation/Blocklist/Contact.php:96
#: src/Module/Moderation/Blocklist/Server/Add.php:107
#: src/Module/Moderation/Blocklist/Server/Import.php:102
#: src/Module/Moderation/Blocklist/Server/Index.php:81
#: src/Module/Moderation/Item/Delete.php:47
#: src/Module/Moderation/Reports.php:99 src/Module/Moderation/Summary.php:64
#: src/Module/Moderation/Users/Active.php:122
#: src/Module/Moderation/Users/Blocked.php:122
#: src/Module/Moderation/Reports.php:96 src/Module/Moderation/Summary.php:61
#: src/Module/Moderation/Users/Active.php:119
#: src/Module/Moderation/Users/Blocked.php:119
#: src/Module/Moderation/Users/Deleted.php:66
#: src/Module/Moderation/Users/Index.php:136
#: src/Module/Moderation/Users/Index.php:133
msgid "Moderation"
msgstr ""
@ -2236,33 +2237,33 @@ msgstr ""
msgid "last"
msgstr ""
#: src/Content/Text/BBCode.php:903
#: src/Content/Text/BBCode.php:908
#, php-format
msgid "<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">%2$s</a> %3$s"
msgstr ""
#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080
#: src/Model/Item.php:4086 src/Model/Item.php:4087
#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4075
#: src/Model/Item.php:4081 src/Model/Item.php:4082
msgid "Link to source"
msgstr ""
#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892
#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892
msgid "Click to open/close"
msgstr ""
#: src/Content/Text/BBCode.php:1795
#: src/Content/Text/BBCode.php:1800
msgid "$1 wrote:"
msgstr ""
#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870
#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875
msgid "Encrypted content"
msgstr ""
#: src/Content/Text/BBCode.php:2203
#: src/Content/Text/BBCode.php:2207
msgid "Invalid source protocol"
msgstr ""
#: src/Content/Text/BBCode.php:2222
#: src/Content/Text/BBCode.php:2226
msgid "Invalid link protocol"
msgstr ""
@ -2274,8 +2275,8 @@ msgstr ""
msgid "The end"
msgstr ""
#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:117
#: src/Model/Profile.php:455 src/Module/Contact/Profile.php:484
#: src/Content/Text/HTML.php:847 src/Content/Widget/VCard.php:118
#: src/Model/Profile.php:456 src/Module/Contact/Profile.php:484
msgid "Follow"
msgstr ""
@ -2315,7 +2316,7 @@ msgid "Examples: Robert Morgenstein, Fishing"
msgstr ""
#: src/Content/Widget.php:68 src/Module/Contact.php:441
#: src/Module/Directory.php:82 view/theme/vier/theme.php:185
#: src/Module/Directory.php:83 view/theme/vier/theme.php:185
msgid "Find"
msgstr ""
@ -2336,7 +2337,7 @@ msgstr ""
msgid "Invite Friends"
msgstr ""
#: src/Content/Widget.php:73 src/Module/Directory.php:74
#: src/Content/Widget.php:73 src/Module/Directory.php:75
#: view/theme/vier/theme.php:190
msgid "Global Directory"
msgstr ""
@ -2357,7 +2358,7 @@ msgstr ""
msgid "Relationships"
msgstr ""
#: src/Content/Widget.php:264 src/Module/Circle.php:281
#: src/Content/Widget.php:264 src/Module/Circle.php:280
#: src/Module/Contact.php:325
msgid "All Contacts"
msgstr ""
@ -2381,27 +2382,27 @@ msgid_plural "%d contacts in common"
msgstr[0] ""
msgstr[1] ""
#: src/Content/Widget.php:532
#: src/Content/Widget.php:529
msgid "On this date"
msgstr ""
#: src/Content/Widget.php:552
#: src/Content/Widget.php:549
msgid "Persons"
msgstr ""
#: src/Content/Widget.php:553
#: src/Content/Widget.php:550
msgid "Organisations"
msgstr ""
#: src/Content/Widget.php:554 src/Model/Contact.php:1751
#: src/Content/Widget.php:551 src/Model/Contact.php:1750
msgid "News"
msgstr ""
#: src/Content/Widget.php:556
#: src/Content/Widget.php:553
msgid "Relays"
msgstr ""
#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58
#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:56
msgid "All"
msgstr ""
@ -2417,18 +2418,18 @@ msgstr ""
msgid "Export calendar as csv"
msgstr ""
#: src/Content/Widget/ContactBlock.php:64
#: src/Content/Widget/ContactBlock.php:65
msgid "No contacts"
msgstr ""
#: src/Content/Widget/ContactBlock.php:95
#: src/Content/Widget/ContactBlock.php:96
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
msgstr[0] ""
msgstr[1] ""
#: src/Content/Widget/ContactBlock.php:112
#: src/Content/Widget/ContactBlock.php:113
msgid "View Contacts"
msgstr ""
@ -2447,101 +2448,101 @@ msgstr[1] ""
msgid "More Trending Tags"
msgstr ""
#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208
#: src/Model/Profile.php:440
#: src/Content/Widget/VCard.php:96 src/Model/Contact.php:1207
#: src/Model/Profile.php:441
msgid "Post to group"
msgstr ""
#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212
#: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80
#: src/Content/Widget/VCard.php:101 src/Model/Contact.php:1211
#: src/Model/Profile.php:445 src/Module/Moderation/Item/Source.php:77
msgid "Mention"
msgstr ""
#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:359
#: src/Module/Contact/Profile.php:420 src/Module/Profile/Profile.php:190
#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:360
#: src/Module/Contact/Profile.php:420 src/Module/Profile/Profile.php:187
msgid "XMPP:"
msgstr ""
#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:360
#: src/Module/Contact/Profile.php:422 src/Module/Profile/Profile.php:194
#: src/Content/Widget/VCard.php:112 src/Model/Profile.php:361
#: src/Module/Contact/Profile.php:422 src/Module/Profile/Profile.php:191
msgid "Matrix:"
msgstr ""
#: src/Content/Widget/VCard.php:112 src/Model/Event.php:70
#: src/Model/Event.php:97 src/Model/Event.php:459 src/Model/Event.php:947
#: src/Model/Profile.php:354 src/Module/Contact/Profile.php:418
#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180
#: src/Module/Profile/Profile.php:212
#: src/Content/Widget/VCard.php:113 src/Model/Event.php:68
#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946
#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:418
#: src/Module/Directory.php:134 src/Module/Notifications/Introductions.php:180
#: src/Module/Profile/Profile.php:209
msgid "Location:"
msgstr ""
#: src/Content/Widget/VCard.php:115 src/Model/Profile.php:468
#: src/Content/Widget/VCard.php:116 src/Model/Profile.php:469
#: src/Module/Notifications/Introductions.php:194
msgid "Network:"
msgstr ""
#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240
#: src/Model/Contact.php:1252 src/Model/Profile.php:457
#: src/Content/Widget/VCard.php:120 src/Model/Contact.php:1239
#: src/Model/Contact.php:1251 src/Model/Profile.php:458
#: src/Module/Contact/Profile.php:476
msgid "Unfollow"
msgstr ""
#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210
#: src/Model/Profile.php:442
#: src/Content/Widget/VCard.php:126 src/Model/Contact.php:1209
#: src/Model/Profile.php:443
msgid "View group"
msgstr ""
#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260
#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:257
msgid "Yourself"
msgstr ""
#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156
#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156
#: src/Module/Privacy/PermissionTooltip.php:178
msgid "Mutuals"
msgstr ""
#: src/Core/ACL.php:281
#: src/Core/ACL.php:280
msgid "Post to Email"
msgstr ""
#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103
#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103
#: src/Module/Privacy/PermissionTooltip.php:217
msgid "Public"
msgstr ""
#: src/Core/ACL.php:309
#: src/Core/ACL.php:308
msgid "This content will be shown to all your followers and can be seen in the community pages and by anyone with its link."
msgstr ""
#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105
#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105
msgid "Limited/Private"
msgstr ""
#: src/Core/ACL.php:311
#: src/Core/ACL.php:310
msgid "This content will be shown only to the people in the first box, to the exception of the people mentioned in the second box. It won't appear anywhere public."
msgstr ""
#: src/Core/ACL.php:311
#: src/Core/ACL.php:310
msgid "Start typing the name of a contact or a circle to show a filtered list. You can also mention the special circles \"Followers\" and \"Mutuals\"."
msgstr ""
#: src/Core/ACL.php:312
#: src/Core/ACL.php:311
msgid "Show to:"
msgstr ""
#: src/Core/ACL.php:313
#: src/Core/ACL.php:312
msgid "Except to:"
msgstr ""
#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145
#: src/Core/ACL.php:313 src/Module/Post/Edit.php:140
msgid "CC: email addresses"
msgstr ""
#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151
#: src/Core/ACL.php:314 src/Module/Post/Edit.php:146
msgid "Example: bob@example.com, mary@example.com"
msgstr ""
#: src/Core/ACL.php:316
#: src/Core/ACL.php:315
msgid "Connectors"
msgstr ""
@ -2553,8 +2554,8 @@ msgstr ""
msgid "You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."
msgstr ""
#: src/Core/Installer.php:184 src/Module/Install.php:193
#: src/Module/Install.php:336
#: src/Core/Installer.php:184 src/Module/Install.php:194
#: src/Module/Install.php:337
msgid "Please see the file \"doc/INSTALL.md\"."
msgstr ""
@ -2830,176 +2831,176 @@ msgstr ""
msgid "Could not connect to database."
msgstr ""
#: src/Core/L10n.php:426 src/Model/Item.php:2324
#: src/Core/L10n.php:430 src/Model/Item.php:2322
msgid "Undetermined"
msgstr ""
#: src/Core/L10n.php:433
#: src/Core/L10n.php:437
#, php-format
msgid "%s (%s)"
msgstr ""
#: src/Core/L10n.php:481 src/Model/Event.php:418
#: src/Module/Settings/Display.php:292
#: src/Core/L10n.php:485 src/Model/Event.php:416
#: src/Module/Settings/Display.php:289
msgid "Monday"
msgstr ""
#: src/Core/L10n.php:481 src/Model/Event.php:419
#: src/Module/Settings/Display.php:293
#: src/Core/L10n.php:485 src/Model/Event.php:417
#: src/Module/Settings/Display.php:290
msgid "Tuesday"
msgstr ""
#: src/Core/L10n.php:481 src/Model/Event.php:420
#: src/Module/Settings/Display.php:294
#: src/Core/L10n.php:485 src/Model/Event.php:418
#: src/Module/Settings/Display.php:291
msgid "Wednesday"
msgstr ""
#: src/Core/L10n.php:481 src/Model/Event.php:421
#: src/Module/Settings/Display.php:295
#: src/Core/L10n.php:485 src/Model/Event.php:419
#: src/Module/Settings/Display.php:292
msgid "Thursday"
msgstr ""
#: src/Core/L10n.php:481 src/Model/Event.php:422
#: src/Module/Settings/Display.php:296
#: src/Core/L10n.php:485 src/Model/Event.php:420
#: src/Module/Settings/Display.php:293
msgid "Friday"
msgstr ""
#: src/Core/L10n.php:481 src/Model/Event.php:423
#: src/Module/Settings/Display.php:297
#: src/Core/L10n.php:485 src/Model/Event.php:421
#: src/Module/Settings/Display.php:294
msgid "Saturday"
msgstr ""
#: src/Core/L10n.php:481 src/Model/Event.php:417
#: src/Module/Settings/Display.php:291
#: src/Core/L10n.php:485 src/Model/Event.php:415
#: src/Module/Settings/Display.php:288
msgid "Sunday"
msgstr ""
#: src/Core/L10n.php:485 src/Model/Event.php:438
#: src/Core/L10n.php:489 src/Model/Event.php:436
msgid "January"
msgstr ""
#: src/Core/L10n.php:485 src/Model/Event.php:439
#: src/Core/L10n.php:489 src/Model/Event.php:437
msgid "February"
msgstr ""
#: src/Core/L10n.php:485 src/Model/Event.php:440
#: src/Core/L10n.php:489 src/Model/Event.php:438
msgid "March"
msgstr ""
#: src/Core/L10n.php:485 src/Model/Event.php:441
#: src/Core/L10n.php:489 src/Model/Event.php:439
msgid "April"
msgstr ""
#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429
#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427
msgid "May"
msgstr ""
#: src/Core/L10n.php:485 src/Model/Event.php:442
#: src/Core/L10n.php:489 src/Model/Event.php:440
msgid "June"
msgstr ""
#: src/Core/L10n.php:485 src/Model/Event.php:443
#: src/Core/L10n.php:489 src/Model/Event.php:441
msgid "July"
msgstr ""
#: src/Core/L10n.php:485 src/Model/Event.php:444
#: src/Core/L10n.php:489 src/Model/Event.php:442
msgid "August"
msgstr ""
#: src/Core/L10n.php:485 src/Model/Event.php:445
#: src/Core/L10n.php:489 src/Model/Event.php:443
msgid "September"
msgstr ""
#: src/Core/L10n.php:485 src/Model/Event.php:446
#: src/Core/L10n.php:489 src/Model/Event.php:444
msgid "October"
msgstr ""
#: src/Core/L10n.php:485 src/Model/Event.php:447
#: src/Core/L10n.php:489 src/Model/Event.php:445
msgid "November"
msgstr ""
#: src/Core/L10n.php:485 src/Model/Event.php:448
#: src/Core/L10n.php:489 src/Model/Event.php:446
msgid "December"
msgstr ""
#: src/Core/L10n.php:500 src/Model/Event.php:410
#: src/Core/L10n.php:504 src/Model/Event.php:408
msgid "Mon"
msgstr ""
#: src/Core/L10n.php:500 src/Model/Event.php:411
#: src/Core/L10n.php:504 src/Model/Event.php:409
msgid "Tue"
msgstr ""
#: src/Core/L10n.php:500 src/Model/Event.php:412
#: src/Core/L10n.php:504 src/Model/Event.php:410
msgid "Wed"
msgstr ""
#: src/Core/L10n.php:500 src/Model/Event.php:413
#: src/Core/L10n.php:504 src/Model/Event.php:411
msgid "Thu"
msgstr ""
#: src/Core/L10n.php:500 src/Model/Event.php:414
#: src/Core/L10n.php:504 src/Model/Event.php:412
msgid "Fri"
msgstr ""
#: src/Core/L10n.php:500 src/Model/Event.php:415
#: src/Core/L10n.php:504 src/Model/Event.php:413
msgid "Sat"
msgstr ""
#: src/Core/L10n.php:500 src/Model/Event.php:409
#: src/Core/L10n.php:504 src/Model/Event.php:407
msgid "Sun"
msgstr ""
#: src/Core/L10n.php:504 src/Model/Event.php:425
#: src/Core/L10n.php:508 src/Model/Event.php:423
msgid "Jan"
msgstr ""
#: src/Core/L10n.php:504 src/Model/Event.php:426
#: src/Core/L10n.php:508 src/Model/Event.php:424
msgid "Feb"
msgstr ""
#: src/Core/L10n.php:504 src/Model/Event.php:427
#: src/Core/L10n.php:508 src/Model/Event.php:425
msgid "Mar"
msgstr ""
#: src/Core/L10n.php:504 src/Model/Event.php:428
#: src/Core/L10n.php:508 src/Model/Event.php:426
msgid "Apr"
msgstr ""
#: src/Core/L10n.php:504 src/Model/Event.php:430
#: src/Core/L10n.php:508 src/Model/Event.php:428
msgid "Jun"
msgstr ""
#: src/Core/L10n.php:504 src/Model/Event.php:431
#: src/Core/L10n.php:508 src/Model/Event.php:429
msgid "Jul"
msgstr ""
#: src/Core/L10n.php:504 src/Model/Event.php:432
#: src/Core/L10n.php:508 src/Model/Event.php:430
msgid "Aug"
msgstr ""
#: src/Core/L10n.php:504
#: src/Core/L10n.php:508
msgid "Sep"
msgstr ""
#: src/Core/L10n.php:504 src/Model/Event.php:434
#: src/Core/L10n.php:508 src/Model/Event.php:432
msgid "Oct"
msgstr ""
#: src/Core/L10n.php:504 src/Model/Event.php:435
#: src/Core/L10n.php:508 src/Model/Event.php:433
msgid "Nov"
msgstr ""
#: src/Core/L10n.php:504 src/Model/Event.php:436
#: src/Core/L10n.php:508 src/Model/Event.php:434
msgid "Dec"
msgstr ""
#: src/Core/Logger/Util/LoggerSettingsCheck.php:44
#: src/Core/Logger/Util/LoggerSettingsCheck.php:46
#, php-format
msgid "The logfile '%s' is not usable. No logging possible (error: '%s')"
msgstr ""
#: src/Core/Logger/Util/LoggerSettingsCheck.php:67
#: src/Core/Logger/Util/LoggerSettingsCheck.php:71
#, php-format
msgid "The debug logfile '%s' is not usable. No logging possible (error: '%s')"
msgstr ""
@ -3029,32 +3030,32 @@ msgstr ""
msgid "Enter a valid existing folder"
msgstr ""
#: src/Core/Update.php:103
#: src/Core/Update.php:104
#, php-format
msgid "Updates from version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383."
msgstr ""
#: src/Core/Update.php:114
#: src/Core/Update.php:115
#, php-format
msgid "Updates from postupdate version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383."
msgstr ""
#: src/Core/Update.php:206
#: src/Core/Update.php:207
#, php-format
msgid "%s: executing pre update %d"
msgstr ""
#: src/Core/Update.php:248
#: src/Core/Update.php:249
#, php-format
msgid "%s: executing post update %d"
msgstr ""
#: src/Core/Update.php:322
#: src/Core/Update.php:323
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
#: src/Core/Update.php:362
#: src/Core/Update.php:363
#, php-format
msgid ""
"\n"
@ -3064,16 +3065,16 @@ msgid ""
"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
msgstr ""
#: src/Core/Update.php:368
#: src/Core/Update.php:369
#, php-format
msgid "The error message is\\n[pre]%s[/pre]"
msgstr ""
#: src/Core/Update.php:372 src/Core/Update.php:400
#: src/Core/Update.php:373 src/Core/Update.php:401
msgid "[Friendica Notify] Database update"
msgstr ""
#: src/Core/Update.php:394
#: src/Core/Update.php:395
#, php-format
msgid ""
"\n"
@ -3173,7 +3174,7 @@ msgstr ""
msgid "Edit circle"
msgstr ""
#: src/Model/Circle.php:592 src/Module/Circle.php:185
#: src/Model/Circle.php:592 src/Module/Circle.php:181
msgid "Contacts not in any circle"
msgstr ""
@ -3181,8 +3182,8 @@ msgstr ""
msgid "Create a new circle"
msgstr ""
#: src/Model/Circle.php:595 src/Module/Circle.php:168 src/Module/Circle.php:190
#: src/Module/Circle.php:265
#: src/Model/Circle.php:595 src/Module/Circle.php:166 src/Module/Circle.php:189
#: src/Module/Circle.php:264
msgid "Circle Name: "
msgstr ""
@ -3190,274 +3191,274 @@ msgstr ""
msgid "Edit circles"
msgstr ""
#: src/Model/Contact.php:1259 src/Module/Moderation/Users/Pending.php:88
#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88
#: src/Module/Notifications/Introductions.php:124
#: src/Module/Notifications/Introductions.php:197
msgid "Approve"
msgstr ""
#: src/Model/Contact.php:1595 src/Model/Contact.php:1667
#: src/Model/Contact.php:1594 src/Model/Contact.php:1666
#: src/Module/Contact/Profile.php:360
#, php-format
msgid "%s has blocked you"
msgstr ""
#: src/Model/Contact.php:1747
#: src/Model/Contact.php:1746
msgid "Organisation"
msgstr ""
#: src/Model/Contact.php:1755
#: src/Model/Contact.php:1754
msgid "Group"
msgstr ""
#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122
#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:120
msgid "Relay"
msgstr ""
#: src/Model/Contact.php:3085
#: src/Model/Contact.php:3073
msgid "Disallowed profile URL."
msgstr ""
#: src/Model/Contact.php:3090 src/Module/Friendica.php:88
#: src/Model/Contact.php:3078 src/Module/Friendica.php:86
msgid "Blocked domain"
msgstr ""
#: src/Model/Contact.php:3095
#: src/Model/Contact.php:3083
msgid "Connect URL missing."
msgstr ""
#: src/Model/Contact.php:3104
#: src/Model/Contact.php:3092
msgid "The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."
msgstr ""
#: src/Model/Contact.php:3122
#: src/Model/Contact.php:3110
#, php-format
msgid "Expected network %s does not match actual network %s"
msgstr ""
#: src/Model/Contact.php:3139
#: src/Model/Contact.php:3127
msgid "This seems to be a relay account. They can't be followed by users."
msgstr ""
#: src/Model/Contact.php:3146
#: src/Model/Contact.php:3134
msgid "The profile address specified does not provide adequate information."
msgstr ""
#: src/Model/Contact.php:3148
#: src/Model/Contact.php:3136
msgid "No compatible communication protocols or feeds were discovered."
msgstr ""
#: src/Model/Contact.php:3151
#: src/Model/Contact.php:3139
msgid "An author or name was not found."
msgstr ""
#: src/Model/Contact.php:3154
#: src/Model/Contact.php:3142
msgid "No browser URL could be matched to this address."
msgstr ""
#: src/Model/Contact.php:3157
#: src/Model/Contact.php:3145
msgid "Unable to match @-style Identity Address with a known protocol or email contact."
msgstr ""
#: src/Model/Contact.php:3158
#: src/Model/Contact.php:3146
msgid "Use mailto: in front of address to force email check."
msgstr ""
#: src/Model/Contact.php:3164
#: src/Model/Contact.php:3152
msgid "Limited profile. This person will be unable to receive direct/personal notifications from you."
msgstr ""
#: src/Model/Contact.php:3223
#: src/Model/Contact.php:3211
msgid "Unable to retrieve contact information."
msgstr ""
#: src/Model/Event.php:42
#: src/Model/Event.php:40
msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)"
msgstr ""
#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457
#: src/Model/Event.php:929
#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455
#: src/Model/Event.php:928
msgid "Starts:"
msgstr ""
#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458
#: src/Model/Event.php:933
#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456
#: src/Model/Event.php:932
msgid "Finishes:"
msgstr ""
#: src/Model/Event.php:407
#: src/Model/Event.php:405
msgid "all-day"
msgstr ""
#: src/Model/Event.php:433
#: src/Model/Event.php:431
msgid "Sept"
msgstr ""
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117
#: src/Model/Event.php:448 src/Module/Calendar/Show.php:114
#: src/Util/Temporal.php:329
msgid "today"
msgstr ""
#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118
#: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339
#: src/Model/Event.php:449 src/Module/Calendar/Show.php:115
#: src/Module/Settings/Display.php:299 src/Util/Temporal.php:339
msgid "month"
msgstr ""
#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119
#: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:116
#: src/Module/Settings/Display.php:300 src/Util/Temporal.php:340
msgid "week"
msgstr ""
#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120
#: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341
#: src/Model/Event.php:451 src/Module/Calendar/Show.php:117
#: src/Module/Settings/Display.php:301 src/Util/Temporal.php:341
msgid "day"
msgstr ""
#: src/Model/Event.php:455
#: src/Model/Event.php:453
msgid "No events to display"
msgstr ""
#: src/Model/Event.php:504 src/Module/Feed.php:56
#: src/Model/Event.php:502 src/Module/Feed.php:56
#: src/Module/Update/Profile.php:42
msgid "Access to this profile has been restricted."
msgstr ""
#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52
#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:53
msgid "Event not found."
msgstr ""
#: src/Model/Event.php:624
#: src/Model/Event.php:623
msgid "l, F j"
msgstr ""
#: src/Model/Event.php:651
#: src/Model/Event.php:650
msgid "Edit event"
msgstr ""
#: src/Model/Event.php:652
#: src/Model/Event.php:651
msgid "Duplicate event"
msgstr ""
#: src/Model/Event.php:653
#: src/Model/Event.php:652
msgid "Delete event"
msgstr ""
#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24
#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24
msgid "l F d, Y \\@ g:i A"
msgstr ""
#: src/Model/Event.php:884
#: src/Model/Event.php:883
msgid "D g:i A"
msgstr ""
#: src/Model/Event.php:885
#: src/Model/Event.php:884
msgid "g:i A"
msgstr ""
#: src/Model/Event.php:948 src/Model/Event.php:950
#: src/Model/Event.php:947 src/Model/Event.php:949
msgid "Show map"
msgstr ""
#: src/Model/Event.php:949
#: src/Model/Event.php:948
msgid "Hide map"
msgstr ""
#: src/Model/Event.php:1042
#: src/Model/Event.php:1041
#, php-format
msgid "%s's birthday"
msgstr ""
#: src/Model/Event.php:1043
#: src/Model/Event.php:1042
#, php-format
msgid "Happy Birthday %s"
msgstr ""
#: src/Model/Item.php:2331
#: src/Model/Item.php:2329
#, php-format
msgid "%s (%s - %s): %s"
msgstr ""
#: src/Model/Item.php:2333
#: src/Model/Item.php:2331
#, php-format
msgid "%s (%s): %s"
msgstr ""
#: src/Model/Item.php:2336
#: src/Model/Item.php:2334
#, php-format
msgid ""
"Detected languages in this post:\n"
"%s"
msgstr ""
#: src/Model/Item.php:3285
#: src/Model/Item.php:3283
msgid "activity"
msgstr ""
#: src/Model/Item.php:3287
#: src/Model/Item.php:3285
msgid "comment"
msgstr ""
#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109
#: src/Model/Item.php:3288 src/Module/Post/Tag/Add.php:109
msgid "post"
msgstr ""
#: src/Model/Item.php:3463
#: src/Model/Item.php:3458
#, php-format
msgid "%s is blocked"
msgstr ""
#: src/Model/Item.php:3465
#: src/Model/Item.php:3460
#, php-format
msgid "%s is ignored"
msgstr ""
#: src/Model/Item.php:3467
#: src/Model/Item.php:3462
#, php-format
msgid "Content from %s is collapsed"
msgstr ""
#: src/Model/Item.php:3471
#: src/Model/Item.php:3466
msgid "Sensitive content"
msgstr ""
#: src/Model/Item.php:3980
#: src/Model/Item.php:3975
msgid "bytes"
msgstr ""
#: src/Model/Item.php:4011
#: src/Model/Item.php:4006
#, php-format
msgid "%2$s (%3$d%%, %1$d vote)"
msgid_plural "%2$s (%3$d%%, %1$d votes)"
msgstr[0] ""
msgstr[1] ""
#: src/Model/Item.php:4013
#: src/Model/Item.php:4008
#, php-format
msgid "%2$s (%1$d vote)"
msgid_plural "%2$s (%1$d votes)"
msgstr[0] ""
msgstr[1] ""
#: src/Model/Item.php:4018
#: src/Model/Item.php:4013
#, php-format
msgid "%d voter. Poll end: %s"
msgid_plural "%d voters. Poll end: %s"
msgstr[0] ""
msgstr[1] ""
#: src/Model/Item.php:4020
#: src/Model/Item.php:4015
#, php-format
msgid "%d voter."
msgid_plural "%d voters."
msgstr[0] ""
msgstr[1] ""
#: src/Model/Item.php:4022
#: src/Model/Item.php:4017
#, php-format
msgid "Poll end: %s"
msgstr ""
#: src/Model/Item.php:4063 src/Model/Item.php:4064
#: src/Model/Item.php:4058 src/Model/Item.php:4059
msgid "View on separate page"
msgstr ""
@ -3465,288 +3466,288 @@ msgstr ""
msgid "[no subject]"
msgstr ""
#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154
#: src/Model/Photo.php:1195 src/Module/Media/Photo/Upload.php:154
msgid "Wall Photos"
msgstr ""
#: src/Model/Profile.php:342 src/Module/Profile/Profile.php:274
#: src/Module/Profile/Profile.php:276
#: src/Model/Profile.php:343 src/Module/Profile/Profile.php:271
#: src/Module/Profile/Profile.php:273
msgid "Edit profile"
msgstr ""
#: src/Model/Profile.php:344
#: src/Model/Profile.php:345
msgid "Change profile photo"
msgstr ""
#: src/Model/Profile.php:357 src/Module/Directory.php:138
#: src/Module/Profile/Profile.php:200
#: src/Model/Profile.php:358 src/Module/Directory.php:139
#: src/Module/Profile/Profile.php:197
msgid "Homepage:"
msgstr ""
#: src/Model/Profile.php:358 src/Module/Contact/Profile.php:424
#: src/Model/Profile.php:359 src/Module/Contact/Profile.php:424
#: src/Module/Notifications/Introductions.php:182
msgid "About:"
msgstr ""
#: src/Model/Profile.php:459
#: src/Model/Profile.php:460
msgid "Atom feed"
msgstr ""
#: src/Model/Profile.php:466
#: src/Model/Profile.php:467
msgid "This website has been verified to belong to the same person."
msgstr ""
#: src/Model/Profile.php:517
#: src/Model/Profile.php:518
msgid "F d"
msgstr ""
#: src/Model/Profile.php:581 src/Model/Profile.php:662
#: src/Model/Profile.php:582 src/Model/Profile.php:663
msgid "[today]"
msgstr ""
#: src/Model/Profile.php:590
#: src/Model/Profile.php:591
msgid "Birthday Reminders"
msgstr ""
#: src/Model/Profile.php:591
#: src/Model/Profile.php:592
msgid "Birthdays this week:"
msgstr ""
#: src/Model/Profile.php:607
#: src/Model/Profile.php:608
msgid "g A l F d"
msgstr ""
#: src/Model/Profile.php:649
#: src/Model/Profile.php:650
msgid "[No description]"
msgstr ""
#: src/Model/Profile.php:675
#: src/Model/Profile.php:676
msgid "Event Reminders"
msgstr ""
#: src/Model/Profile.php:676
#: src/Model/Profile.php:677
msgid "Upcoming events the next 7 days:"
msgstr ""
#: src/Model/Profile.php:786
#: src/Model/Profile.php:789
msgid "Hometown:"
msgstr ""
#: src/Model/Profile.php:787
#: src/Model/Profile.php:790
msgid "Marital Status:"
msgstr ""
#: src/Model/Profile.php:788
#: src/Model/Profile.php:791
msgid "With:"
msgstr ""
#: src/Model/Profile.php:789
#: src/Model/Profile.php:792
msgid "Since:"
msgstr ""
#: src/Model/Profile.php:790
#: src/Model/Profile.php:793
msgid "Sexual Preference:"
msgstr ""
#: src/Model/Profile.php:791
#: src/Model/Profile.php:794
msgid "Political Views:"
msgstr ""
#: src/Model/Profile.php:792
#: src/Model/Profile.php:795
msgid "Religious Views:"
msgstr ""
#: src/Model/Profile.php:793
#: src/Model/Profile.php:796
msgid "Likes:"
msgstr ""
#: src/Model/Profile.php:794
#: src/Model/Profile.php:797
msgid "Dislikes:"
msgstr ""
#: src/Model/Profile.php:795
#: src/Model/Profile.php:798
msgid "Title/Description:"
msgstr ""
#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174
#: src/Model/Profile.php:799 src/Module/Admin/Summary.php:176
#: src/Module/Moderation/Report/Create.php:266
#: src/Module/Moderation/Summary.php:65
#: src/Module/Moderation/Summary.php:62
msgid "Summary"
msgstr ""
#: src/Model/Profile.php:797
#: src/Model/Profile.php:800
msgid "Musical interests"
msgstr ""
#: src/Model/Profile.php:798
#: src/Model/Profile.php:801
msgid "Books, literature"
msgstr ""
#: src/Model/Profile.php:799
#: src/Model/Profile.php:802
msgid "Television"
msgstr ""
#: src/Model/Profile.php:800
#: src/Model/Profile.php:803
msgid "Film/dance/culture/entertainment"
msgstr ""
#: src/Model/Profile.php:801
#: src/Model/Profile.php:804
msgid "Hobbies/Interests"
msgstr ""
#: src/Model/Profile.php:802
#: src/Model/Profile.php:805
msgid "Love/romance"
msgstr ""
#: src/Model/Profile.php:803
#: src/Model/Profile.php:806
msgid "Work/employment"
msgstr ""
#: src/Model/Profile.php:804
#: src/Model/Profile.php:807
msgid "School/education"
msgstr ""
#: src/Model/Profile.php:805
#: src/Model/Profile.php:808
msgid "Contact information and Social Networks"
msgstr ""
#: src/Model/Profile.php:853
#: src/Model/Profile.php:856
#, php-format
msgid "Responsible account: %s"
msgstr ""
#: src/Model/User.php:217 src/Model/User.php:1310
#: src/Model/User.php:217 src/Model/User.php:1314
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr ""
#: src/Model/User.php:739 src/Model/User.php:772
#: src/Model/User.php:741 src/Model/User.php:774
msgid "Login failed"
msgstr ""
#: src/Model/User.php:804
#: src/Model/User.php:807
msgid "Not enough information to authenticate"
msgstr ""
#: src/Model/User.php:929
#: src/Model/User.php:934
msgid "Password can't be empty"
msgstr ""
#: src/Model/User.php:971
#: src/Model/User.php:976
msgid "Empty passwords are not allowed."
msgstr ""
#: src/Model/User.php:975
#: src/Model/User.php:980
msgid "The new password has been exposed in a public data dump, please choose another."
msgstr ""
#: src/Model/User.php:979
#: src/Model/User.php:984
msgid "The password length is limited to 72 characters."
msgstr ""
#: src/Model/User.php:983
#: src/Model/User.php:988
msgid "The password can't contain white spaces nor accentuated letters"
msgstr ""
#: src/Model/User.php:1192
#: src/Model/User.php:1197
msgid "Passwords do not match. Password unchanged."
msgstr ""
#: src/Model/User.php:1199
#: src/Model/User.php:1204
msgid "An invitation is required."
msgstr ""
#: src/Model/User.php:1203
#: src/Model/User.php:1208
msgid "Invitation could not be verified."
msgstr ""
#: src/Model/User.php:1211
#: src/Model/User.php:1216
msgid "Invalid OpenID url"
msgstr ""
#: src/Model/User.php:1225 src/Security/Authentication.php:231
#: src/Model/User.php:1229 src/Security/Authentication.php:214
msgid "We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."
msgstr ""
#: src/Model/User.php:1225 src/Security/Authentication.php:231
#: src/Model/User.php:1229 src/Security/Authentication.php:214
msgid "The error message was:"
msgstr ""
#: src/Model/User.php:1231
#: src/Model/User.php:1235
msgid "Please enter the required information."
msgstr ""
#: src/Model/User.php:1245
#: src/Model/User.php:1249
#, php-format
msgid "system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."
msgstr ""
#: src/Model/User.php:1252
#: src/Model/User.php:1256
#, php-format
msgid "Username should be at least %s character."
msgid_plural "Username should be at least %s characters."
msgstr[0] ""
msgstr[1] ""
#: src/Model/User.php:1256
#: src/Model/User.php:1260
#, php-format
msgid "Username should be at most %s character."
msgid_plural "Username should be at most %s characters."
msgstr[0] ""
msgstr[1] ""
#: src/Model/User.php:1264
#: src/Model/User.php:1268
msgid "That doesn't appear to be your full (First Last) name."
msgstr ""
#: src/Model/User.php:1269
#: src/Model/User.php:1273
msgid "Your email domain is not among those allowed on this site."
msgstr ""
#: src/Model/User.php:1273
#: src/Model/User.php:1277
msgid "Not a valid email address."
msgstr ""
#: src/Model/User.php:1276
#: src/Model/User.php:1280
msgid "The nickname was blocked from registration by the nodes admin."
msgstr ""
#: src/Model/User.php:1280 src/Model/User.php:1286
#: src/Model/User.php:1284 src/Model/User.php:1290
msgid "Cannot use that email."
msgstr ""
#: src/Model/User.php:1292
#: src/Model/User.php:1296
msgid "Your nickname can only contain a-z, 0-9 and _."
msgstr ""
#: src/Model/User.php:1300 src/Model/User.php:1350
#: src/Model/User.php:1304 src/Model/User.php:1354
msgid "Nickname is already registered. Please choose another."
msgstr ""
#: src/Model/User.php:1337 src/Model/User.php:1341
#: src/Model/User.php:1341 src/Model/User.php:1345
msgid "An error occurred during registration. Please try again."
msgstr ""
#: src/Model/User.php:1364
#: src/Model/User.php:1368
msgid "An error occurred creating your default profile. Please try again."
msgstr ""
#: src/Model/User.php:1371
#: src/Model/User.php:1375
msgid "An error occurred creating your self contact. Please try again."
msgstr ""
#: src/Model/User.php:1376
#: src/Model/User.php:1380
msgid "Friends"
msgstr ""
#: src/Model/User.php:1380
#: src/Model/User.php:1384
msgid "An error occurred creating your default contact circle. Please try again."
msgstr ""
#: src/Model/User.php:1428
#: src/Model/User.php:1432
msgid "Profile Photos"
msgstr ""
#: src/Model/User.php:1616
#: src/Model/User.php:1620
#, php-format
msgid ""
"\n"
@ -3754,7 +3755,7 @@ msgid ""
"\t\t\tthe administrator of %2$s has set up an account for you."
msgstr ""
#: src/Model/User.php:1619
#: src/Model/User.php:1623
#, php-format
msgid ""
"\n"
@ -3785,12 +3786,12 @@ msgid ""
"\t\tThank you and welcome to %4$s."
msgstr ""
#: src/Model/User.php:1651 src/Model/User.php:1757
#: src/Model/User.php:1655 src/Model/User.php:1761
#, php-format
msgid "Registration details for %s"
msgstr ""
#: src/Model/User.php:1671
#: src/Model/User.php:1675
#, php-format
msgid ""
"\n"
@ -3805,12 +3806,12 @@ msgid ""
"\t\t"
msgstr ""
#: src/Model/User.php:1690
#: src/Model/User.php:1694
#, php-format
msgid "Registration at %s"
msgstr ""
#: src/Model/User.php:1714
#: src/Model/User.php:1718
#, php-format
msgid ""
"\n"
@ -3819,7 +3820,7 @@ msgid ""
"\t\t\t"
msgstr ""
#: src/Model/User.php:1722
#: src/Model/User.php:1726
#, php-format
msgid ""
"\n"
@ -3850,61 +3851,61 @@ msgid ""
"\t\t\tThank you and welcome to %2$s."
msgstr ""
#: src/Model/User.php:1784
#: src/Model/User.php:1788
msgid "User with delegates can't be removed, please remove delegate users first"
msgstr ""
#: src/Module/Admin/Addons/Details.php:49
#: src/Module/Admin/Addons/Details.php:51
msgid "Addon not found."
msgstr ""
#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41
#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41
#, php-format
msgid "Addon %s disabled."
msgstr ""
#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43
#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43
#, php-format
msgid "Addon %s enabled."
msgstr ""
#: src/Module/Admin/Addons/Details.php:72
#: src/Module/Admin/Addons/Details.php:74
#: src/Module/Admin/Themes/Details.php:38
msgid "Disable"
msgstr ""
#: src/Module/Admin/Addons/Details.php:75
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351
#: src/Module/Admin/Addons/Details.php:77
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:348
msgid "Enable"
msgstr ""
#: src/Module/Admin/Addons/Details.php:95 src/Module/Admin/Addons/Index.php:59
#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59
#: src/Module/Admin/Federation.php:213 src/Module/Admin/Logs/Settings.php:74
#: src/Module/Admin/Logs/View.php:71 src/Module/Admin/Queue.php:59
#: src/Module/Admin/Site.php:447 src/Module/Admin/Storage.php:124
#: src/Module/Admin/Summary.php:173 src/Module/Admin/Themes/Details.php:82
#: src/Module/Admin/Summary.php:175 src/Module/Admin/Themes/Details.php:82
#: src/Module/Admin/Themes/Index.php:103 src/Module/Admin/Tos.php:63
#: src/Module/Moderation/Users/Create.php:47
#: src/Module/Moderation/Users/Pending.php:82
msgid "Administration"
msgstr ""
#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60
#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127
#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60
#: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:125
msgid "Addons"
msgstr ""
#: src/Module/Admin/Addons/Details.php:97
#: src/Module/Admin/Addons/Details.php:99
#: src/Module/Admin/Themes/Details.php:84
msgid "Toggle"
msgstr ""
#: src/Module/Admin/Addons/Details.php:104
#: src/Module/Admin/Addons/Details.php:106
#: src/Module/Admin/Themes/Details.php:92
msgid "Author: "
msgstr ""
#: src/Module/Admin/Addons/Details.php:105
#: src/Module/Admin/Addons/Details.php:107
#: src/Module/Admin/Themes/Details.php:93
msgid "Maintainer: "
msgstr ""
@ -3921,11 +3922,11 @@ msgstr ""
#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69
#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:450
#: src/Module/Admin/Themes/Index.php:105 src/Module/Admin/Tos.php:72
#: src/Module/Settings/Account.php:507 src/Module/Settings/Addons.php:64
#: src/Module/Settings/Account.php:511 src/Module/Settings/Addons.php:64
#: src/Module/Settings/Connectors.php:143
#: src/Module/Settings/Connectors.php:228
#: src/Module/Settings/ContactImport.php:110
#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:317
#: src/Module/Settings/Delegation.php:179 src/Module/Settings/Display.php:314
#: src/Module/Settings/Features.php:61
msgid "Save Settings"
msgstr ""
@ -3939,74 +3940,74 @@ msgstr ""
msgid "There are currently no addons available on your node. You can find the official addon repository at %1$s."
msgstr ""
#: src/Module/Admin/DBSync.php:35
#: src/Module/Admin/DBSync.php:37
msgid "Update has been marked successful"
msgstr ""
#: src/Module/Admin/DBSync.php:43
#, php-format
msgid "Database structure update %s was successfully applied."
msgstr ""
#: src/Module/Admin/DBSync.php:45
#, php-format
msgid "Executing of database structure update %s failed with error: %s"
msgid "Database structure update %s was successfully applied."
msgstr ""
#: src/Module/Admin/DBSync.php:60
#: src/Module/Admin/DBSync.php:47
#, php-format
msgid "Executing %s failed with error: %s"
msgid "Executing of database structure update %s failed with error: %s"
msgstr ""
#: src/Module/Admin/DBSync.php:62
#, php-format
msgid "Executing %s failed with error: %s"
msgstr ""
#: src/Module/Admin/DBSync.php:64
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
#: src/Module/Admin/DBSync.php:65
#: src/Module/Admin/DBSync.php:67
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
#: src/Module/Admin/DBSync.php:68
#: src/Module/Admin/DBSync.php:70
#, php-format
msgid "There was no additional update function %s that needed to be called."
msgstr ""
#: src/Module/Admin/DBSync.php:89
#: src/Module/Admin/DBSync.php:91
msgid "No failed updates."
msgstr ""
#: src/Module/Admin/DBSync.php:90
#: src/Module/Admin/DBSync.php:92
msgid "Check database structure"
msgstr ""
#: src/Module/Admin/DBSync.php:94
#: src/Module/Admin/DBSync.php:96
msgid "Failed Updates"
msgstr ""
#: src/Module/Admin/DBSync.php:95
#: src/Module/Admin/DBSync.php:97
msgid "This does not include updates prior to 1139, which did not return a status."
msgstr ""
#: src/Module/Admin/DBSync.php:96
#: src/Module/Admin/DBSync.php:98
msgid "Mark success (if update was manually applied)"
msgstr ""
#: src/Module/Admin/DBSync.php:97
#: src/Module/Admin/DBSync.php:99
msgid "Attempt to execute this update step automatically"
msgstr ""
#: src/Module/Admin/Features.php:53
#: src/Module/Notifications/Introductions.php:136
#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:125
#: src/Module/OAuth/Acknowledge.php:41 src/Module/Register.php:124
#: src/Module/Settings/TwoFactor/Trusted.php:115
msgid "No"
msgstr ""
#: src/Module/Admin/Features.php:53 src/Module/Contact/Revoke.php:91
#: src/Module/Notifications/Introductions.php:136
#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:124
#: src/Module/OAuth/Acknowledge.php:40 src/Module/Register.php:123
#: src/Module/Settings/TwoFactor/Trusted.php:115
msgid "Yes"
msgstr ""
@ -4257,7 +4258,7 @@ msgstr ""
msgid "Job Parameters"
msgstr ""
#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:105
#: src/Module/Admin/Queue.php:65 src/Module/Moderation/Reports.php:102
#: src/Module/Settings/OAuth.php:60
msgid "Created"
msgstr ""
@ -4280,11 +4281,11 @@ msgstr ""
msgid "%s is no valid input for maximum image size"
msgstr ""
#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:212
#: src/Module/Admin/Site.php:362 src/Module/Settings/Display.php:209
msgid "No special theme for mobile devices"
msgstr ""
#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:222
#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:219
#, php-format
msgid "%s - (Experimental)"
msgstr ""
@ -4361,7 +4362,7 @@ msgstr ""
msgid "Republish users to directory"
msgstr ""
#: src/Module/Admin/Site.php:452 src/Module/Register.php:146
#: src/Module/Admin/Site.php:452 src/Module/Register.php:145
msgid "Registration"
msgstr ""
@ -4374,7 +4375,7 @@ msgid "Policies"
msgstr ""
#: src/Module/Admin/Site.php:455 src/Module/Calendar/Event/Form.php:238
#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:267
#: src/Module/Contact.php:528 src/Module/Profile/Profile.php:264
msgid "Advanced"
msgstr ""
@ -5179,7 +5180,7 @@ msgid "Can be \"all\" or \"tags\". \"all\" means that every public post should b
msgstr ""
#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315
#: src/Module/Settings/Display.php:259
#: src/Module/Settings/Display.php:256
#: src/Module/Settings/TwoFactor/Index.php:132
msgid "Disabled"
msgstr ""
@ -5342,95 +5343,95 @@ msgstr ""
msgid "Database (legacy)"
msgstr ""
#: src/Module/Admin/Summary.php:39
#: src/Module/Admin/Summary.php:41
#, php-format
msgid "Template engine (%s) error: %s"
msgstr ""
#: src/Module/Admin/Summary.php:43
#: src/Module/Admin/Summary.php:45
#, php-format
msgid "Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php bin/console.php dbstructure toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"
msgstr ""
#: src/Module/Admin/Summary.php:48
#: src/Module/Admin/Summary.php:50
#, php-format
msgid "Your DB still runs with InnoDB tables in the Antelope file format. You should change the file format to Barracuda. Friendica is using features that are not provided by the Antelope format. See <a href=\"%s\">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php bin/console.php dbstructure toinnodb</tt> of your Friendica installation for an automatic conversion.<br />"
msgstr ""
#: src/Module/Admin/Summary.php:58
#: src/Module/Admin/Summary.php:60
#, php-format
msgid "Your table_definition_cache is too low (%d). This can lead to the database error \"Prepared statement needs to be re-prepared\". Please set it at least to %d. See <a href=\"%s\">here</a> for more information.<br />"
msgstr ""
#: src/Module/Admin/Summary.php:66
#: src/Module/Admin/Summary.php:68
#, php-format
msgid "There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s"
msgstr ""
#: src/Module/Admin/Summary.php:74
#: src/Module/Admin/Summary.php:76
msgid "The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."
msgstr ""
#: src/Module/Admin/Summary.php:78
#: src/Module/Admin/Summary.php:80
msgid "The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)"
msgstr ""
#: src/Module/Admin/Summary.php:82
#: src/Module/Admin/Summary.php:84
msgid "The system.url entry is missing. This is a low level setting and can lead to unexpected behavior. Please add a valid entry as soon as possible in the config file or per console command!"
msgstr ""
#: src/Module/Admin/Summary.php:87
#: src/Module/Admin/Summary.php:89
msgid "The worker was never executed. Please check your database structure!"
msgstr ""
#: src/Module/Admin/Summary.php:89
#: src/Module/Admin/Summary.php:91
#, php-format
msgid "The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."
msgstr ""
#: src/Module/Admin/Summary.php:94
#: src/Module/Admin/Summary.php:96
#, php-format
msgid "Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from <code>.htconfig.php</code>. See <a href=\"%s\">the Config help page</a> for help with the transition."
msgstr ""
#: src/Module/Admin/Summary.php:98
#: src/Module/Admin/Summary.php:100
#, php-format
msgid "Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from <code>config/local.ini.php</code>. See <a href=\"%s\">the Config help page</a> for help with the transition."
msgstr ""
#: src/Module/Admin/Summary.php:104
#: src/Module/Admin/Summary.php:106
#, php-format
msgid "<a href=\"%s\">%s</a> is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See <a href=\"%s\">the installation page</a> for help."
msgstr ""
#: src/Module/Admin/Summary.php:128
#: src/Module/Admin/Summary.php:130
#, php-format
msgid "Friendica's system.basepath was updated from '%s' to '%s'. Please remove the system.basepath from your db to avoid differences."
msgstr ""
#: src/Module/Admin/Summary.php:136
#: src/Module/Admin/Summary.php:138
#, php-format
msgid "Friendica's current system.basepath '%s' is wrong and the config file '%s' isn't used."
msgstr ""
#: src/Module/Admin/Summary.php:144
#: src/Module/Admin/Summary.php:146
#, php-format
msgid "Friendica's current system.basepath '%s' is not equal to the config file '%s'. Please fix your configuration."
msgstr ""
#: src/Module/Admin/Summary.php:155
#: src/Module/Admin/Summary.php:157
msgid "Message queues"
msgstr ""
#: src/Module/Admin/Summary.php:158
#: src/Module/Admin/Summary.php:160
msgid "Server Settings"
msgstr ""
#: src/Module/Admin/Summary.php:176
#: src/Module/Admin/Summary.php:178
msgid "Version"
msgstr ""
#: src/Module/Admin/Summary.php:180
#: src/Module/Admin/Summary.php:182
msgid "Active addons"
msgstr ""
@ -5458,7 +5459,7 @@ msgstr ""
msgid "Themes"
msgstr ""
#: src/Module/Admin/Themes/Embed.php:69
#: src/Module/Admin/Themes/Embed.php:66
msgid "Unknown theme."
msgstr ""
@ -5555,15 +5556,15 @@ msgstr ""
msgid "Posts from %s can't be unshared"
msgstr ""
#: src/Module/Api/Twitter/ContactEndpoint.php:54
#: src/Module/Api/Twitter/ContactEndpoint.php:52
msgid "Contact not found"
msgstr ""
#: src/Module/Apps.php:49
#: src/Module/Apps.php:48
msgid "No installed applications."
msgstr ""
#: src/Module/Apps.php:54
#: src/Module/Apps.php:53
msgid "Applications"
msgstr ""
@ -5572,7 +5573,7 @@ msgid "Item was not found."
msgstr ""
#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44
#: src/Module/BaseModeration.php:66 src/Module/BaseModeration.php:70
#: src/Module/BaseModeration.php:63 src/Module/BaseModeration.php:67
msgid "Please login to continue."
msgstr ""
@ -5584,15 +5585,15 @@ msgstr ""
msgid "Submanaged account can't access the administration pages. Please log back in as the main account."
msgstr ""
#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:98
#: src/Module/BaseAdmin.php:72 src/Module/BaseModeration.php:95
msgid "Overview"
msgstr ""
#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:101
#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:98
msgid "Configuration"
msgstr ""
#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:98
#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:96
msgid "Additional features"
msgstr ""
@ -5612,7 +5613,7 @@ msgstr ""
msgid "Inspect worker Queue"
msgstr ""
#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:109
#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:106
msgid "Diagnostics"
msgstr ""
@ -5632,7 +5633,7 @@ msgstr ""
msgid "Babel"
msgstr ""
#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:125
#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:129
msgid "ActivityPub Conversion"
msgstr ""
@ -5640,94 +5641,94 @@ msgstr ""
msgid "Addon Features"
msgstr ""
#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:118
#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:115
msgid "User registrations waiting for confirmation"
msgstr ""
#: src/Module/BaseApi.php:443 src/Module/BaseApi.php:459
#: src/Module/BaseApi.php:475
#: src/Module/BaseApi.php:441 src/Module/BaseApi.php:457
#: src/Module/BaseApi.php:473
msgid "Too Many Requests"
msgstr ""
#: src/Module/BaseApi.php:444
#: src/Module/BaseApi.php:442
#, php-format
msgid "Daily posting limit of %d post reached. The post was rejected."
msgid_plural "Daily posting limit of %d posts reached. The post was rejected."
msgstr[0] ""
msgstr[1] ""
#: src/Module/BaseApi.php:460
#: src/Module/BaseApi.php:458
#, php-format
msgid "Weekly posting limit of %d post reached. The post was rejected."
msgid_plural "Weekly posting limit of %d posts reached. The post was rejected."
msgstr[0] ""
msgstr[1] ""
#: src/Module/BaseApi.php:476
#: src/Module/BaseApi.php:474
#, php-format
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgid_plural "Monthly posting limit of %d posts reached. The post was rejected."
msgstr[0] ""
msgstr[1] ""
#: src/Module/BaseModeration.php:75
#: src/Module/BaseModeration.php:72
msgid "You don't have access to moderation pages."
msgstr ""
#: src/Module/BaseModeration.php:79
#: src/Module/BaseModeration.php:76
msgid "Submanaged account can't access the moderation pages. Please log back in as the main account."
msgstr ""
#: src/Module/BaseModeration.php:99 src/Module/Moderation/Reports.php:104
#: src/Module/BaseModeration.php:96 src/Module/Moderation/Reports.php:101
msgid "Reports"
msgstr ""
#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137
#: src/Module/Moderation/Users/Index.php:147
#: src/Module/BaseModeration.php:99 src/Module/Moderation/Users/Index.php:134
#: src/Module/Moderation/Users/Index.php:144
msgid "Users"
msgstr ""
#: src/Module/BaseModeration.php:104
#: src/Module/BaseModeration.php:101
msgid "Tools"
msgstr ""
#: src/Module/BaseModeration.php:105
#: src/Module/BaseModeration.php:102
msgid "Contact Blocklist"
msgstr ""
#: src/Module/BaseModeration.php:106
#: src/Module/BaseModeration.php:103
msgid "Server Blocklist"
msgstr ""
#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Delete.php:48
#: src/Module/BaseModeration.php:104 src/Module/Moderation/Item/Delete.php:48
msgid "Delete Item"
msgstr ""
#: src/Module/BaseModeration.php:110 src/Module/Moderation/Item/Source.php:71
#: src/Module/BaseModeration.php:107 src/Module/Moderation/Item/Source.php:68
msgid "Item Source"
msgstr ""
#: src/Module/BaseProfile.php:37 src/Module/Contact.php:488
#: src/Module/BaseProfile.php:38 src/Module/Contact.php:488
msgid "Profile Details"
msgstr ""
#: src/Module/BaseProfile.php:45
#: src/Module/BaseProfile.php:46
msgid "Conversations started"
msgstr ""
#: src/Module/BaseProfile.php:96
#: src/Module/BaseProfile.php:97
msgid "Only You Can See This"
msgstr ""
#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65
#: src/Module/BaseProfile.php:102 src/Module/Profile/Schedule.php:67
msgid "Scheduled Posts"
msgstr ""
#: src/Module/BaseProfile.php:104
#: src/Module/BaseProfile.php:105
msgid "Posts that are scheduled for publishing"
msgstr ""
#: src/Module/BaseProfile.php:123 src/Module/BaseProfile.php:126
#: src/Module/BaseProfile.php:124 src/Module/BaseProfile.php:127
msgid "Tips for New Members"
msgstr ""
@ -5752,44 +5753,44 @@ msgid_plural "%d results were filtered out because your node blocks the domain t
msgstr[0] ""
msgstr[1] ""
#: src/Module/BaseSettings.php:66
#: src/Module/BaseSettings.php:64
msgid "Account"
msgstr ""
#: src/Module/BaseSettings.php:73 src/Module/Security/TwoFactor/Verify.php:82
#: src/Module/BaseSettings.php:71 src/Module/Security/TwoFactor/Verify.php:82
#: src/Module/Settings/TwoFactor/Index.php:124
msgid "Two-factor authentication"
msgstr ""
#: src/Module/BaseSettings.php:106
#: src/Module/BaseSettings.php:104
msgid "Display"
msgstr ""
#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189
#: src/Module/BaseSettings.php:118 src/Module/Settings/Connectors.php:189
msgid "Social Networks"
msgstr ""
#: src/Module/BaseSettings.php:134 src/Module/Settings/Delegation.php:180
#: src/Module/BaseSettings.php:132 src/Module/Settings/Delegation.php:180
msgid "Manage Accounts"
msgstr ""
#: src/Module/BaseSettings.php:141
#: src/Module/BaseSettings.php:139
msgid "Connected apps"
msgstr ""
#: src/Module/BaseSettings.php:148
#: src/Module/BaseSettings.php:146
msgid "Remote servers"
msgstr ""
#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109
#: src/Module/BaseSettings.php:153 src/Module/Settings/ContactImport.php:109
msgid "Import Contacts"
msgstr ""
#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84
#: src/Module/BaseSettings.php:160 src/Module/Settings/UserExport.php:84
msgid "Export personal data"
msgstr ""
#: src/Module/BaseSettings.php:169
#: src/Module/BaseSettings.php:167
msgid "Remove account"
msgstr ""
@ -5801,24 +5802,24 @@ msgstr ""
msgid "The post was created"
msgstr ""
#: src/Module/Calendar/Event/API.php:87 src/Module/Calendar/Event/API.php:122
#: src/Module/Calendar/Event/API.php:86 src/Module/Calendar/Event/API.php:121
#: src/Module/Calendar/Event/Form.php:66
msgid "Invalid Request"
msgstr ""
#: src/Module/Calendar/Event/API.php:96
#: src/Module/Calendar/Event/API.php:95
msgid "Event id is missing."
msgstr ""
#: src/Module/Calendar/Event/API.php:118
#: src/Module/Calendar/Event/API.php:117
msgid "Failed to remove event"
msgstr ""
#: src/Module/Calendar/Event/API.php:174 src/Module/Calendar/Event/API.php:176
#: src/Module/Calendar/Event/API.php:173 src/Module/Calendar/Event/API.php:175
msgid "Event can not end before it has started."
msgstr ""
#: src/Module/Calendar/Event/API.php:183 src/Module/Calendar/Event/API.php:185
#: src/Module/Calendar/Event/API.php:182 src/Module/Calendar/Event/API.php:184
msgid "Event title and start time are required."
msgstr ""
@ -5833,20 +5834,20 @@ msgstr ""
#: src/Module/Calendar/Event/Form.php:195
#: src/Module/Calendar/Event/Form.php:223 src/Module/Debug/Probe.php:45
#: src/Module/Install.php:187 src/Module/Install.php:213
#: src/Module/Install.php:218 src/Module/Install.php:232
#: src/Module/Install.php:241 src/Module/Install.php:246
#: src/Module/Install.php:252 src/Module/Install.php:257
#: src/Module/Install.php:271 src/Module/Install.php:284
#: src/Module/Install.php:311
#: src/Module/Moderation/Blocklist/Server/Add.php:125
#: src/Module/Moderation/Blocklist/Server/Add.php:127
#: src/Module/Moderation/Blocklist/Server/Import.php:116
#: src/Module/Moderation/Blocklist/Server/Index.php:75
#: src/Module/Moderation/Blocklist/Server/Index.php:76
#: src/Module/Moderation/Blocklist/Server/Index.php:104
#: src/Module/Moderation/Blocklist/Server/Index.php:105
#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:142
#: src/Module/Install.php:188 src/Module/Install.php:214
#: src/Module/Install.php:219 src/Module/Install.php:233
#: src/Module/Install.php:242 src/Module/Install.php:247
#: src/Module/Install.php:253 src/Module/Install.php:258
#: src/Module/Install.php:272 src/Module/Install.php:285
#: src/Module/Install.php:312
#: src/Module/Moderation/Blocklist/Server/Add.php:122
#: src/Module/Moderation/Blocklist/Server/Add.php:124
#: src/Module/Moderation/Blocklist/Server/Import.php:113
#: src/Module/Moderation/Blocklist/Server/Index.php:72
#: src/Module/Moderation/Blocklist/Server/Index.php:73
#: src/Module/Moderation/Blocklist/Server/Index.php:101
#: src/Module/Moderation/Blocklist/Server/Index.php:102
#: src/Module/Moderation/Item/Delete.php:53 src/Module/Register.php:141
#: src/Module/Security/TwoFactor/Verify.php:87
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
#: src/Module/Settings/TwoFactor/Index.php:147
@ -5882,7 +5883,7 @@ msgstr ""
msgid "Share this event"
msgstr ""
#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:266
#: src/Module/Calendar/Event/Form.php:237 src/Module/Profile/Profile.php:263
msgid "Basic"
msgstr ""
@ -5898,19 +5899,19 @@ msgstr ""
msgid "calendar"
msgstr ""
#: src/Module/Calendar/Show.php:113
#: src/Module/Calendar/Show.php:110
msgid "Events"
msgstr ""
#: src/Module/Calendar/Show.php:114
#: src/Module/Calendar/Show.php:111
msgid "View"
msgstr ""
#: src/Module/Calendar/Show.php:115
#: src/Module/Calendar/Show.php:112
msgid "Create New Event"
msgstr ""
#: src/Module/Calendar/Show.php:121 src/Module/Settings/Display.php:305
#: src/Module/Calendar/Show.php:118 src/Module/Settings/Display.php:302
msgid "list"
msgstr ""
@ -5918,7 +5919,7 @@ msgstr ""
msgid "Could not create circle."
msgstr ""
#: src/Module/Circle.php:54 src/Module/Circle.php:203 src/Module/Circle.php:227
#: src/Module/Circle.php:54 src/Module/Circle.php:202 src/Module/Circle.php:226
msgid "Circle not found."
msgstr ""
@ -5926,92 +5927,92 @@ msgstr ""
msgid "Circle name was not changed."
msgstr ""
#: src/Module/Circle.php:80
#: src/Module/Circle.php:78
msgid "Unknown circle."
msgstr ""
#: src/Module/Circle.php:86 src/Module/Circle.php:95
#: src/Module/Circle.php:84 src/Module/Circle.php:93
#: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95
#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:73
#: src/Module/Contact/Conversations.php:78
#: src/Module/Contact/Conversations.php:83 src/Module/Contact/Media.php:47
#: src/Module/Contact/Contacts.php:57 src/Module/Contact/Conversations.php:72
#: src/Module/Contact/Conversations.php:77
#: src/Module/Contact/Conversations.php:82 src/Module/Contact/Media.php:47
#: src/Module/Contact/Posts.php:64 src/Module/Contact/Posts.php:69
#: src/Module/Contact/Posts.php:74 src/Module/Contact/Profile.php:146
#: src/Module/Contact/Profile.php:151 src/Module/Contact/Profile.php:170
#: src/Module/Contact/Redir.php:79 src/Module/Contact/Redir.php:133
#: src/Module/FriendSuggest.php:58 src/Module/FriendSuggest.php:96
#: src/Module/Contact/Redir.php:77 src/Module/Contact/Redir.php:131
#: src/Module/FriendSuggest.php:57 src/Module/FriendSuggest.php:95
msgid "Contact not found."
msgstr ""
#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52
#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52
msgid "Invalid contact."
msgstr ""
#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56
#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56
msgid "Contact is deleted."
msgstr ""
#: src/Module/Circle.php:105
#: src/Module/Circle.php:103
msgid "Unable to add the contact to the circle."
msgstr ""
#: src/Module/Circle.php:108
#: src/Module/Circle.php:106
msgid "Contact successfully added to circle."
msgstr ""
#: src/Module/Circle.php:112
#: src/Module/Circle.php:110
msgid "Unable to remove the contact from the circle."
msgstr ""
#: src/Module/Circle.php:115
#: src/Module/Circle.php:113
msgid "Contact successfully removed from circle."
msgstr ""
#: src/Module/Circle.php:119
#: src/Module/Circle.php:117
msgid "Bad request."
msgstr ""
#: src/Module/Circle.php:160
#: src/Module/Circle.php:158
msgid "Save Circle"
msgstr ""
#: src/Module/Circle.php:161
#: src/Module/Circle.php:159
msgid "Filter"
msgstr ""
#: src/Module/Circle.php:167
#: src/Module/Circle.php:165
msgid "Create a circle of contacts/friends."
msgstr ""
#: src/Module/Circle.php:208
#: src/Module/Circle.php:207
msgid "Unable to remove circle."
msgstr ""
#: src/Module/Circle.php:259
#: src/Module/Circle.php:258
msgid "Delete Circle"
msgstr ""
#: src/Module/Circle.php:269
#: src/Module/Circle.php:268
msgid "Edit Circle Name"
msgstr ""
#: src/Module/Circle.php:279
#: src/Module/Circle.php:278
msgid "Members"
msgstr ""
#: src/Module/Circle.php:282
#: src/Module/Circle.php:281
msgid "Circle is empty"
msgstr ""
#: src/Module/Circle.php:298
#: src/Module/Circle.php:297
msgid "Remove contact from circle"
msgstr ""
#: src/Module/Circle.php:321
#: src/Module/Circle.php:320
msgid "Click on a contact to add or remove."
msgstr ""
#: src/Module/Circle.php:338
#: src/Module/Circle.php:337
msgid "Add contact to circle"
msgstr ""
@ -6027,7 +6028,7 @@ msgid "Show all contacts"
msgstr ""
#: src/Module/Contact.php:333 src/Module/Contact.php:412
#: src/Module/Moderation/BaseUsers.php:74
#: src/Module/Moderation/BaseUsers.php:72
msgid "Pending"
msgstr ""
@ -6036,7 +6037,7 @@ msgid "Only show pending contacts"
msgstr ""
#: src/Module/Contact.php:341 src/Module/Contact.php:415
#: src/Module/Moderation/BaseUsers.php:82
#: src/Module/Moderation/BaseUsers.php:80
msgid "Blocked"
msgstr ""
@ -6095,9 +6096,9 @@ msgid "Update"
msgstr ""
#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:524
#: src/Module/Moderation/Blocklist/Contact.php:105
#: src/Module/Moderation/Users/Blocked.php:127
#: src/Module/Moderation/Users/Index.php:143
#: src/Module/Moderation/Blocklist/Contact.php:103
#: src/Module/Moderation/Users/Blocked.php:124
#: src/Module/Moderation/Users/Index.php:140
msgid "Unblock"
msgstr ""
@ -6171,14 +6172,14 @@ msgid "Return to contact editor"
msgstr ""
#: src/Module/Contact/Advanced.php:120
#: src/Module/Moderation/Blocklist/Contact.php:110
#: src/Module/Moderation/Reports.php:105
#: src/Module/Moderation/Users/Active.php:115
#: src/Module/Moderation/Users/Blocked.php:115
#: src/Module/Moderation/Blocklist/Contact.php:108
#: src/Module/Moderation/Reports.php:102
#: src/Module/Moderation/Users/Active.php:112
#: src/Module/Moderation/Users/Blocked.php:112
#: src/Module/Moderation/Users/Create.php:56
#: src/Module/Moderation/Users/Deleted.php:69
#: src/Module/Moderation/Users/Index.php:129
#: src/Module/Moderation/Users/Index.php:149
#: src/Module/Moderation/Users/Index.php:126
#: src/Module/Moderation/Users/Index.php:146
#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58
msgid "Name"
msgstr ""
@ -6203,59 +6204,59 @@ msgstr ""
msgid "No known contacts."
msgstr ""
#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:116
#: src/Module/Contact/Contacts.php:89 src/Module/Profile/Common.php:114
msgid "No common contacts."
msgstr ""
#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:123
#: src/Module/Contact/Contacts.php:101 src/Module/Profile/Contacts.php:121
#, php-format
msgid "Follower (%s)"
msgid_plural "Followers (%s)"
msgstr[0] ""
msgstr[1] ""
#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:126
#: src/Module/Contact/Contacts.php:105 src/Module/Profile/Contacts.php:124
#, php-format
msgid "Following (%s)"
msgid_plural "Following (%s)"
msgstr[0] ""
msgstr[1] ""
#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:129
#: src/Module/Contact/Contacts.php:109 src/Module/Profile/Contacts.php:127
#, php-format
msgid "Mutual friend (%s)"
msgid_plural "Mutual friends (%s)"
msgstr[0] ""
msgstr[1] ""
#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:131
#: src/Module/Contact/Contacts.php:111 src/Module/Profile/Contacts.php:129
#, php-format
msgid "These contacts both follow and are followed by <strong>%s</strong>."
msgstr ""
#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:104
#: src/Module/Contact/Contacts.php:117 src/Module/Profile/Common.php:102
#, php-format
msgid "Common contact (%s)"
msgid_plural "Common contacts (%s)"
msgstr[0] ""
msgstr[1] ""
#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:106
#: src/Module/Contact/Contacts.php:119 src/Module/Profile/Common.php:104
#, php-format
msgid "Both <strong>%s</strong> and yourself have publicly interacted with these contacts (follow, comment or likes on public posts)."
msgstr ""
#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:137
#: src/Module/Contact/Contacts.php:125 src/Module/Profile/Contacts.php:135
#, php-format
msgid "Contact (%s)"
msgid_plural "Contacts (%s)"
msgstr[0] ""
msgstr[1] ""
#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:47
#: src/Module/Contact/Redir.php:208 src/Module/Conversation/Community.php:154
#: src/Module/Debug/ItemBody.php:30 src/Module/Diaspora/Receive.php:45
#: src/Module/Item/Display.php:83 src/Module/Item/Feed.php:45
#: src/Module/Contact/Follow.php:56 src/Module/Contact/Redir.php:45
#: src/Module/Contact/Redir.php:206 src/Module/Conversation/Community.php:154
#: src/Module/Debug/ItemBody.php:24 src/Module/Diaspora/Receive.php:45
#: src/Module/Item/Display.php:82 src/Module/Item/Feed.php:45
#: src/Module/Item/Follow.php:27 src/Module/Item/Ignore.php:27
#: src/Module/Item/Language.php:39 src/Module/Item/Pin.php:27
#: src/Module/Item/Pin.php:42 src/Module/Item/Searchtext.php:39
@ -6290,8 +6291,8 @@ msgstr ""
#: src/Module/Contact/Follow.php:155 src/Module/Contact/Profile.php:414
#: src/Module/Contact/Unfollow.php:115
#: src/Module/Moderation/Blocklist/Contact.php:119
#: src/Module/Moderation/Reports.php:112
#: src/Module/Moderation/Blocklist/Contact.php:117
#: src/Module/Moderation/Reports.php:109
#: src/Module/Notifications/Introductions.php:121
#: src/Module/Notifications/Introductions.php:191
msgid "Profile URL"
@ -6299,7 +6300,7 @@ msgstr ""
#: src/Module/Contact/Follow.php:156 src/Module/Contact/Profile.php:426
#: src/Module/Notifications/Introductions.php:184
#: src/Module/Profile/Profile.php:225
#: src/Module/Profile/Profile.php:222
msgid "Tags:"
msgstr ""
@ -6634,7 +6635,7 @@ msgstr ""
msgid "Revoke the follow from this contact"
msgstr ""
#: src/Module/Contact/Redir.php:127
#: src/Module/Contact/Redir.php:125
msgid "Bad Request."
msgstr ""
@ -6696,29 +6697,29 @@ msgstr ""
msgid "Not available."
msgstr ""
#: src/Module/Conversation/Network.php:205
#: src/Module/Conversation/Network.php:202
msgid "No such circle"
msgstr ""
#: src/Module/Conversation/Network.php:209
#: src/Module/Conversation/Network.php:206
#, php-format
msgid "Circle: %s"
msgstr ""
#: src/Module/Conversation/Network.php:229
#: src/Module/Conversation/Network.php:226
#, php-format
msgid "Error %d (%s) while fetching the timeline."
msgstr ""
#: src/Module/Conversation/Network.php:307
#: src/Module/Conversation/Network.php:304
msgid "Network feed not available."
msgstr ""
#: src/Module/Conversation/Timeline.php:193
#: src/Module/Conversation/Timeline.php:190
msgid "Include"
msgstr ""
#: src/Module/Conversation/Timeline.php:194
#: src/Module/Conversation/Timeline.php:191
msgid "Hide"
msgstr ""
@ -6738,23 +6739,23 @@ msgstr ""
msgid "Activity"
msgstr ""
#: src/Module/Debug/ActivityPubConversion.php:105
#: src/Module/Debug/ActivityPubConversion.php:109
msgid "Object data"
msgstr ""
#: src/Module/Debug/ActivityPubConversion.php:112
#: src/Module/Debug/ActivityPubConversion.php:116
msgid "Result Item"
msgstr ""
#: src/Module/Debug/ActivityPubConversion.php:117
#: src/Module/Moderation/Item/Source.php:82
#: src/Module/Debug/ActivityPubConversion.php:121
#: src/Module/Debug/Babel.php:286 src/Module/Moderation/Item/Source.php:79
#: src/Module/Security/TwoFactor/Verify.php:84
msgid "Error"
msgid_plural "Errors"
msgstr[0] ""
msgstr[1] ""
#: src/Module/Debug/ActivityPubConversion.php:126
#: src/Module/Debug/ActivityPubConversion.php:130
msgid "Source activity"
msgstr ""
@ -6890,35 +6891,47 @@ msgstr ""
msgid "HTML::toPlaintext (compact)"
msgstr ""
#: src/Module/Debug/Babel.php:240
#: src/Module/Debug/Babel.php:248
msgid "Decoded post"
msgstr ""
#: src/Module/Debug/Babel.php:259
#: src/Module/Debug/Babel.php:269
msgid "Post array before expand entities"
msgstr ""
#: src/Module/Debug/Babel.php:269
#: src/Module/Debug/Babel.php:276
msgid "Post converted"
msgstr ""
#: src/Module/Debug/Babel.php:281
msgid "Converted body"
msgstr ""
#: src/Module/Debug/Babel.php:287
msgid "Twitter addon is absent from the addon/ folder."
msgstr ""
#: src/Module/Debug/Babel.php:297
msgid "Babel Diagnostic"
msgstr ""
#: src/Module/Debug/Babel.php:271
#: src/Module/Debug/Babel.php:299
msgid "Source text"
msgstr ""
#: src/Module/Debug/Babel.php:272
#: src/Module/Debug/Babel.php:300
msgid "BBCode"
msgstr ""
#: src/Module/Debug/Babel.php:274
#: src/Module/Debug/Babel.php:302
msgid "Markdown"
msgstr ""
#: src/Module/Debug/Babel.php:275
#: src/Module/Debug/Babel.php:303
msgid "HTML"
msgstr ""
#: src/Module/Debug/Babel.php:277
#: src/Module/Debug/Babel.php:305
msgid "Twitter Source / Tweet URL (requires API key)"
msgstr ""
@ -6982,19 +6995,19 @@ msgstr ""
msgid "Lookup address:"
msgstr ""
#: src/Module/Directory.php:60
#: src/Module/Directory.php:61
msgid "No entries (some entries may be hidden)."
msgstr ""
#: src/Module/Directory.php:76
#: src/Module/Directory.php:77
msgid "Find on this site"
msgstr ""
#: src/Module/Directory.php:78
#: src/Module/Directory.php:79
msgid "Results for:"
msgstr ""
#: src/Module/Directory.php:80
#: src/Module/Directory.php:81
msgid "Site Directory"
msgstr ""
@ -7010,69 +7023,69 @@ msgstr ""
msgid "- select -"
msgstr ""
#: src/Module/FriendSuggest.php:69
#: src/Module/FriendSuggest.php:68
msgid "Suggested contact not found."
msgstr ""
#: src/Module/FriendSuggest.php:87
#: src/Module/FriendSuggest.php:86
msgid "Friend suggestion sent."
msgstr ""
#: src/Module/FriendSuggest.php:124
#: src/Module/FriendSuggest.php:123
msgid "Suggest Friends"
msgstr ""
#: src/Module/FriendSuggest.php:127
#: src/Module/FriendSuggest.php:126
#, php-format
msgid "Suggest a friend for %s"
msgstr ""
#: src/Module/Friendica.php:69
#: src/Module/Friendica.php:67
msgid "Installed addons/apps:"
msgstr ""
#: src/Module/Friendica.php:74
#: src/Module/Friendica.php:72
msgid "No installed addons/apps"
msgstr ""
#: src/Module/Friendica.php:79
#: src/Module/Friendica.php:77
#, php-format
msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
msgstr ""
#: src/Module/Friendica.php:86
#: src/Module/Friendica.php:84
msgid "On this server the following remote servers are blocked."
msgstr ""
#: src/Module/Friendica.php:89
#: src/Module/Moderation/Blocklist/Server/Index.php:76
#: src/Module/Moderation/Blocklist/Server/Index.php:100
#: src/Module/Friendica.php:87
#: src/Module/Moderation/Blocklist/Server/Index.php:73
#: src/Module/Moderation/Blocklist/Server/Index.php:97
#: src/Module/Settings/Channels.php:218
msgid "Reason for the block"
msgstr ""
#: src/Module/Friendica.php:91
#: src/Module/Friendica.php:89
msgid "Download this list in CSV format"
msgstr ""
#: src/Module/Friendica.php:105
#: src/Module/Friendica.php:103
#, php-format
msgid "This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."
msgstr ""
#: src/Module/Friendica.php:110
#: src/Module/Friendica.php:108
msgid "Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."
msgstr ""
#: src/Module/Friendica.php:111
#: src/Module/Friendica.php:109
msgid "Bug reports and issues: please visit"
msgstr ""
#: src/Module/Friendica.php:111
#: src/Module/Friendica.php:109
msgid "the bugtracker at github"
msgstr ""
#: src/Module/Friendica.php:112
#: src/Module/Friendica.php:110
msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
msgstr ""
@ -7093,254 +7106,254 @@ msgstr ""
msgid "Welcome to %s"
msgstr ""
#: src/Module/Install.php:175
#: src/Module/Install.php:176
msgid "Friendica Communications Server - Setup"
msgstr ""
#: src/Module/Install.php:186
#: src/Module/Install.php:187
msgid "System check"
msgstr ""
#: src/Module/Install.php:188 src/Module/Install.php:233
#: src/Module/Install.php:312
#: src/Module/Install.php:189 src/Module/Install.php:234
#: src/Module/Install.php:313
msgid "Requirement not satisfied"
msgstr ""
#: src/Module/Install.php:189
#: src/Module/Install.php:190
msgid "Optional requirement not satisfied"
msgstr ""
#: src/Module/Install.php:190
#: src/Module/Install.php:191
msgid "OK"
msgstr ""
#: src/Module/Install.php:194
#: src/Module/Install.php:195
msgid "Next"
msgstr ""
#: src/Module/Install.php:195
#: src/Module/Install.php:196
msgid "Check again"
msgstr ""
#: src/Module/Install.php:208
#: src/Module/Install.php:209
msgid "Base settings"
msgstr ""
#: src/Module/Install.php:210
#: src/Module/Install.php:211
msgid "Base path to installation"
msgstr ""
#: src/Module/Install.php:212
#: src/Module/Install.php:213
msgid "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."
msgstr ""
#: src/Module/Install.php:215
#: src/Module/Install.php:216
msgid "The Friendica system URL"
msgstr ""
#: src/Module/Install.php:217
#: src/Module/Install.php:218
msgid "Overwrite this field in case the system URL determination isn't right, otherwise leave it as is."
msgstr ""
#: src/Module/Install.php:228
#: src/Module/Install.php:229
msgid "Database connection"
msgstr ""
#: src/Module/Install.php:229
#: src/Module/Install.php:230
msgid "In order to install Friendica we need to know how to connect to your database."
msgstr ""
#: src/Module/Install.php:230
#: src/Module/Install.php:231
msgid "Please contact your hosting provider or site administrator if you have questions about these settings."
msgstr ""
#: src/Module/Install.php:231
#: src/Module/Install.php:232
msgid "The database you specify below should already exist. If it does not, please create it before continuing."
msgstr ""
#: src/Module/Install.php:238
#: src/Module/Install.php:239
msgid "Database Server Name"
msgstr ""
#: src/Module/Install.php:243
#: src/Module/Install.php:244
msgid "Database Login Name"
msgstr ""
#: src/Module/Install.php:249
#: src/Module/Install.php:250
msgid "Database Login Password"
msgstr ""
#: src/Module/Install.php:251
#: src/Module/Install.php:252
msgid "For security reasons the password must not be empty"
msgstr ""
#: src/Module/Install.php:254
#: src/Module/Install.php:255
msgid "Database Name"
msgstr ""
#: src/Module/Install.php:258 src/Module/Install.php:286
#: src/Module/Install.php:259 src/Module/Install.php:287
msgid "Please select a default timezone for your website"
msgstr ""
#: src/Module/Install.php:273
#: src/Module/Install.php:274
msgid "Site settings"
msgstr ""
#: src/Module/Install.php:281
#: src/Module/Install.php:282
msgid "Site administrator email address"
msgstr ""
#: src/Module/Install.php:283
#: src/Module/Install.php:284
msgid "Your account email address must match this in order to use the web admin panel."
msgstr ""
#: src/Module/Install.php:290
#: src/Module/Install.php:291
msgid "System Language:"
msgstr ""
#: src/Module/Install.php:292
#: src/Module/Install.php:293
msgid "Set the default language for your Friendica installation interface and to send emails."
msgstr ""
#: src/Module/Install.php:304
#: src/Module/Install.php:305
msgid "Your Friendica site database has been installed."
msgstr ""
#: src/Module/Install.php:314
#: src/Module/Install.php:315
msgid "Installation finished"
msgstr ""
#: src/Module/Install.php:334
#: src/Module/Install.php:335
msgid "<h1>What next</h1>"
msgstr ""
#: src/Module/Install.php:335
#: src/Module/Install.php:336
msgid "IMPORTANT: You will need to [manually] setup a scheduled task for the worker."
msgstr ""
#: src/Module/Install.php:338
#: src/Module/Install.php:339
#, php-format
msgid "Go to your new Friendica node <a href=\"%s/register\">registration page</a> and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."
msgstr ""
#: src/Module/Invite.php:42
#: src/Module/Invite.php:43
msgid "Total invitation limit exceeded."
msgstr ""
#: src/Module/Invite.php:67
#: src/Module/Invite.php:68
#, php-format
msgid "%s : Not a valid email address."
msgstr ""
#: src/Module/Invite.php:93
#: src/Module/Invite.php:94
msgid "Please join us on Friendica"
msgstr ""
#: src/Module/Invite.php:102
#: src/Module/Invite.php:103
msgid "Invitation limit exceeded. Please contact your site administrator."
msgstr ""
#: src/Module/Invite.php:106
#: src/Module/Invite.php:107
#, php-format
msgid "%s : Message delivery failed."
msgstr ""
#: src/Module/Invite.php:110
#: src/Module/Invite.php:111
#, php-format
msgid "%d message sent."
msgid_plural "%d messages sent."
msgstr[0] ""
msgstr[1] ""
#: src/Module/Invite.php:127
#: src/Module/Invite.php:129
msgid "You have no more invitations available"
msgstr ""
#: src/Module/Invite.php:134
#, php-format
msgid "Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."
msgstr ""
#: src/Module/Invite.php:136
#, php-format
msgid "Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."
msgstr ""
#: src/Module/Invite.php:138
#, php-format
msgid "To accept this invitation, please visit and register at %s or any other public Friendica website."
msgstr ""
#: src/Module/Invite.php:137
#: src/Module/Invite.php:139
#, php-format
msgid "Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."
msgstr ""
#: src/Module/Invite.php:141
#: src/Module/Invite.php:143
msgid "Our apologies. This system is not currently configured to connect with other public sites or invite members."
msgstr ""
#: src/Module/Invite.php:144
#: src/Module/Invite.php:146
msgid "Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."
msgstr ""
#: src/Module/Invite.php:143
#: src/Module/Invite.php:145
#, php-format
msgid "To accept this invitation, please visit and register at %s."
msgstr ""
#: src/Module/Invite.php:151
#: src/Module/Invite.php:153
msgid "Send invitations"
msgstr ""
#: src/Module/Invite.php:152
#: src/Module/Invite.php:154
msgid "Enter email addresses, one per line:"
msgstr ""
#: src/Module/Invite.php:156
#: src/Module/Invite.php:158
msgid "You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."
msgstr ""
#: src/Module/Invite.php:158
#: src/Module/Invite.php:160
msgid "You will need to supply this invitation code: $invite_code"
msgstr ""
#: src/Module/Invite.php:158
#: src/Module/Invite.php:160
msgid "Once you have registered, please connect with me via my profile page at:"
msgstr ""
#: src/Module/Invite.php:160
#: src/Module/Invite.php:162
msgid "For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"
msgstr ""
#: src/Module/Item/Compose.php:83
#: src/Module/Item/Compose.php:80
msgid "Please enter a post body."
msgstr ""
#: src/Module/Item/Compose.php:94
#: src/Module/Item/Compose.php:91
msgid "This feature is only available with the frio theme."
msgstr ""
#: src/Module/Item/Compose.php:118
#: src/Module/Item/Compose.php:115
msgid "Compose new personal note"
msgstr ""
#: src/Module/Item/Compose.php:127
#: src/Module/Item/Compose.php:124
msgid "Compose new post"
msgstr ""
#: src/Module/Item/Compose.php:183
#: src/Module/Item/Compose.php:180
msgid "Visibility"
msgstr ""
#: src/Module/Item/Compose.php:199
#: src/Module/Item/Compose.php:196
msgid "Clear the location"
msgstr ""
#: src/Module/Item/Compose.php:200
#: src/Module/Item/Compose.php:197
msgid "Location services are unavailable on your device"
msgstr ""
#: src/Module/Item/Compose.php:201
#: src/Module/Item/Compose.php:198
msgid "Location services are disabled. Please check the website's permissions on your device"
msgstr ""
#: src/Module/Item/Compose.php:207
#: src/Module/Item/Compose.php:204
msgid "You can make this page always open when you use the New Post button in the <a href=\"/settings/display\">Theme Customization settings</a>."
msgstr ""
@ -7364,17 +7377,17 @@ msgstr ""
msgid "A Decentralized Social Network"
msgstr ""
#: src/Module/Media/Attachment/Browser.php:45
#: src/Module/Media/Photo/Browser.php:47
#: src/Module/Media/Attachment/Browser.php:44
#: src/Module/Media/Photo/Browser.php:45
msgid "You need to be logged in to access this page."
msgstr ""
#: src/Module/Media/Attachment/Browser.php:61
#: src/Module/Media/Attachment/Browser.php:60
msgid "Files"
msgstr ""
#: src/Module/Media/Attachment/Browser.php:66
#: src/Module/Media/Photo/Browser.php:78
#: src/Module/Media/Attachment/Browser.php:65
#: src/Module/Media/Photo/Browser.php:76
#: src/Module/Settings/Profile/Photo/Index.php:113
msgid "Upload"
msgstr ""
@ -7397,190 +7410,190 @@ msgid "File upload failed."
msgstr ""
#: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137
#: src/Module/Profile/Photos.php:212
#: src/Module/Profile/Photos.php:201
#: src/Module/Settings/Profile/Photo/Index.php:53
msgid "Unable to process image."
msgstr ""
#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232
#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:221
#: src/Module/Settings/Profile/Photo/Index.php:80
msgid "Image upload failed."
msgstr ""
#: src/Module/Moderation/BaseUsers.php:61
#: src/Module/Moderation/BaseUsers.php:59
msgid "List of all users"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:66
#: src/Module/Moderation/BaseUsers.php:64
msgid "Active"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:69
#: src/Module/Moderation/BaseUsers.php:67
msgid "List of active accounts"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:77
#: src/Module/Moderation/BaseUsers.php:75
msgid "List of pending registrations"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:85
#: src/Module/Moderation/BaseUsers.php:83
msgid "List of blocked users"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:90
#: src/Module/Moderation/BaseUsers.php:88
msgid "Deleted"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:93
#: src/Module/Moderation/BaseUsers.php:91
msgid "List of pending user deletions"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431
#: src/Module/Moderation/BaseUsers.php:108 src/Module/Settings/Account.php:435
msgid "Normal Account Page"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438
#: src/Module/Moderation/BaseUsers.php:109 src/Module/Settings/Account.php:442
msgid "Soapbox Page"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445
#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:449
msgid "Public Group"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452
#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:456
msgid "Public Group - Restricted"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459
#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:463
msgid "Automatic Friend Page"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:115
#: src/Module/Moderation/BaseUsers.php:113
msgid "Private Group"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:118 src/Module/Moderation/Summary.php:42
#: src/Module/Settings/Account.php:402
#: src/Module/Moderation/BaseUsers.php:116 src/Module/Moderation/Summary.php:39
#: src/Module/Settings/Account.php:406
msgid "Personal Page"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:119 src/Module/Moderation/Summary.php:43
#: src/Module/Settings/Account.php:409
#: src/Module/Moderation/BaseUsers.php:117 src/Module/Moderation/Summary.php:40
#: src/Module/Settings/Account.php:413
msgid "Organisation Page"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:120 src/Module/Moderation/Summary.php:44
#: src/Module/Settings/Account.php:416
#: src/Module/Moderation/BaseUsers.php:118 src/Module/Moderation/Summary.php:41
#: src/Module/Settings/Account.php:420
msgid "News Page"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:121 src/Module/Moderation/Summary.php:45
#: src/Module/Settings/Account.php:423
#: src/Module/Moderation/BaseUsers.php:119 src/Module/Moderation/Summary.php:42
#: src/Module/Settings/Account.php:427
msgid "Community Group"
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:58
#: src/Module/Moderation/Blocklist/Contact.php:56
msgid "You can't block a local contact, please block the user instead"
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:77
#: src/Module/Moderation/Blocklist/Contact.php:75
#, php-format
msgid "%s contact unblocked"
msgid_plural "%s contacts unblocked"
msgstr[0] ""
msgstr[1] ""
#: src/Module/Moderation/Blocklist/Contact.php:99
#: src/Module/Moderation/Blocklist/Contact.php:97
msgid "Remote Contact Blocklist"
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:100
#: src/Module/Moderation/Blocklist/Contact.php:98
msgid "This page allows you to prevent any message from a remote contact to reach your node."
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:101
#: src/Module/Moderation/Blocklist/Contact.php:99
msgid "Block Remote Contact"
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:102
#: src/Module/Moderation/Users/Active.php:124
#: src/Module/Moderation/Users/Blocked.php:124
#: src/Module/Moderation/Users/Index.php:138
#: src/Module/Moderation/Blocklist/Contact.php:100
#: src/Module/Moderation/Users/Active.php:121
#: src/Module/Moderation/Users/Blocked.php:121
#: src/Module/Moderation/Users/Index.php:135
#: src/Module/Moderation/Users/Pending.php:84
msgid "select all"
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:103
#: src/Module/Moderation/Blocklist/Contact.php:101
msgid "select none"
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:106
#: src/Module/Moderation/Blocklist/Contact.php:104
msgid "No remote contact is blocked from this node."
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:108
#: src/Module/Moderation/Blocklist/Contact.php:106
msgid "Blocked Remote Contacts"
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:109
#: src/Module/Moderation/Blocklist/Contact.php:107
msgid "Block New Remote Contact"
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:110
#: src/Module/Moderation/Reports.php:105
#: src/Module/Moderation/Blocklist/Contact.php:108
#: src/Module/Moderation/Reports.php:102
msgid "Photo"
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:110
#: src/Module/Moderation/Blocklist/Contact.php:108
msgid "Reason"
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:116
#: src/Module/Moderation/Blocklist/Contact.php:114
#, php-format
msgid "%s total blocked contact"
msgid_plural "%s total blocked contacts"
msgstr[0] ""
msgstr[1] ""
#: src/Module/Moderation/Blocklist/Contact.php:119
#: src/Module/Moderation/Blocklist/Contact.php:117
msgid "URL of the remote contact to block."
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:120
#: src/Module/Moderation/Blocklist/Contact.php:118
msgid "Also purge contact"
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:120
#: src/Module/Moderation/Blocklist/Contact.php:118
msgid "Removes all content related to this contact from the node. Keeps the contact record. This action cannot be undone."
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:121
#: src/Module/Moderation/Blocklist/Server/Import.php:111
#: src/Module/Moderation/Blocklist/Contact.php:119
#: src/Module/Moderation/Blocklist/Server/Import.php:108
msgid "Block Reason"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Add.php:69
#: src/Module/Moderation/Blocklist/Server/Add.php:66
msgid "Server domain pattern added to the blocklist."
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Add.php:77
#: src/Module/Moderation/Blocklist/Server/Add.php:74
#, php-format
msgid "%s server scheduled to be purged."
msgid_plural "%s servers scheduled to be purged."
msgstr[0] ""
msgstr[1] ""
#: src/Module/Moderation/Blocklist/Server/Add.php:109
#: src/Module/Moderation/Blocklist/Server/Import.php:104
#: src/Module/Moderation/Blocklist/Server/Add.php:106
#: src/Module/Moderation/Blocklist/Server/Import.php:101
msgid "← Return to the list"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Add.php:111
#: src/Module/Moderation/Blocklist/Server/Add.php:108
msgid "Block A New Server Domain Pattern"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Add.php:112
#: src/Module/Moderation/Blocklist/Server/Index.php:88
#: src/Module/Moderation/Blocklist/Server/Add.php:109
#: src/Module/Moderation/Blocklist/Server/Index.php:85
msgid ""
"<p>The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:</p>\n"
"<ul>\n"
@ -7589,192 +7602,192 @@ msgid ""
"</ul>"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Add.php:117
#: src/Module/Moderation/Blocklist/Server/Index.php:96
#: src/Module/Moderation/Blocklist/Server/Add.php:114
#: src/Module/Moderation/Blocklist/Server/Index.php:93
msgid "Check pattern"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Add.php:118
#: src/Module/Moderation/Blocklist/Server/Add.php:115
msgid "Matching known servers"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Add.php:119
#: src/Module/Moderation/Blocklist/Server/Add.php:116
#: src/Module/Settings/Server/Action.php:62
#: src/Module/Settings/Server/Index.php:92
msgid "Server Name"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Add.php:120
#: src/Module/Moderation/Blocklist/Server/Add.php:117
msgid "Server Domain"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Add.php:121
#: src/Module/Moderation/Blocklist/Server/Add.php:118
msgid "Known Contacts"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Add.php:122
#: src/Module/Moderation/Blocklist/Server/Add.php:119
#, php-format
msgid "%d known server"
msgid_plural "%d known servers"
msgstr[0] ""
msgstr[1] ""
#: src/Module/Moderation/Blocklist/Server/Add.php:123
#: src/Module/Moderation/Blocklist/Server/Add.php:120
msgid "Add pattern to the blocklist"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Add.php:125
#: src/Module/Moderation/Blocklist/Server/Index.php:105
#: src/Module/Moderation/Blocklist/Server/Add.php:122
#: src/Module/Moderation/Blocklist/Server/Index.php:102
msgid "Server Domain Pattern"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Add.php:125
#: src/Module/Moderation/Blocklist/Server/Index.php:105
#: src/Module/Moderation/Blocklist/Server/Add.php:122
#: src/Module/Moderation/Blocklist/Server/Index.php:102
msgid "The domain pattern of the new server to add to the blocklist. Do not include the protocol."
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Add.php:126
#: src/Module/Moderation/Blocklist/Server/Add.php:123
msgid "Purge server"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Add.php:126
#: src/Module/Moderation/Blocklist/Server/Add.php:123
msgid "Also purges all the locally stored content authored by the known contacts registered on that server. Keeps the contacts and the server records. This action cannot be undone."
msgid_plural "Also purges all the locally stored content authored by the known contacts registered on these servers. Keeps the contacts and the servers records. This action cannot be undone."
msgstr[0] ""
msgstr[1] ""
#: src/Module/Moderation/Blocklist/Server/Add.php:127
#: src/Module/Moderation/Blocklist/Server/Add.php:124
msgid "Block reason"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Add.php:127
#: src/Module/Moderation/Blocklist/Server/Add.php:124
msgid "The reason why you blocked this server domain pattern. This reason will be shown publicly in the server information page."
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Import.php:63
#: src/Module/Moderation/Blocklist/Server/Import.php:70
#: src/Module/Moderation/Blocklist/Server/Import.php:60
#: src/Module/Moderation/Blocklist/Server/Import.php:67
msgid "Error importing pattern file"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Import.php:77
#: src/Module/Moderation/Blocklist/Server/Import.php:74
msgid "Local blocklist replaced with the provided file."
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Import.php:81
#: src/Module/Moderation/Blocklist/Server/Import.php:78
#, php-format
msgid "%d pattern was added to the local blocklist."
msgid_plural "%d patterns were added to the local blocklist."
msgstr[0] ""
msgstr[1] ""
#: src/Module/Moderation/Blocklist/Server/Import.php:83
#: src/Module/Moderation/Blocklist/Server/Import.php:80
msgid "No pattern was added to the local blocklist."
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Import.php:106
#: src/Module/Moderation/Blocklist/Server/Import.php:103
msgid "Import a Server Domain Pattern Blocklist"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Import.php:107
#: src/Module/Moderation/Blocklist/Server/Import.php:104
msgid "<p>This file can be downloaded from the <code>/friendica</code> path of any Friendica server.</p>"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Import.php:108
#: src/Module/Moderation/Blocklist/Server/Index.php:95
#: src/Module/Moderation/Blocklist/Server/Import.php:105
#: src/Module/Moderation/Blocklist/Server/Index.php:92
msgid "Upload file"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Import.php:109
#: src/Module/Moderation/Blocklist/Server/Import.php:106
msgid "Patterns to import"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Import.php:110
#: src/Module/Moderation/Blocklist/Server/Import.php:107
msgid "Domain Pattern"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Import.php:112
#: src/Module/Moderation/Blocklist/Server/Import.php:109
msgid "Import Mode"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Import.php:113
#: src/Module/Moderation/Blocklist/Server/Import.php:110
msgid "Import Patterns"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Import.php:114
#: src/Module/Moderation/Blocklist/Server/Import.php:111
#, php-format
msgid "%d total pattern"
msgid_plural "%d total patterns"
msgstr[0] ""
msgstr[1] ""
#: src/Module/Moderation/Blocklist/Server/Import.php:116
#: src/Module/Moderation/Blocklist/Server/Index.php:104
#: src/Module/Moderation/Blocklist/Server/Import.php:113
#: src/Module/Moderation/Blocklist/Server/Index.php:101
msgid "Server domain pattern blocklist CSV file"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Import.php:117
#: src/Module/Moderation/Blocklist/Server/Import.php:114
msgid "Append"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Import.php:117
#: src/Module/Moderation/Blocklist/Server/Import.php:114
msgid "Imports patterns from the file that weren't already existing in the current blocklist."
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Import.php:118
#: src/Module/Moderation/Blocklist/Server/Import.php:115
msgid "Replace"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Import.php:118
#: src/Module/Moderation/Blocklist/Server/Import.php:115
msgid "Replaces the current blocklist by the imported patterns."
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Index.php:75
#: src/Module/Moderation/Blocklist/Server/Index.php:99
#: src/Module/Moderation/Blocklist/Server/Index.php:72
#: src/Module/Moderation/Blocklist/Server/Index.php:96
#: src/Module/Settings/Channels.php:217
msgid "Blocked server domain pattern"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Index.php:77
#: src/Module/Moderation/Blocklist/Server/Index.php:74
msgid "Delete server domain pattern"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Index.php:77
#: src/Module/Moderation/Blocklist/Server/Index.php:74
msgid "Check to delete this entry from the blocklist"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Index.php:85
#: src/Module/Moderation/Blocklist/Server/Index.php:82
msgid "Server Domain Pattern Blocklist"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Index.php:86
#: src/Module/Moderation/Blocklist/Server/Index.php:83
msgid "This page can be used to define a blocklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Index.php:87
#: src/Module/Moderation/Blocklist/Server/Index.php:84
msgid "The list of blocked server domain patterns will be made publically available on the <a href=\"/friendica\">/friendica</a> page so that your users and people investigating communication problems can find the reason easily."
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Index.php:93
#: src/Module/Moderation/Blocklist/Server/Index.php:90
msgid "Import server domain pattern blocklist"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Index.php:94
#: src/Module/Moderation/Blocklist/Server/Index.php:91
msgid "Add new entry to the blocklist"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Index.php:97
#: src/Module/Moderation/Blocklist/Server/Index.php:94
msgid "Save changes to the blocklist"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Index.php:98
#: src/Module/Moderation/Blocklist/Server/Index.php:95
msgid "Current Entries in the Blocklist"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Index.php:101
#: src/Module/Moderation/Blocklist/Server/Index.php:98
msgid "Delete entry from the blocklist"
msgstr ""
#: src/Module/Moderation/Blocklist/Server/Index.php:102
#: src/Module/Moderation/Blocklist/Server/Index.php:99
msgid "Delete entry from the blocklist?"
msgstr ""
@ -7802,54 +7815,54 @@ msgstr ""
msgid "The GUID of the item you want to delete."
msgstr ""
#: src/Module/Moderation/Item/Source.php:72
#: src/Module/Moderation/Item/Source.php:69
msgid "Item Id"
msgstr ""
#: src/Module/Moderation/Item/Source.php:73
#: src/Module/Moderation/Item/Source.php:70
msgid "Item URI"
msgstr ""
#: src/Module/Moderation/Item/Source.php:75
#: src/Module/Moderation/Item/Source.php:72
msgid "Terms"
msgstr ""
#: src/Module/Moderation/Item/Source.php:76
#: src/Module/Moderation/Item/Source.php:73
msgid "Tag"
msgstr ""
#: src/Module/Moderation/Item/Source.php:77
#: src/Module/Moderation/Users/Active.php:115
#: src/Module/Moderation/Users/Blocked.php:115
#: src/Module/Moderation/Users/Index.php:129
#: src/Module/Moderation/Item/Source.php:74
#: src/Module/Moderation/Users/Active.php:112
#: src/Module/Moderation/Users/Blocked.php:112
#: src/Module/Moderation/Users/Index.php:126
msgid "Type"
msgstr ""
#: src/Module/Moderation/Item/Source.php:78
#: src/Module/Moderation/Item/Source.php:75
msgid "Term"
msgstr ""
#: src/Module/Moderation/Item/Source.php:79
#: src/Module/Moderation/Item/Source.php:76
msgid "URL"
msgstr ""
#: src/Module/Moderation/Item/Source.php:81
#: src/Module/Moderation/Item/Source.php:78
msgid "Implicit Mention"
msgstr ""
#: src/Module/Moderation/Item/Source.php:83
#: src/Module/Moderation/Item/Source.php:80
msgid "Item not found"
msgstr ""
#: src/Module/Moderation/Item/Source.php:84
#: src/Module/Moderation/Item/Source.php:81
msgid "No source recorded"
msgstr ""
#: src/Module/Moderation/Item/Source.php:85
#: src/Module/Moderation/Item/Source.php:82
msgid "Please make sure the <code>debug.store_source</code> config key is set in <code>config/local.config.php</code> for future items to have sources."
msgstr ""
#: src/Module/Moderation/Item/Source.php:87
#: src/Module/Moderation/Item/Source.php:84
msgid "Item Guid"
msgstr ""
@ -8026,42 +8039,42 @@ msgstr ""
msgid "3. Pick posts"
msgstr ""
#: src/Module/Moderation/Reports.php:100
#: src/Module/Moderation/Reports.php:97
msgid "List of reports"
msgstr ""
#: src/Module/Moderation/Reports.php:101
#: src/Module/Moderation/Reports.php:98
msgid "This page display reports created by our or remote users."
msgstr ""
#: src/Module/Moderation/Reports.php:102
#: src/Module/Moderation/Reports.php:99
msgid "No report exists at this node."
msgstr ""
#: src/Module/Moderation/Reports.php:105
#: src/Module/Moderation/Reports.php:102
msgid "Category"
msgstr ""
#: src/Module/Moderation/Reports.php:109
#: src/Module/Moderation/Reports.php:106
#, php-format
msgid "%s total report"
msgid_plural "%s total reports"
msgstr[0] ""
msgstr[1] ""
#: src/Module/Moderation/Reports.php:112
#: src/Module/Moderation/Reports.php:109
msgid "URL of the reported contact."
msgstr ""
#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380
#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:384
msgid "Channel Relay"
msgstr ""
#: src/Module/Moderation/Summary.php:66
#: src/Module/Moderation/Summary.php:63
msgid "Registered users"
msgstr ""
#: src/Module/Moderation/Summary.php:68
#: src/Module/Moderation/Summary.php:65
msgid "Pending registrations"
msgstr ""
@ -8074,11 +8087,11 @@ msgstr[0] ""
msgstr[1] ""
#: src/Module/Moderation/Users/Active.php:37
#: src/Module/Moderation/Users/Active.php:74
#: src/Module/Moderation/Users/Active.php:71
#: src/Module/Moderation/Users/Blocked.php:37
#: src/Module/Moderation/Users/Blocked.php:74
#: src/Module/Moderation/Users/Blocked.php:71
#: src/Module/Moderation/Users/Index.php:44
#: src/Module/Moderation/Users/Index.php:81
#: src/Module/Moderation/Users/Index.php:78
msgid "You can't remove yourself"
msgstr ""
@ -8091,79 +8104,79 @@ msgid_plural "%s users deleted"
msgstr[0] ""
msgstr[1] ""
#: src/Module/Moderation/Users/Active.php:72
#: src/Module/Moderation/Users/Blocked.php:72
#: src/Module/Moderation/Users/Index.php:79
#: src/Module/Moderation/Users/Active.php:69
#: src/Module/Moderation/Users/Blocked.php:69
#: src/Module/Moderation/Users/Index.php:76
#, php-format
msgid "User \"%s\" deleted"
msgstr ""
#: src/Module/Moderation/Users/Active.php:82
#: src/Module/Moderation/Users/Index.php:89
#: src/Module/Moderation/Users/Active.php:79
#: src/Module/Moderation/Users/Index.php:86
#, php-format
msgid "User \"%s\" blocked"
msgstr ""
#: src/Module/Moderation/Users/Active.php:115
#: src/Module/Moderation/Users/Blocked.php:115
#: src/Module/Moderation/Users/Active.php:112
#: src/Module/Moderation/Users/Blocked.php:112
#: src/Module/Moderation/Users/Deleted.php:69
#: src/Module/Moderation/Users/Index.php:129
#: src/Module/Moderation/Users/Index.php:149
#: src/Module/Moderation/Users/Index.php:126
#: src/Module/Moderation/Users/Index.php:146
msgid "Register date"
msgstr ""
#: src/Module/Moderation/Users/Active.php:115
#: src/Module/Moderation/Users/Blocked.php:115
#: src/Module/Moderation/Users/Active.php:112
#: src/Module/Moderation/Users/Blocked.php:112
#: src/Module/Moderation/Users/Deleted.php:69
#: src/Module/Moderation/Users/Index.php:129
#: src/Module/Moderation/Users/Index.php:149
#: src/Module/Moderation/Users/Index.php:126
#: src/Module/Moderation/Users/Index.php:146
msgid "Last login"
msgstr ""
#: src/Module/Moderation/Users/Active.php:115
#: src/Module/Moderation/Users/Blocked.php:115
#: src/Module/Moderation/Users/Active.php:112
#: src/Module/Moderation/Users/Blocked.php:112
#: src/Module/Moderation/Users/Deleted.php:69
#: src/Module/Moderation/Users/Index.php:129
#: src/Module/Moderation/Users/Index.php:149
#: src/Module/Moderation/Users/Index.php:126
#: src/Module/Moderation/Users/Index.php:146
msgid "Last public item"
msgstr ""
#: src/Module/Moderation/Users/Active.php:123
#: src/Module/Moderation/Users/Active.php:120
msgid "Active Accounts"
msgstr ""
#: src/Module/Moderation/Users/Active.php:127
#: src/Module/Moderation/Users/Blocked.php:126
#: src/Module/Moderation/Users/Index.php:142
#: src/Module/Moderation/Users/Active.php:124
#: src/Module/Moderation/Users/Blocked.php:123
#: src/Module/Moderation/Users/Index.php:139
msgid "User blocked"
msgstr ""
#: src/Module/Moderation/Users/Active.php:128
#: src/Module/Moderation/Users/Blocked.php:128
#: src/Module/Moderation/Users/Index.php:144
#: src/Module/Moderation/Users/Active.php:125
#: src/Module/Moderation/Users/Blocked.php:125
#: src/Module/Moderation/Users/Index.php:141
msgid "Site admin"
msgstr ""
#: src/Module/Moderation/Users/Active.php:129
#: src/Module/Moderation/Users/Blocked.php:129
#: src/Module/Moderation/Users/Index.php:145
#: src/Module/Moderation/Users/Active.php:126
#: src/Module/Moderation/Users/Blocked.php:126
#: src/Module/Moderation/Users/Index.php:142
msgid "Account expired"
msgstr ""
#: src/Module/Moderation/Users/Active.php:130
#: src/Module/Moderation/Users/Index.php:148
#: src/Module/Moderation/Users/Active.php:127
#: src/Module/Moderation/Users/Index.php:145
msgid "Create a new user"
msgstr ""
#: src/Module/Moderation/Users/Active.php:136
#: src/Module/Moderation/Users/Blocked.php:135
#: src/Module/Moderation/Users/Index.php:154
#: src/Module/Moderation/Users/Active.php:133
#: src/Module/Moderation/Users/Blocked.php:132
#: src/Module/Moderation/Users/Index.php:151
msgid "Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
#: src/Module/Moderation/Users/Active.php:137
#: src/Module/Moderation/Users/Blocked.php:136
#: src/Module/Moderation/Users/Index.php:155
#: src/Module/Moderation/Users/Active.php:134
#: src/Module/Moderation/Users/Blocked.php:133
#: src/Module/Moderation/Users/Index.php:152
msgid "The user {0} will be deleted!\\n\\nEverything this user has posted on this site will be permanently deleted!\\n\\nAre you sure?"
msgstr ""
@ -8175,13 +8188,13 @@ msgid_plural "%s users unblocked"
msgstr[0] ""
msgstr[1] ""
#: src/Module/Moderation/Users/Blocked.php:81
#: src/Module/Moderation/Users/Index.php:95
#: src/Module/Moderation/Users/Blocked.php:78
#: src/Module/Moderation/Users/Index.php:92
#, php-format
msgid "User \"%s\" unblocked"
msgstr ""
#: src/Module/Moderation/Users/Blocked.php:123
#: src/Module/Moderation/Users/Blocked.php:120
msgid "Blocked Users"
msgstr ""
@ -8214,11 +8227,11 @@ msgid "Users awaiting permanent deletion"
msgstr ""
#: src/Module/Moderation/Users/Deleted.php:69
#: src/Module/Moderation/Users/Index.php:149
#: src/Module/Moderation/Users/Index.php:146
msgid "Permanent deletion"
msgstr ""
#: src/Module/Moderation/Users/Index.php:139
#: src/Module/Moderation/Users/Index.php:136
msgid "User waiting for permanent deletion"
msgstr ""
@ -8341,11 +8354,11 @@ msgstr ""
msgid "Show unread"
msgstr ""
#: src/Module/Notifications/Ping.php:208
#: src/Module/Notifications/Ping.php:206
msgid "{0} requested registration"
msgstr ""
#: src/Module/Notifications/Ping.php:217
#: src/Module/Notifications/Ping.php:215
#, php-format
msgid "{0} and %d others requested registration"
msgstr ""
@ -8375,7 +8388,7 @@ msgstr ""
msgid "Invalid data or unknown client"
msgstr ""
#: src/Module/OAuth/Token.php:73
#: src/Module/OAuth/Token.php:91
msgid "Unsupported or missing grant type"
msgstr ""
@ -8427,7 +8440,7 @@ msgstr ""
msgid "Keep this window open until done."
msgstr ""
#: src/Module/OpenSearch.php:55
#: src/Module/OpenSearch.php:54
#, php-format
msgid "Search in Friendica %s"
msgstr ""
@ -8441,53 +8454,53 @@ msgstr ""
msgid "The Photo with id %s is not available."
msgstr ""
#: src/Module/Photo.php:178
#: src/Module/Photo.php:174
#, php-format
msgid "Invalid external resource with url %s."
msgstr ""
#: src/Module/Photo.php:180
#: src/Module/Photo.php:176
#, php-format
msgid "Invalid photo with id %s."
msgstr ""
#: src/Module/Post/Edit.php:73 src/Module/Post/Edit.php:87
#: src/Module/Post/Edit.php:68 src/Module/Post/Edit.php:82
msgid "Post not found."
msgstr ""
#: src/Module/Post/Edit.php:93
#: src/Module/Post/Edit.php:88
msgid "Edit post"
msgstr ""
#: src/Module/Post/Edit.php:127
#: src/Module/Post/Edit.php:122
msgid "web link"
msgstr ""
#: src/Module/Post/Edit.php:128
#: src/Module/Post/Edit.php:123
msgid "Insert video link"
msgstr ""
#: src/Module/Post/Edit.php:129
#: src/Module/Post/Edit.php:124
msgid "video link"
msgstr ""
#: src/Module/Post/Edit.php:130
#: src/Module/Post/Edit.php:125
msgid "Insert audio link"
msgstr ""
#: src/Module/Post/Edit.php:131
#: src/Module/Post/Edit.php:126
msgid "audio link"
msgstr ""
#: src/Module/Post/Tag/Remove.php:93
#: src/Module/Post/Tag/Remove.php:92
msgid "Remove Item Tag"
msgstr ""
#: src/Module/Post/Tag/Remove.php:94
#: src/Module/Post/Tag/Remove.php:93
msgid "Select a tag to remove: "
msgstr ""
#: src/Module/Post/Tag/Remove.php:95
#: src/Module/Post/Tag/Remove.php:94
#: src/Module/Settings/TwoFactor/Trusted.php:133
msgid "Remove"
msgstr ""
@ -8544,90 +8557,90 @@ msgstr ""
msgid "%d more"
msgstr ""
#: src/Module/Profile/Contacts.php:147
#: src/Module/Profile/Contacts.php:145
msgid "No contacts."
msgstr ""
#: src/Module/Profile/Conversations.php:96 src/Module/Profile/Profile.php:342
#: src/Module/Profile/Conversations.php:92 src/Module/Profile/Profile.php:339
#: src/Protocol/Feed.php:1097
#, php-format
msgid "%s's posts"
msgstr ""
#: src/Module/Profile/Conversations.php:97 src/Module/Profile/Profile.php:343
#: src/Module/Profile/Conversations.php:93 src/Module/Profile/Profile.php:340
#: src/Protocol/Feed.php:1100
#, php-format
msgid "%s's comments"
msgstr ""
#: src/Module/Profile/Conversations.php:98 src/Module/Profile/Profile.php:344
#: src/Module/Profile/Conversations.php:94 src/Module/Profile/Profile.php:341
#: src/Protocol/Feed.php:1093
#, php-format
msgid "%s's timeline"
msgstr ""
#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160
#: src/Module/Profile/Photos.php:189
#: src/Module/Profile/Photos.php:150 src/Module/Profile/Photos.php:153
#: src/Module/Profile/Photos.php:178
#: src/Module/Settings/Profile/Photo/Index.php:44
#, php-format
msgid "Image exceeds size limit of %s"
msgstr ""
#: src/Module/Profile/Photos.php:163
#: src/Module/Profile/Photos.php:156
msgid "Image upload didn't complete, please try again"
msgstr ""
#: src/Module/Profile/Photos.php:166
#: src/Module/Profile/Photos.php:159
msgid "Image file is missing"
msgstr ""
#: src/Module/Profile/Photos.php:171
#: src/Module/Profile/Photos.php:164
msgid "Server can't accept new file upload at this time, please contact your administrator"
msgstr ""
#: src/Module/Profile/Photos.php:197
#: src/Module/Profile/Photos.php:186
msgid "Image file is empty."
msgstr ""
#: src/Module/Profile/Photos.php:349
#: src/Module/Profile/Photos.php:338
msgid "View Album"
msgstr ""
#: src/Module/Profile/Profile.php:103 src/Module/Profile/Restricted.php:38
#: src/Module/Profile/Profile.php:100 src/Module/Profile/Restricted.php:36
msgid "Profile not found."
msgstr ""
#: src/Module/Profile/Profile.php:149
#: src/Module/Profile/Profile.php:146
#, php-format
msgid "You're currently viewing your profile as <b>%s</b> <a href=\"%s\" class=\"btn btn-sm pull-right\">Cancel</a>"
msgstr ""
#: src/Module/Profile/Profile.php:158
#: src/Module/Profile/Profile.php:155
msgid "Full Name:"
msgstr ""
#: src/Module/Profile/Profile.php:163
#: src/Module/Profile/Profile.php:160
msgid "Member since:"
msgstr ""
#: src/Module/Profile/Profile.php:169
#: src/Module/Profile/Profile.php:166
msgid "j F, Y"
msgstr ""
#: src/Module/Profile/Profile.php:170
#: src/Module/Profile/Profile.php:167
msgid "j F"
msgstr ""
#: src/Module/Profile/Profile.php:178 src/Util/Temporal.php:154
#: src/Module/Profile/Profile.php:175 src/Util/Temporal.php:154
msgid "Birthday:"
msgstr ""
#: src/Module/Profile/Profile.php:181 src/Module/Settings/Profile/Index.php:282
#: src/Module/Profile/Profile.php:178 src/Module/Settings/Profile/Index.php:282
#: src/Util/Temporal.php:156
msgid "Age: "
msgstr ""
#: src/Module/Profile/Profile.php:181 src/Module/Settings/Profile/Index.php:282
#: src/Module/Profile/Profile.php:178 src/Module/Settings/Profile/Index.php:282
#: src/Util/Temporal.php:156
#, php-format
msgid "%d year old"
@ -8635,19 +8648,19 @@ msgid_plural "%d years old"
msgstr[0] ""
msgstr[1] ""
#: src/Module/Profile/Profile.php:186 src/Module/Settings/Profile/Index.php:275
#: src/Module/Profile/Profile.php:183 src/Module/Settings/Profile/Index.php:275
msgid "Description:"
msgstr ""
#: src/Module/Profile/Profile.php:252
#: src/Module/Profile/Profile.php:249
msgid "Groups:"
msgstr ""
#: src/Module/Profile/Profile.php:264
#: src/Module/Profile/Profile.php:261
msgid "View profile as:"
msgstr ""
#: src/Module/Profile/Profile.php:281
#: src/Module/Profile/Profile.php:278
msgid "View as"
msgstr ""
@ -8685,176 +8698,176 @@ msgstr ""
msgid "Your Webfinger address or profile URL:"
msgstr ""
#: src/Module/Profile/Restricted.php:47
#: src/Module/Profile/Restricted.php:45
msgid "Restricted profile"
msgstr ""
#: src/Module/Profile/Restricted.php:48
#: src/Module/Profile/Restricted.php:46
msgid "This profile has been restricted which prevents access to their public content from anonymous visitors."
msgstr ""
#: src/Module/Profile/Schedule.php:67
#: src/Module/Profile/Schedule.php:69
msgid "Scheduled"
msgstr ""
#: src/Module/Profile/Schedule.php:68
#: src/Module/Profile/Schedule.php:70
msgid "Content"
msgstr ""
#: src/Module/Profile/Schedule.php:69
#: src/Module/Profile/Schedule.php:71
msgid "Remove post"
msgstr ""
#: src/Module/Register.php:78
#: src/Module/Register.php:77
msgid "Only parent users can create additional accounts."
msgstr ""
#: src/Module/Register.php:93 src/Module/User/Import.php:98
#: src/Module/Register.php:92 src/Module/User/Import.php:98
msgid "This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."
msgstr ""
#: src/Module/Register.php:110
#: src/Module/Register.php:109
msgid "You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."
msgstr ""
#: src/Module/Register.php:111
#: src/Module/Register.php:110
msgid "If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."
msgstr ""
#: src/Module/Register.php:112
#: src/Module/Register.php:111
msgid "Your OpenID (optional): "
msgstr ""
#: src/Module/Register.php:121
#: src/Module/Register.php:120
msgid "Include your profile in member directory?"
msgstr ""
#: src/Module/Register.php:142
#: src/Module/Register.php:141
msgid "Note for the admin"
msgstr ""
#: src/Module/Register.php:142
#: src/Module/Register.php:141
msgid "Leave a message for the admin, why you want to join this node"
msgstr ""
#: src/Module/Register.php:143
#: src/Module/Register.php:142
msgid "Membership on this site is by invitation only."
msgstr ""
#: src/Module/Register.php:144
#: src/Module/Register.php:143
msgid "Your invitation code: "
msgstr ""
#: src/Module/Register.php:152
#: src/Module/Register.php:151
msgid "Your Display Name (as you would like it to be displayed on this system"
msgstr ""
#: src/Module/Register.php:153
#: src/Module/Register.php:152
msgid "Your Email Address: (Initial information will be send there, so this has to be an existing address.)"
msgstr ""
#: src/Module/Register.php:154
#: src/Module/Register.php:153
msgid "Please repeat your e-mail address:"
msgstr ""
#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86
#: src/Module/Settings/Account.php:513
#: src/Module/Register.php:155 src/Module/Security/PasswordTooLong.php:86
#: src/Module/Settings/Account.php:517
msgid "New Password:"
msgstr ""
#: src/Module/Register.php:156
#: src/Module/Register.php:155
msgid "Leave empty for an auto generated password."
msgstr ""
#: src/Module/Register.php:157 src/Module/Security/PasswordTooLong.php:87
#: src/Module/Settings/Account.php:514
#: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:87
#: src/Module/Settings/Account.php:518
msgid "Confirm:"
msgstr ""
#: src/Module/Register.php:158
#: src/Module/Register.php:157
#, php-format
msgid "Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"<strong>nickname@%s</strong>\"."
msgstr ""
#: src/Module/Register.php:159
#: src/Module/Register.php:158
msgid "Choose a nickname: "
msgstr ""
#: src/Module/Register.php:167 src/Module/User/Import.php:104
#: src/Module/Register.php:166 src/Module/User/Import.php:104
msgid "Import"
msgstr ""
#: src/Module/Register.php:168
#: src/Module/Register.php:167
msgid "Import your profile to this friendica instance"
msgstr ""
#: src/Module/Register.php:175
#: src/Module/Register.php:174
msgid "Note: This node explicitly contains adult content"
msgstr ""
#: src/Module/Register.php:177 src/Module/Settings/Delegation.php:167
#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid "Parent Password:"
msgstr ""
#: src/Module/Register.php:177 src/Module/Settings/Delegation.php:167
#: src/Module/Register.php:176 src/Module/Settings/Delegation.php:167
msgid "Please enter the password of the parent account to legitimize your request."
msgstr ""
#: src/Module/Register.php:206
#: src/Module/Register.php:205
msgid "Password doesn't match."
msgstr ""
#: src/Module/Register.php:212
#: src/Module/Register.php:211
msgid "Please enter your password."
msgstr ""
#: src/Module/Register.php:254
#: src/Module/Register.php:253
msgid "You have entered too much information."
msgstr ""
#: src/Module/Register.php:277
#: src/Module/Register.php:276
msgid "Please enter the identical mail address in the second field."
msgstr ""
#: src/Module/Register.php:285
#: src/Module/Register.php:284
msgid "Nickname cannot start with a digit."
msgstr ""
#: src/Module/Register.php:287
#: src/Module/Register.php:286
msgid "Nickname can only contain US-ASCII characters."
msgstr ""
#: src/Module/Register.php:316
#: src/Module/Register.php:315
msgid "The additional account was created."
msgstr ""
#: src/Module/Register.php:341
#: src/Module/Register.php:340
msgid "Registration successful. Please check your email for further instructions."
msgstr ""
#: src/Module/Register.php:348
#: src/Module/Register.php:347
#, php-format
msgid "Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login."
msgstr ""
#: src/Module/Register.php:354
#: src/Module/Register.php:353
msgid "Registration successful."
msgstr ""
#: src/Module/Register.php:363 src/Module/Register.php:370
#: src/Module/Register.php:380
#: src/Module/Register.php:362 src/Module/Register.php:369
#: src/Module/Register.php:379
msgid "Your registration can not be processed."
msgstr ""
#: src/Module/Register.php:369
#: src/Module/Register.php:368
msgid "You have to leave a request note for the admin."
msgstr ""
#: src/Module/Register.php:379
#: src/Module/Register.php:378
msgid "An internal error occured."
msgstr ""
#: src/Module/Register.php:401
#: src/Module/Register.php:400
msgid "Your registration is pending approval by the site owner."
msgstr ""
@ -8887,47 +8900,47 @@ msgstr ""
msgid "Search term was not removed."
msgstr ""
#: src/Module/Security/Login.php:112
#: src/Module/Security/Login.php:113
msgid "Create a New Account"
msgstr ""
#: src/Module/Security/Login.php:131
#: src/Module/Security/Login.php:132
msgid "Your OpenID: "
msgstr ""
#: src/Module/Security/Login.php:134
#: src/Module/Security/Login.php:135
msgid "Please enter your username and password to add the OpenID to your existing account."
msgstr ""
#: src/Module/Security/Login.php:136
#: src/Module/Security/Login.php:137
msgid "Or login using OpenID: "
msgstr ""
#: src/Module/Security/Login.php:150
#: src/Module/Security/Login.php:151
msgid "Password: "
msgstr ""
#: src/Module/Security/Login.php:151
#: src/Module/Security/Login.php:152
msgid "Remember me"
msgstr ""
#: src/Module/Security/Login.php:160
#: src/Module/Security/Login.php:161
msgid "Forgot your password?"
msgstr ""
#: src/Module/Security/Login.php:163
#: src/Module/Security/Login.php:164
msgid "Website Terms of Service"
msgstr ""
#: src/Module/Security/Login.php:164
#: src/Module/Security/Login.php:165
msgid "terms of service"
msgstr ""
#: src/Module/Security/Login.php:166
#: src/Module/Security/Login.php:167
msgid "Website Privacy Policy"
msgstr ""
#: src/Module/Security/Login.php:167
#: src/Module/Security/Login.php:168
msgid "privacy policy"
msgstr ""
@ -8943,16 +8956,16 @@ msgstr ""
msgid "OpenID protocol error. No ID returned"
msgstr ""
#: src/Module/Security/OpenID.php:78
#: src/Module/Security/OpenID.php:76
msgid "Account not found. Please login to your existing account to add the OpenID to it."
msgstr ""
#: src/Module/Security/OpenID.php:80
#: src/Module/Security/OpenID.php:78
msgid "Account not found. Please register a new account or login to your existing account to add the OpenID to it."
msgstr ""
#: src/Module/Security/PasswordTooLong.php:43
#: src/Module/Settings/Account.php:49
#: src/Module/Settings/Account.php:51
msgid "Passwords do not match."
msgstr ""
@ -8961,7 +8974,7 @@ msgid "Password does not need changing."
msgstr ""
#: src/Module/Security/PasswordTooLong.php:63
#: src/Module/Settings/Account.php:63
#: src/Module/Settings/Account.php:65
msgid "Password unchanged."
msgstr ""
@ -8978,54 +8991,54 @@ msgid "Update Password"
msgstr ""
#: src/Module/Security/PasswordTooLong.php:85
#: src/Module/Settings/Account.php:515
#: src/Module/Settings/Account.php:519
msgid "Current Password:"
msgstr ""
#: src/Module/Security/PasswordTooLong.php:85
#: src/Module/Settings/Account.php:515
#: src/Module/Settings/Account.php:519
msgid "Your current password to confirm the changes"
msgstr ""
#: src/Module/Security/PasswordTooLong.php:86
#: src/Module/Settings/Account.php:499
#: src/Module/Settings/Account.php:503
msgid "Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces and accentuated letters."
msgstr ""
#: src/Module/Security/PasswordTooLong.php:86
#: src/Module/Settings/Account.php:500
#: src/Module/Settings/Account.php:504
msgid "Password length is limited to 72 characters."
msgstr ""
#: src/Module/Security/TwoFactor/Recovery.php:62
#: src/Module/Security/TwoFactor/Recovery.php:60
#, php-format
msgid "Remaining recovery codes: %d"
msgstr ""
#: src/Module/Security/TwoFactor/Recovery.php:68
#: src/Module/Security/TwoFactor/Recovery.php:66
#: src/Module/Security/TwoFactor/Verify.php:63
#: src/Module/Settings/TwoFactor/Verify.php:84
msgid "Invalid code, please retry."
msgstr ""
#: src/Module/Security/TwoFactor/Recovery.php:87
#: src/Module/Security/TwoFactor/Recovery.php:85
msgid "Two-factor recovery"
msgstr ""
#: src/Module/Security/TwoFactor/Recovery.php:88
#: src/Module/Security/TwoFactor/Recovery.php:86
msgid "<p>You can enter one of your one-time recovery codes in case you lost access to your mobile device.</p>"
msgstr ""
#: src/Module/Security/TwoFactor/Recovery.php:89
#: src/Module/Security/TwoFactor/Recovery.php:87
#, php-format
msgid "Dont have your phone? <a href=\"%s\">Enter a two-factor recovery code</a>"
msgstr ""
#: src/Module/Security/TwoFactor/Recovery.php:90
#: src/Module/Security/TwoFactor/Recovery.php:88
msgid "Please enter a recovery code"
msgstr ""
#: src/Module/Security/TwoFactor/Recovery.php:91
#: src/Module/Security/TwoFactor/Recovery.php:89
msgid "Submit recovery code and complete login"
msgstr ""
@ -9045,27 +9058,27 @@ msgstr ""
msgid "Trust and sign out"
msgstr ""
#: src/Module/Security/TwoFactor/Trust.php:84
#: src/Module/Security/TwoFactor/Trust.php:82
msgid "Couldn't save browser to Cookie."
msgstr ""
#: src/Module/Security/TwoFactor/Trust.php:129
#: src/Module/Security/TwoFactor/Trust.php:127
msgid "Trust this browser?"
msgstr ""
#: src/Module/Security/TwoFactor/Trust.php:130
#: src/Module/Security/TwoFactor/Trust.php:128
msgid "<p>If you choose to trust this browser, you will not be asked for a verification code the next time you sign in.</p>"
msgstr ""
#: src/Module/Security/TwoFactor/Trust.php:131
#: src/Module/Security/TwoFactor/Trust.php:129
msgid "Not now"
msgstr ""
#: src/Module/Security/TwoFactor/Trust.php:132
#: src/Module/Security/TwoFactor/Trust.php:130
msgid "Don't trust"
msgstr ""
#: src/Module/Security/TwoFactor/Trust.php:133
#: src/Module/Security/TwoFactor/Trust.php:131
msgid "Trust"
msgstr ""
@ -9087,425 +9100,425 @@ msgstr ""
msgid "Verify code and complete login"
msgstr ""
#: src/Module/Settings/Account.php:78
#: src/Module/Settings/Account.php:80
msgid "Please use a shorter name."
msgstr ""
#: src/Module/Settings/Account.php:81
#: src/Module/Settings/Account.php:83
msgid "Name too short."
msgstr ""
#: src/Module/Settings/Account.php:90
#: src/Module/Settings/Account.php:92
msgid "Wrong Password."
msgstr ""
#: src/Module/Settings/Account.php:95
#: src/Module/Settings/Account.php:97
msgid "Invalid email."
msgstr ""
#: src/Module/Settings/Account.php:99
#: src/Module/Settings/Account.php:101
msgid "Cannot change to that email."
msgstr ""
#: src/Module/Settings/Account.php:128 src/Module/Settings/Account.php:177
#: src/Module/Settings/Account.php:198 src/Module/Settings/Account.php:282
#: src/Module/Settings/Account.php:311
#: src/Module/Settings/Account.php:130 src/Module/Settings/Account.php:179
#: src/Module/Settings/Account.php:200 src/Module/Settings/Account.php:284
#: src/Module/Settings/Account.php:313
msgid "Settings were not updated."
msgstr ""
#: src/Module/Settings/Account.php:325
#: src/Module/Settings/Account.php:327
msgid "Relocate message has been send to your contacts"
msgstr ""
#: src/Module/Settings/Account.php:342
#: src/Module/Settings/Account.php:344
msgid "Unable to find your profile. Please contact your admin."
msgstr ""
#: src/Module/Settings/Account.php:382
#: src/Module/Settings/Account.php:386
msgid "Account for a service that automatically shares content based on user defined channels."
msgstr ""
#: src/Module/Settings/Account.php:392
#: src/Module/Settings/Account.php:396
msgid "Personal Page Subtypes"
msgstr ""
#: src/Module/Settings/Account.php:393
#: src/Module/Settings/Account.php:397
msgid "Community Group Subtypes"
msgstr ""
#: src/Module/Settings/Account.php:404
#: src/Module/Settings/Account.php:408
msgid "Account for a personal profile."
msgstr ""
#: src/Module/Settings/Account.php:411
#: src/Module/Settings/Account.php:415
msgid "Account for an organisation that automatically approves contact requests as \"Followers\"."
msgstr ""
#: src/Module/Settings/Account.php:418
#: src/Module/Settings/Account.php:422
msgid "Account for a news reflector that automatically approves contact requests as \"Followers\"."
msgstr ""
#: src/Module/Settings/Account.php:425
#: src/Module/Settings/Account.php:429
msgid "Account for community discussions."
msgstr ""
#: src/Module/Settings/Account.php:433
#: src/Module/Settings/Account.php:437
msgid "Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."
msgstr ""
#: src/Module/Settings/Account.php:440
#: src/Module/Settings/Account.php:444
msgid "Account for a public profile that automatically approves contact requests as \"Followers\"."
msgstr ""
#: src/Module/Settings/Account.php:447
#: src/Module/Settings/Account.php:451
msgid "Automatically approves all contact requests."
msgstr ""
#: src/Module/Settings/Account.php:454
#: src/Module/Settings/Account.php:458
msgid "Contact requests have to be manually approved."
msgstr ""
#: src/Module/Settings/Account.php:461
#: src/Module/Settings/Account.php:465
msgid "Account for a popular profile that automatically approves contact requests as \"Friends\"."
msgstr ""
#: src/Module/Settings/Account.php:466
#: src/Module/Settings/Account.php:470
msgid "Private Group [Experimental]"
msgstr ""
#: src/Module/Settings/Account.php:468
#: src/Module/Settings/Account.php:472
msgid "Requires manual approval of contact requests."
msgstr ""
#: src/Module/Settings/Account.php:477
#: src/Module/Settings/Account.php:481
msgid "OpenID:"
msgstr ""
#: src/Module/Settings/Account.php:477
#: src/Module/Settings/Account.php:481
msgid "(Optional) Allow this OpenID to login to this account."
msgstr ""
#: src/Module/Settings/Account.php:485
#: src/Module/Settings/Account.php:489
msgid "Publish your profile in your local site directory?"
msgstr ""
#: src/Module/Settings/Account.php:485
#: src/Module/Settings/Account.php:489
#, php-format
msgid "Your profile will be published in this node's <a href=\"%s\">local directory</a>. Your profile details may be publicly visible depending on the system settings."
msgstr ""
#: src/Module/Settings/Account.php:491
#: src/Module/Settings/Account.php:495
#, php-format
msgid "Your profile will also be published in the global friendica directories (e.g. <a href=\"%s\">%s</a>)."
msgstr ""
#: src/Module/Settings/Account.php:504
#: src/Module/Settings/Account.php:508
msgid "Account Settings"
msgstr ""
#: src/Module/Settings/Account.php:505
#: src/Module/Settings/Account.php:509
#, php-format
msgid "Your Identity Address is <strong>'%s'</strong> or '%s'."
msgstr ""
#: src/Module/Settings/Account.php:512
#: src/Module/Settings/Account.php:516
msgid "Password Settings"
msgstr ""
#: src/Module/Settings/Account.php:514
#: src/Module/Settings/Account.php:518
msgid "Leave password fields blank unless changing"
msgstr ""
#: src/Module/Settings/Account.php:516
#: src/Module/Settings/Account.php:520
msgid "Password:"
msgstr ""
#: src/Module/Settings/Account.php:516
#: src/Module/Settings/Account.php:520
msgid "Your current password to confirm the changes of the email address"
msgstr ""
#: src/Module/Settings/Account.php:519
#: src/Module/Settings/Account.php:523
msgid "Delete OpenID URL"
msgstr ""
#: src/Module/Settings/Account.php:521
#: src/Module/Settings/Account.php:525
msgid "Basic Settings"
msgstr ""
#: src/Module/Settings/Account.php:522
#: src/Module/Settings/Account.php:526
#: src/Module/Settings/Profile/Index.php:274
msgid "Display name:"
msgstr ""
#: src/Module/Settings/Account.php:523
#: src/Module/Settings/Account.php:527
msgid "Email Address:"
msgstr ""
#: src/Module/Settings/Account.php:524
#: src/Module/Settings/Account.php:528
msgid "Your Timezone:"
msgstr ""
#: src/Module/Settings/Account.php:525
#: src/Module/Settings/Account.php:529
msgid "Your Language:"
msgstr ""
#: src/Module/Settings/Account.php:525
#: src/Module/Settings/Account.php:529
msgid "Set the language we use to show you friendica interface and to send you emails"
msgstr ""
#: src/Module/Settings/Account.php:526
#: src/Module/Settings/Account.php:530
msgid "Default Post Location:"
msgstr ""
#: src/Module/Settings/Account.php:527
#: src/Module/Settings/Account.php:531
msgid "Use Browser Location:"
msgstr ""
#: src/Module/Settings/Account.php:529
#: src/Module/Settings/Account.php:533
msgid "Security and Privacy Settings"
msgstr ""
#: src/Module/Settings/Account.php:531
#: src/Module/Settings/Account.php:535
msgid "Maximum Friend Requests/Day:"
msgstr ""
#: src/Module/Settings/Account.php:531
#: src/Module/Settings/Account.php:535
msgid "(to prevent spam abuse)"
msgstr ""
#: src/Module/Settings/Account.php:533
#: src/Module/Settings/Account.php:537
msgid "Allow your profile to be searchable globally?"
msgstr ""
#: src/Module/Settings/Account.php:533
#: src/Module/Settings/Account.php:537
msgid "Activate this setting if you want others to easily find and follow you. Your profile will be searchable on remote systems. This setting also determines whether Friendica will inform search engines that your profile should be indexed or not."
msgstr ""
#: src/Module/Settings/Account.php:534
#: src/Module/Settings/Account.php:538
msgid "Hide your contact/friend list from viewers of your profile?"
msgstr ""
#: src/Module/Settings/Account.php:534
#: src/Module/Settings/Account.php:538
msgid "A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list."
msgstr ""
#: src/Module/Settings/Account.php:535
#: src/Module/Settings/Account.php:539
msgid "Hide your public content from anonymous viewers"
msgstr ""
#: src/Module/Settings/Account.php:535
#: src/Module/Settings/Account.php:539
msgid "Anonymous visitors will only see your basic profile details. Your public posts and replies will still be freely accessible on the remote servers of your followers and through relays."
msgstr ""
#: src/Module/Settings/Account.php:536
#: src/Module/Settings/Account.php:540
msgid "Make public posts unlisted"
msgstr ""
#: src/Module/Settings/Account.php:536
#: src/Module/Settings/Account.php:540
msgid "Your public posts will not appear on the community pages or in search results, nor be sent to relay servers. However they can still appear on public feeds on remote servers."
msgstr ""
#: src/Module/Settings/Account.php:537
#: src/Module/Settings/Account.php:541
msgid "Make all posted pictures accessible"
msgstr ""
#: src/Module/Settings/Account.php:537
#: src/Module/Settings/Account.php:541
msgid "This option makes every posted picture accessible via the direct link. This is a workaround for the problem that most other networks can't handle permissions on pictures. Non public pictures still won't be visible for the public on your photo albums though."
msgstr ""
#: src/Module/Settings/Account.php:538
#: src/Module/Settings/Account.php:542
msgid "Allow friends to post to your profile page?"
msgstr ""
#: src/Module/Settings/Account.php:538
#: src/Module/Settings/Account.php:542
msgid "Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"
msgstr ""
#: src/Module/Settings/Account.php:539
#: src/Module/Settings/Account.php:543
msgid "Allow friends to tag your posts?"
msgstr ""
#: src/Module/Settings/Account.php:539
#: src/Module/Settings/Account.php:543
msgid "Your contacts can add additional tags to your posts."
msgstr ""
#: src/Module/Settings/Account.php:540
#: src/Module/Settings/Account.php:544
msgid "Default privacy circle for new contacts"
msgstr ""
#: src/Module/Settings/Account.php:541
#: src/Module/Settings/Account.php:545
msgid "Default privacy circle for new group contacts"
msgstr ""
#: src/Module/Settings/Account.php:542
#: src/Module/Settings/Account.php:546
msgid "Default Post Permissions"
msgstr ""
#: src/Module/Settings/Account.php:546
#: src/Module/Settings/Account.php:550
msgid "Expiration settings"
msgstr ""
#: src/Module/Settings/Account.php:547
#: src/Module/Settings/Account.php:551
msgid "Automatically expire posts after this many days:"
msgstr ""
#: src/Module/Settings/Account.php:547
#: src/Module/Settings/Account.php:551
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr ""
#: src/Module/Settings/Account.php:548
#: src/Module/Settings/Account.php:552
msgid "Expire posts"
msgstr ""
#: src/Module/Settings/Account.php:548
#: src/Module/Settings/Account.php:552
msgid "When activated, posts and comments will be expired."
msgstr ""
#: src/Module/Settings/Account.php:549
#: src/Module/Settings/Account.php:553
msgid "Expire personal notes"
msgstr ""
#: src/Module/Settings/Account.php:549
#: src/Module/Settings/Account.php:553
msgid "When activated, the personal notes on your profile page will be expired."
msgstr ""
#: src/Module/Settings/Account.php:550
#: src/Module/Settings/Account.php:554
msgid "Expire starred posts"
msgstr ""
#: src/Module/Settings/Account.php:550
#: src/Module/Settings/Account.php:554
msgid "Starring posts keeps them from being expired. That behaviour is overwritten by this setting."
msgstr ""
#: src/Module/Settings/Account.php:551
#: src/Module/Settings/Account.php:555
msgid "Only expire posts by others"
msgstr ""
#: src/Module/Settings/Account.php:551
#: src/Module/Settings/Account.php:555
msgid "When activated, your own posts never expire. Then the settings above are only valid for posts you received."
msgstr ""
#: src/Module/Settings/Account.php:554
#: src/Module/Settings/Account.php:558
msgid "Notification Settings"
msgstr ""
#: src/Module/Settings/Account.php:555
#: src/Module/Settings/Account.php:559
msgid "Send a notification email when:"
msgstr ""
#: src/Module/Settings/Account.php:556
#: src/Module/Settings/Account.php:560
msgid "You receive an introduction"
msgstr ""
#: src/Module/Settings/Account.php:557
#: src/Module/Settings/Account.php:561
msgid "Your introductions are confirmed"
msgstr ""
#: src/Module/Settings/Account.php:558
#: src/Module/Settings/Account.php:562
msgid "Someone writes on your profile wall"
msgstr ""
#: src/Module/Settings/Account.php:559
#: src/Module/Settings/Account.php:563
msgid "Someone writes a followup comment"
msgstr ""
#: src/Module/Settings/Account.php:560
#: src/Module/Settings/Account.php:564
msgid "You receive a private message"
msgstr ""
#: src/Module/Settings/Account.php:561
#: src/Module/Settings/Account.php:565
msgid "You receive a friend suggestion"
msgstr ""
#: src/Module/Settings/Account.php:562
#: src/Module/Settings/Account.php:566
msgid "You are tagged in a post"
msgstr ""
#: src/Module/Settings/Account.php:564
#: src/Module/Settings/Account.php:568
msgid "Create a desktop notification when:"
msgstr ""
#: src/Module/Settings/Account.php:565
#: src/Module/Settings/Account.php:569
msgid "Someone tagged you"
msgstr ""
#: src/Module/Settings/Account.php:566
#: src/Module/Settings/Account.php:570
msgid "Someone directly commented on your post"
msgstr ""
#: src/Module/Settings/Account.php:567
#: src/Module/Settings/Account.php:571
msgid "Someone liked your content"
msgstr ""
#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568
#: src/Module/Settings/Account.php:571 src/Module/Settings/Account.php:572
msgid "Can only be enabled, when the direct comment notification is enabled."
msgstr ""
#: src/Module/Settings/Account.php:568
#: src/Module/Settings/Account.php:572
msgid "Someone shared your content"
msgstr ""
#: src/Module/Settings/Account.php:569
#: src/Module/Settings/Account.php:573
msgid "Someone commented in your thread"
msgstr ""
#: src/Module/Settings/Account.php:570
#: src/Module/Settings/Account.php:574
msgid "Someone commented in a thread where you commented"
msgstr ""
#: src/Module/Settings/Account.php:571
#: src/Module/Settings/Account.php:575
msgid "Someone commented in a thread where you interacted"
msgstr ""
#: src/Module/Settings/Account.php:573
#: src/Module/Settings/Account.php:577
msgid "Activate desktop notifications"
msgstr ""
#: src/Module/Settings/Account.php:573
#: src/Module/Settings/Account.php:577
msgid "Show desktop popup on new notifications"
msgstr ""
#: src/Module/Settings/Account.php:577
#: src/Module/Settings/Account.php:581
msgid "Text-only notification emails"
msgstr ""
#: src/Module/Settings/Account.php:579
#: src/Module/Settings/Account.php:583
msgid "Send text only notification emails, without the html part"
msgstr ""
#: src/Module/Settings/Account.php:583
#: src/Module/Settings/Account.php:587
msgid "Show detailled notifications"
msgstr ""
#: src/Module/Settings/Account.php:585
#: src/Module/Settings/Account.php:589
msgid "Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."
msgstr ""
#: src/Module/Settings/Account.php:589
#: src/Module/Settings/Account.php:593
msgid "Show notifications of ignored contacts"
msgstr ""
#: src/Module/Settings/Account.php:591
#: src/Module/Settings/Account.php:595
msgid "You don't see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not."
msgstr ""
#: src/Module/Settings/Account.php:594
#: src/Module/Settings/Account.php:598
msgid "Advanced Account/Page Type Settings"
msgstr ""
#: src/Module/Settings/Account.php:595
#: src/Module/Settings/Account.php:599
msgid "Change the behaviour of this account for special situations"
msgstr ""
#: src/Module/Settings/Account.php:598
#: src/Module/Settings/Account.php:602
msgid "Relocate"
msgstr ""
#: src/Module/Settings/Account.php:599
#: src/Module/Settings/Account.php:603
msgid "If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."
msgstr ""
#: src/Module/Settings/Account.php:600
#: src/Module/Settings/Account.php:604
msgid "Resend relocate message to contacts"
msgstr ""
@ -9534,12 +9547,12 @@ msgid "When selected, the channel results are reshared. This only works for publ
msgstr ""
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
#: src/Module/Settings/Display.php:349
#: src/Module/Settings/Display.php:346
msgid "Label"
msgstr ""
#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198
#: src/Module/Settings/Display.php:350
#: src/Module/Settings/Display.php:347
#: src/Module/Settings/TwoFactor/AppSpecific.php:124
msgid "Description"
msgstr ""
@ -9914,218 +9927,218 @@ msgstr ""
msgid "No entries."
msgstr ""
#: src/Module/Settings/Display.php:180
#: src/Module/Settings/Display.php:177
msgid "The theme you chose isn't available."
msgstr ""
#: src/Module/Settings/Display.php:220
#: src/Module/Settings/Display.php:217
#, php-format
msgid "%s - (Unsupported)"
msgstr ""
#: src/Module/Settings/Display.php:260
#: src/Module/Settings/Display.php:257
msgid "Color/Black"
msgstr ""
#: src/Module/Settings/Display.php:261 view/theme/frio/php/scheme.php:95
#: src/Module/Settings/Display.php:258 view/theme/frio/php/scheme.php:95
msgid "Black"
msgstr ""
#: src/Module/Settings/Display.php:262
#: src/Module/Settings/Display.php:259
msgid "Color/White"
msgstr ""
#: src/Module/Settings/Display.php:263
#: src/Module/Settings/Display.php:260
msgid "White"
msgstr ""
#: src/Module/Settings/Display.php:268
#: src/Module/Settings/Display.php:265
msgid "No preview"
msgstr ""
#: src/Module/Settings/Display.php:269
#: src/Module/Settings/Display.php:266
msgid "No image"
msgstr ""
#: src/Module/Settings/Display.php:270
#: src/Module/Settings/Display.php:267
msgid "Small Image"
msgstr ""
#: src/Module/Settings/Display.php:271
#: src/Module/Settings/Display.php:268
msgid "Large Image"
msgstr ""
#: src/Module/Settings/Display.php:316
#: src/Module/Settings/Display.php:313
msgid "Display Settings"
msgstr ""
#: src/Module/Settings/Display.php:318
#: src/Module/Settings/Display.php:315
msgid "General Theme Settings"
msgstr ""
#: src/Module/Settings/Display.php:319
#: src/Module/Settings/Display.php:316
msgid "Custom Theme Settings"
msgstr ""
#: src/Module/Settings/Display.php:320
#: src/Module/Settings/Display.php:317
msgid "Content Settings"
msgstr ""
#: src/Module/Settings/Display.php:321 view/theme/duepuntozero/config.php:74
#: src/Module/Settings/Display.php:318 view/theme/duepuntozero/config.php:74
#: view/theme/frio/config.php:156 view/theme/quattro/config.php:76
#: view/theme/vier/config.php:124
msgid "Theme settings"
msgstr ""
#: src/Module/Settings/Display.php:322
#: src/Module/Settings/Display.php:319
msgid "Timelines"
msgstr ""
#: src/Module/Settings/Display.php:329
#: src/Module/Settings/Display.php:326
msgid "Display Theme:"
msgstr ""
#: src/Module/Settings/Display.php:330
#: src/Module/Settings/Display.php:327
msgid "Mobile Theme:"
msgstr ""
#: src/Module/Settings/Display.php:333
#: src/Module/Settings/Display.php:330
msgid "Number of items to display per page:"
msgstr ""
#: src/Module/Settings/Display.php:333 src/Module/Settings/Display.php:334
#: src/Module/Settings/Display.php:330 src/Module/Settings/Display.php:331
msgid "Maximum of 100 items"
msgstr ""
#: src/Module/Settings/Display.php:334
#: src/Module/Settings/Display.php:331
msgid "Number of items to display per page when viewed from mobile device:"
msgstr ""
#: src/Module/Settings/Display.php:335
#: src/Module/Settings/Display.php:332
msgid "Update browser every xx seconds"
msgstr ""
#: src/Module/Settings/Display.php:335
#: src/Module/Settings/Display.php:332
msgid "Minimum of 10 seconds. Enter -1 to disable it."
msgstr ""
#: src/Module/Settings/Display.php:336
#: src/Module/Settings/Display.php:333
msgid "Display emoticons"
msgstr ""
#: src/Module/Settings/Display.php:336
#: src/Module/Settings/Display.php:333
msgid "When enabled, emoticons are replaced with matching symbols."
msgstr ""
#: src/Module/Settings/Display.php:337
#: src/Module/Settings/Display.php:334
msgid "Infinite scroll"
msgstr ""
#: src/Module/Settings/Display.php:337
#: src/Module/Settings/Display.php:334
msgid "Automatic fetch new items when reaching the page end."
msgstr ""
#: src/Module/Settings/Display.php:338
#: src/Module/Settings/Display.php:335
msgid "Enable Smart Threading"
msgstr ""
#: src/Module/Settings/Display.php:338
#: src/Module/Settings/Display.php:335
msgid "Enable the automatic suppression of extraneous thread indentation."
msgstr ""
#: src/Module/Settings/Display.php:339
#: src/Module/Settings/Display.php:336
msgid "Display the Dislike feature"
msgstr ""
#: src/Module/Settings/Display.php:339
#: src/Module/Settings/Display.php:336
msgid "Display the Dislike button and dislike reactions on posts and comments."
msgstr ""
#: src/Module/Settings/Display.php:340
#: src/Module/Settings/Display.php:337
msgid "Display the resharer"
msgstr ""
#: src/Module/Settings/Display.php:340
#: src/Module/Settings/Display.php:337
msgid "Display the first resharer as icon and text on a reshared item."
msgstr ""
#: src/Module/Settings/Display.php:341
#: src/Module/Settings/Display.php:338
msgid "Stay local"
msgstr ""
#: src/Module/Settings/Display.php:341
#: src/Module/Settings/Display.php:338
msgid "Don't go to a remote system when following a contact link."
msgstr ""
#: src/Module/Settings/Display.php:342
#: src/Module/Settings/Display.php:339
msgid "Show the post deletion checkbox"
msgstr ""
#: src/Module/Settings/Display.php:342
#: src/Module/Settings/Display.php:339
msgid "Display the checkbox for the post deletion on the network page."
msgstr ""
#: src/Module/Settings/Display.php:343
#: src/Module/Settings/Display.php:340
msgid "DIsplay the event list"
msgstr ""
#: src/Module/Settings/Display.php:343
#: src/Module/Settings/Display.php:340
msgid "Display the birthday reminder and event list on the network page."
msgstr ""
#: src/Module/Settings/Display.php:344
#: src/Module/Settings/Display.php:341
msgid "Link preview mode"
msgstr ""
#: src/Module/Settings/Display.php:344
#: src/Module/Settings/Display.php:341
msgid "Appearance of the link preview that is added to each post with a link."
msgstr ""
#: src/Module/Settings/Display.php:345
#: src/Module/Settings/Display.php:342
msgid "Hide pictures with empty alternative text"
msgstr ""
#: src/Module/Settings/Display.php:345
#: src/Module/Settings/Display.php:342
msgid "Don't display pictures that are missing the alternative text."
msgstr ""
#: src/Module/Settings/Display.php:346
#: src/Module/Settings/Display.php:343
msgid "Hide custom emojis"
msgstr ""
#: src/Module/Settings/Display.php:346
#: src/Module/Settings/Display.php:343
msgid "Don't display custom emojis."
msgstr ""
#: src/Module/Settings/Display.php:347
#: src/Module/Settings/Display.php:344
msgid "Platform icons style"
msgstr ""
#: src/Module/Settings/Display.php:347
#: src/Module/Settings/Display.php:344
msgid "Style of the platform icons"
msgstr ""
#: src/Module/Settings/Display.php:352
#: src/Module/Settings/Display.php:349
msgid "Bookmark"
msgstr ""
#: src/Module/Settings/Display.php:354
#: src/Module/Settings/Display.php:351
msgid "Enable timelines that you want to see in the channels widget. Bookmark timelines that you want to see in the top menu."
msgstr ""
#: src/Module/Settings/Display.php:356
#: src/Module/Settings/Display.php:353
msgid "Channel languages:"
msgstr ""
#: src/Module/Settings/Display.php:356
#: src/Module/Settings/Display.php:353
msgid "Select all languages that you want to see in your channels."
msgstr ""
#: src/Module/Settings/Display.php:358
#: src/Module/Settings/Display.php:355
msgid "Beginning of week:"
msgstr ""
#: src/Module/Settings/Display.php:359
#: src/Module/Settings/Display.php:356
msgid "Default calendar view:"
msgstr ""
@ -10281,40 +10294,40 @@ msgstr ""
msgid "(Used for searching profiles, never shown to others)"
msgstr ""
#: src/Module/Settings/Profile/Photo/Crop.php:90
#: src/Module/Settings/Profile/Photo/Crop.php:108
#: src/Module/Settings/Profile/Photo/Crop.php:126
#: src/Module/Settings/Profile/Photo/Crop.php:93
#: src/Module/Settings/Profile/Photo/Crop.php:111
#: src/Module/Settings/Profile/Photo/Crop.php:129
#: src/Module/Settings/Profile/Photo/Index.php:86
#, php-format
msgid "Image size reduction [%s] failed."
msgstr ""
#: src/Module/Settings/Profile/Photo/Crop.php:133
#: src/Module/Settings/Profile/Photo/Crop.php:136
msgid "Shift-reload the page or clear browser cache if the new photo does not display immediately."
msgstr ""
#: src/Module/Settings/Profile/Photo/Crop.php:138
#: src/Module/Settings/Profile/Photo/Crop.php:141
msgid "Unable to process image"
msgstr ""
#: src/Module/Settings/Profile/Photo/Crop.php:157
#: src/Module/Settings/Profile/Photo/Crop.php:160
msgid "Photo not found."
msgstr ""
#: src/Module/Settings/Profile/Photo/Crop.php:179
#: src/Module/Settings/Profile/Photo/Crop.php:182
msgid "Profile picture successfully updated."
msgstr ""
#: src/Module/Settings/Profile/Photo/Crop.php:205
#: src/Module/Settings/Profile/Photo/Crop.php:209
#: src/Module/Settings/Profile/Photo/Crop.php:208
#: src/Module/Settings/Profile/Photo/Crop.php:212
msgid "Crop Image"
msgstr ""
#: src/Module/Settings/Profile/Photo/Crop.php:206
#: src/Module/Settings/Profile/Photo/Crop.php:209
msgid "Please adjust the image cropping for optimum viewing."
msgstr ""
#: src/Module/Settings/Profile/Photo/Crop.php:208
#: src/Module/Settings/Profile/Photo/Crop.php:211
msgid "Use Image As Is"
msgstr ""
@ -10381,15 +10394,15 @@ msgstr ""
msgid "Your account has been successfully removed. Bye bye!"
msgstr ""
#: src/Module/Settings/RemoveMe.php:114
#: src/Module/Settings/RemoveMe.php:116
msgid "Remove My Account"
msgstr ""
#: src/Module/Settings/RemoveMe.php:115
#: src/Module/Settings/RemoveMe.php:117
msgid "This will completely remove your account. Once this has been done it is not recoverable."
msgstr ""
#: src/Module/Settings/RemoveMe.php:120
#: src/Module/Settings/RemoveMe.php:122
msgid "Please enter your password for verification:"
msgstr ""
@ -10739,11 +10752,11 @@ msgstr ""
msgid "Possible reasons include:"
msgstr ""
#: src/Module/Special/HTTPException.php:65
#: src/Module/Special/HTTPException.php:64
msgid "Stack trace:"
msgstr ""
#: src/Module/Special/HTTPException.php:70
#: src/Module/Special/HTTPException.php:69
#, php-format
msgid "Exception thrown in %s:%d"
msgstr ""
@ -10777,24 +10790,24 @@ msgstr ""
msgid "The requested item doesn't exist or has been deleted."
msgstr ""
#: src/Module/User/Delegation.php:134
#: src/Module/User/Delegation.php:132
#, php-format
msgid "You are now logged in as %s"
msgstr ""
#: src/Module/User/Delegation.php:173
#: src/Module/User/Delegation.php:171
msgid "Switch between your accounts"
msgstr ""
#: src/Module/User/Delegation.php:174
#: src/Module/User/Delegation.php:172
msgid "Manage your accounts"
msgstr ""
#: src/Module/User/Delegation.php:175
#: src/Module/User/Delegation.php:173
msgid "Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"
msgstr ""
#: src/Module/User/Delegation.php:176
#: src/Module/User/Delegation.php:174
msgid "Select an identity to manage: "
msgstr ""
@ -11725,11 +11738,11 @@ msgstr ""
msgid "Quote shared by: %s"
msgstr ""
#: src/Protocol/ActivityPub/Receiver.php:558
#: src/Protocol/ActivityPub/Receiver.php:557
msgid "Chat"
msgstr ""
#: src/Protocol/Delivery.php:531
#: src/Protocol/Delivery.php:530
msgid "(no subject)"
msgstr ""
@ -11738,24 +11751,28 @@ msgstr ""
msgid "The folder %s must be writable by webserver."
msgstr ""
#: src/Security/Authentication.php:216
#: src/Security/Authentication.php:200
msgid "Login failed."
msgstr ""
#: src/Security/Authentication.php:261
#: src/Security/Authentication.php:245
msgid "Login failed. Please check your credentials."
msgstr ""
#: src/Security/Authentication.php:374
#: src/Security/Authentication.php:251
msgid "Login failed because your account is blocked."
msgstr ""
#: src/Security/Authentication.php:365
#, php-format
msgid "Welcome %s"
msgstr ""
#: src/Security/Authentication.php:375
#: src/Security/Authentication.php:366
msgid "Please upload a profile photo."
msgstr ""
#: src/Security/OpenWebAuth.php:150
#: src/Security/OpenWebAuth.php:149
#, php-format
msgid "OpenWebAuth: %1$s welcomes %2$s"
msgstr ""

View file

@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-17 20:15+0000\n"
"POT-Creation-Date: 2024-12-23 10:09+0000\n"
"PO-Revision-Date: 2011-05-05 10:19+0000\n"
"Last-Translator: abidin toumi <abidin24@tutanota.com>, 2020-2021,2023\n"
"Language-Team: Arabic (http://app.transifex.com/Friendica/friendica/language/ar/)\n"
@ -26,34 +26,34 @@ msgstr ""
"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"
#: mod/item.php:89 mod/item.php:92 mod/item.php:159 mod/item.php:162
#: mod/item.php:88 mod/item.php:91 mod/item.php:158 mod/item.php:161
msgid "Unable to locate original post."
msgstr "تعذر إيجاد المشاركة الأصلية."
#: mod/item.php:127
#: mod/item.php:126
msgid "Post updated."
msgstr "حُدثت المشاركة."
#: mod/item.php:192 mod/item.php:196
#: mod/item.php:191 mod/item.php:195
msgid "Item wasn't stored."
msgstr "لم يخزن العنصر."
#: mod/item.php:206
#: mod/item.php:205
msgid "Item couldn't be fetched."
msgstr "تعذر جلب العنصر."
#: mod/item.php:250 mod/item.php:254
#: mod/item.php:249 mod/item.php:253
msgid "Empty post discarded."
msgstr "رُفضت المشاركة الفارغة."
#: mod/item.php:425 src/Module/Admin/Themes/Details.php:31
#: mod/item.php:424 src/Module/Admin/Themes/Details.php:31
#: src/Module/Admin/Themes/Index.php:51 src/Module/Debug/ItemBody.php:34
#: src/Module/Debug/ItemBody.php:42 src/Module/Item/Feed.php:66
msgid "Item not found."
msgstr "لم يُعثر على العنصر."
#: mod/item.php:449 mod/message.php:54 mod/message.php:100 mod/notes.php:33
#: mod/photos.php:135 mod/photos.php:627 src/Model/Event.php:506
#: mod/item.php:448 mod/message.php:54 mod/message.php:100 mod/notes.php:34
#: mod/photos.php:133 mod/photos.php:625 src/Model/Event.php:508
#: src/Module/Attach.php:41 src/Module/BaseApi.php:91
#: src/Module/BaseNotifications.php:83 src/Module/BaseSettings.php:38
#: src/Module/Calendar/Event/API.php:75 src/Module/Calendar/Event/Form.php:70
@ -64,7 +64,7 @@ msgstr "لم يُعثر على العنصر."
#: src/Module/Contact/Suggestions.php:40 src/Module/Contact/Unfollow.php:52
#: src/Module/Contact/Unfollow.php:66 src/Module/Contact/Unfollow.php:98
#: src/Module/FollowConfirm.php:24 src/Module/FriendSuggest.php:44
#: src/Module/Invite.php:28 src/Module/Invite.php:117
#: src/Module/Invite.php:28 src/Module/Invite.php:116
#: src/Module/Notifications/Notification.php:62
#: src/Module/Notifications/Notification.php:93
#: src/Module/OStatus/Subscribe.php:54 src/Module/Post/Edit.php:67
@ -73,13 +73,15 @@ msgstr "لم يُعثر على العنصر."
#: src/Module/Profile/Schedule.php:42 src/Module/Register.php:71
#: src/Module/Register.php:84 src/Module/Register.php:200
#: src/Module/Register.php:239 src/Module/Search/Directory.php:23
#: src/Module/Settings/Account.php:36 src/Module/Settings/Account.php:375
#: src/Module/Settings/Account.php:34 src/Module/Settings/Account.php:337
#: src/Module/Settings/Channels.php:52 src/Module/Settings/Channels.php:127
#: src/Module/Settings/ContactImport.php:49
#: src/Module/Settings/ContactImport.php:96
#: src/Module/Settings/Delegation.php:76 src/Module/Settings/Display.php:80
#: src/Module/Settings/Display.php:194
#: src/Module/Settings/Profile/Photo/Crop.php:151
#: src/Module/Settings/Profile/Photo/Crop.php:148
#: src/Module/Settings/Profile/Photo/Index.php:96
#: src/Module/Settings/RemoveMe.php:105 src/Module/Settings/UserExport.php:64
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
#: src/Module/Settings/UserExport.php:100
#: src/Module/Settings/UserExport.php:199
#: src/Module/Settings/UserExport.php:219
@ -88,15 +90,15 @@ msgstr "لم يُعثر على العنصر."
msgid "Permission denied."
msgstr "رُفض الإذن."
#: mod/lostpass.php:28
#: mod/lostpass.php:27
msgid "No valid account found."
msgstr "لم يُعثر على حساب صالح."
#: mod/lostpass.php:40
#: mod/lostpass.php:39
msgid "Password reset request issued. Check your email."
msgstr "تم تقديم طلب إعادة تعيين كلمه المرور. تحقق من بريدك الإلكتروني."
#: mod/lostpass.php:46
#: mod/lostpass.php:45
#, php-format
msgid ""
"\n"
@ -112,7 +114,7 @@ msgid ""
"\t\tissued this request."
msgstr "\n\t\tعزيزي %1$s،\n\t\t\tاستلمنا مؤخرًا طلبًا لاستعادة كلمة المرور على \"%2$s\".\n\t\tلتأكيد هذا الطلب، يرجى النقر على رابط التحقق\n\t\tأدناه أو لصقه في شريط عناوين متصفح الويب الخاص بك.\n\n\t\tإذا لم تطلب هذا التغيير، الرجاء عدم اتباع الرابط\n\t\tوتجاهل و/أو حذف هذا البريد الإلكتروني، الطلب سينتهي قريبا.\n\n\t\tلن يتم تغيير كلمة المرور الخاصة بك ما لم نتمكن من التحقق من\n\t\tهويتك."
#: mod/lostpass.php:57
#: mod/lostpass.php:56
#, php-format
msgid ""
"\n"
@ -129,70 +131,70 @@ msgid ""
"\t\tLogin Name:\t%3$s"
msgstr "\n\t\tاتبع هذا الرابط للتحقق من هويتك:\n\n\t\t\t\t%1$s\n\n\t\tسوف تتلقى رسالة متابعة تحتوي على كلمة المرور الجديدة.\n\t يمكنك تغيير كلمة المرور من صفحة إعدادات الحساب بعد الولوج.\n\n\t\tتفاصيل الولوج هي:\n\n\t\tالموقع:\t%2$s\n\t\tاسم الولوج:\t%3$s"
#: mod/lostpass.php:72
#: mod/lostpass.php:71
#, php-format
msgid "Password reset requested at %s"
msgstr "طُلب إعادة تعيين كلمة المرور على %s"
#: mod/lostpass.php:88
#: mod/lostpass.php:87
msgid ""
"Request could not be verified. (You may have previously submitted it.) "
"Password reset failed."
msgstr "تعذر التحقق من الطلب (ربما تكون قد أرسلته مسبقاً). فشلت إعادة تعيين كلمة المرور."
#: mod/lostpass.php:101
#: mod/lostpass.php:100
msgid "Request has expired, please make a new one."
msgstr "انتهت صلاحيته، أرسل طلب جديد."
#: mod/lostpass.php:116
#: mod/lostpass.php:115
msgid "Forgot your Password?"
msgstr "نسيت كلمة المرور؟"
#: mod/lostpass.php:117
#: mod/lostpass.php:116
msgid ""
"Enter your email address and submit to have your password reset. Then check "
"your email for further instructions."
msgstr "أدخل عنوان بريدك الإلكتروني لإعادة تعيين كلمة المرور. بعد ذلك راجع من بريدك الإلكتروني لمزيد من التعليمات."
#: mod/lostpass.php:118 src/Module/Security/Login.php:149
#: mod/lostpass.php:117 src/Module/Security/Login.php:149
msgid "Nickname or Email: "
msgstr "اللقب أو البريد الإلكتروني: "
#: mod/lostpass.php:119
#: mod/lostpass.php:118
msgid "Reset"
msgstr "أعد التعيين"
#: mod/lostpass.php:134 src/Module/Security/Login.php:161
#: mod/lostpass.php:133 src/Module/Security/Login.php:161
msgid "Password Reset"
msgstr "إعادة تعيين كلمة المرور"
#: mod/lostpass.php:135
#: mod/lostpass.php:134
msgid "Your password has been reset as requested."
msgstr "أُعيد تعيين كلمة المرور بناء على طلبك."
#: mod/lostpass.php:136
#: mod/lostpass.php:135
msgid "Your new password is"
msgstr "كلمة مرورك الجديدة هي"
#: mod/lostpass.php:137
#: mod/lostpass.php:136
msgid "Save or copy your new password - and then"
msgstr "احفظ أو انسخ كلمة المرور الجديدة - ثم"
#: mod/lostpass.php:138
#: mod/lostpass.php:137
msgid "click here to login"
msgstr "أنقر هنا للولوج"
#: mod/lostpass.php:139
#: mod/lostpass.php:138
msgid ""
"Your password may be changed from the <em>Settings</em> page after "
"successful login."
msgstr "يمكنك تغيير كلمة المرور من <em>الإعدادات</em> بعد ولوجك بنجاح."
#: mod/lostpass.php:143
#: mod/lostpass.php:142
msgid "Your password has been reset."
msgstr "أُعيد تعيين كلمة المرور."
#: mod/lostpass.php:146
#: mod/lostpass.php:145
#, php-format
msgid ""
"\n"
@ -203,7 +205,7 @@ msgid ""
"\t\t"
msgstr "\n\t\t\tعزيزي %1$s،\n\t\t\t\tغُيّرت كلمة المرور بناء على طلبك. يرجى الاحتفاظ بهذه\n\t\t\tالمعلومات (أو تغيير كلمة المرور الخاصة بك على الفور).\n\t\t\t\t"
#: mod/lostpass.php:152
#: mod/lostpass.php:151
#, php-format
msgid ""
"\n"
@ -217,7 +219,7 @@ msgid ""
"\t\t"
msgstr "\n\t\t\tتفاصيل الولوج كالتالي:\n\n\t\t\tالموقع:\t%1$s\n\t\t\tاسم المستخدم:\t%2$s\n\t\t\tكلمة المرور:\t%3$s\n\n\t\t\tيمكنك تغيير كلمة المرور من صفحة إعدادات الحساب.\n\t\t\t"
#: mod/lostpass.php:164
#: mod/lostpass.php:163
#, php-format
msgid "Your password has been changed at %s"
msgstr "غُيرت كلمة المرور على %s"
@ -281,11 +283,11 @@ msgstr "إلى:"
msgid "Subject:"
msgstr "الموضوع:"
#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:157
#: mod/message.php:183 mod/message.php:337 src/Module/Invite.php:155
msgid "Your message:"
msgstr "رسالتك:"
#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:356
#: mod/message.php:186 mod/message.php:341 src/Content/Conversation.php:358
#: src/Module/Post/Edit.php:122
msgid "Upload photo"
msgstr "ارفع صورة"
@ -294,16 +296,16 @@ msgstr "ارفع صورة"
msgid "Insert web link"
msgstr "أدرج رابط ويب"
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1255
#: src/Content/Conversation.php:387 src/Content/Conversation.php:1563
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1253
#: src/Content/Conversation.php:389 src/Content/Conversation.php:1565
#: src/Module/Item/Compose.php:202 src/Module/Post/Edit.php:136
#: src/Object/Post.php:604
#: src/Object/Post.php:605
msgid "Please wait"
msgstr "يرجى الانتظار"
#: mod/message.php:189 mod/message.php:343 mod/photos.php:658
#: mod/photos.php:778 mod/photos.php:1055 mod/photos.php:1096
#: mod/photos.php:1152 mod/photos.php:1232
#: mod/message.php:189 mod/message.php:343 mod/photos.php:656
#: mod/photos.php:776 mod/photos.php:1053 mod/photos.php:1094
#: mod/photos.php:1150 mod/photos.php:1230
#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118
#: src/Module/Contact/Profile.php:376
#: src/Module/Debug/ActivityPubConversion.php:128
@ -311,7 +313,7 @@ msgstr "يرجى الانتظار"
#: src/Module/Debug/Probe.php:40 src/Module/Debug/WebFinger.php:37
#: src/Module/FriendSuggest.php:132 src/Module/Install.php:220
#: src/Module/Install.php:260 src/Module/Install.php:295
#: src/Module/Invite.php:164 src/Module/Item/Compose.php:185
#: src/Module/Invite.php:162 src/Module/Item/Compose.php:185
#: src/Module/Moderation/Item/Source.php:74
#: src/Module/Moderation/Report/Create.php:154
#: src/Module/Moderation/Report/Create.php:169
@ -320,7 +322,7 @@ msgstr "يرجى الانتظار"
#: src/Module/Profile/Profile.php:265
#: src/Module/Settings/Profile/Index.php:248
#: src/Module/Settings/Server/Action.php:65 src/Module/User/Delegation.php:177
#: src/Object/Post.php:1145 view/theme/duepuntozero/config.php:73
#: src/Object/Post.php:1146 view/theme/duepuntozero/config.php:73
#: view/theme/frio/config.php:155 view/theme/quattro/config.php:75
#: view/theme/vier/config.php:123
msgid "Submit"
@ -382,396 +384,396 @@ msgstr[3] "%d رسائل"
msgstr[4] "%d رسالة"
msgstr[5] "%d رسالة"
#: mod/notes.php:40 src/Module/BaseProfile.php:93
#: mod/notes.php:41 src/Module/BaseProfile.php:93
msgid "Personal Notes"
msgstr "ملاحظات شخصية"
#: mod/notes.php:44
#: mod/notes.php:45
msgid "Personal notes are visible only by yourself."
msgstr "الملاحظات الشخصية مرئية لك فقط."
#: mod/notes.php:45 src/Content/Text/HTML.php:847
#: mod/notes.php:46 src/Content/Text/HTML.php:847
#: src/Module/Admin/Storage.php:128 src/Module/Filer/SaveTag.php:60
#: src/Module/Post/Edit.php:120 src/Module/Settings/Channels.php:215
msgid "Save"
msgstr "احفظ"
#: mod/photos.php:54 mod/photos.php:117 mod/photos.php:537
#: src/Model/Event.php:498 src/Model/Profile.php:212
#: mod/photos.php:52 mod/photos.php:115 mod/photos.php:535
#: src/Model/Event.php:500 src/Model/Profile.php:212
#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:63
#: src/Module/Feed.php:52 src/Module/HCard.php:37
#: src/Module/Profile/Common.php:50 src/Module/Profile/Common.php:59
#: src/Module/Profile/Contacts.php:52 src/Module/Profile/Contacts.php:60
#: src/Module/Profile/Conversations.php:81 src/Module/Profile/Media.php:42
#: src/Module/Profile/Conversations.php:81 src/Module/Profile/Media.php:58
#: src/Module/Profile/Photos.php:72 src/Module/Profile/RemoteFollow.php:57
#: src/Module/Register.php:261
msgid "User not found."
msgstr "لم يُعثر على المستخدم."
#: mod/photos.php:91 src/Module/BaseProfile.php:53
#: src/Module/Profile/Photos.php:364
#: mod/photos.php:89 src/Module/BaseProfile.php:53
#: src/Module/Profile/Photos.php:372
msgid "Photo Albums"
msgstr "ألبومات الصور"
#: mod/photos.php:92 src/Module/Profile/Photos.php:365
#: src/Module/Profile/Photos.php:385
#: mod/photos.php:90 src/Module/Profile/Photos.php:373
#: src/Module/Profile/Photos.php:393
msgid "Recent Photos"
msgstr "الصور الأخيرة"
#: mod/photos.php:94 mod/photos.php:826 src/Module/Profile/Photos.php:367
#: src/Module/Profile/Photos.php:387
#: mod/photos.php:92 mod/photos.php:824 src/Module/Profile/Photos.php:375
#: src/Module/Profile/Photos.php:395
msgid "Upload New Photos"
msgstr "ارفع صور جديدة"
#: mod/photos.php:106 src/Module/BaseSettings.php:60
#: src/Module/Profile/Photos.php:348
#: mod/photos.php:104 src/Module/BaseSettings.php:60
#: src/Module/Profile/Photos.php:356
msgid "everybody"
msgstr "الجميع"
#: mod/photos.php:142
#: mod/photos.php:140
msgid "Contact information unavailable"
msgstr "معلومات المتراسل غير متوفرة"
#: mod/photos.php:171
#: mod/photos.php:169
msgid "Album not found."
msgstr "لم يُعثر على الألبوم."
#: mod/photos.php:227
#: mod/photos.php:225
msgid "Album successfully deleted"
msgstr "حُذف الألبوم بنجاح"
#: mod/photos.php:229
#: mod/photos.php:227
msgid "Album was empty."
msgstr "ألبوم فارغ."
#: mod/photos.php:260
#: mod/photos.php:258
msgid "Failed to delete the photo."
msgstr "فشل حذف الصفحة."
#: mod/photos.php:504
#: mod/photos.php:502
msgid "a photo"
msgstr "صورة"
#: mod/photos.php:504
#: mod/photos.php:502
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr "ذكر %3$s %1$s في %2$s"
#: mod/photos.php:541 src/Module/Conversation/Community.php:148
#: src/Module/Directory.php:35 src/Module/Profile/Photos.php:282
#: mod/photos.php:539 src/Module/Conversation/Community.php:148
#: src/Module/Directory.php:34 src/Module/Profile/Photos.php:290
#: src/Module/Search/Index.php:51
msgid "Public access denied."
msgstr "رُفض الوصول العلني."
#: mod/photos.php:546
#: mod/photos.php:544
msgid "No photos selected"
msgstr "لم تختر صورًا"
#: mod/photos.php:674
#: mod/photos.php:672
#, php-format
msgid "The maximum accepted image size is %s"
msgstr "الحد الأقصى لحجم الصورة المسموح به هو %s"
#: mod/photos.php:681
#: mod/photos.php:679
msgid "Upload Photos"
msgstr "ارفع صورًا"
#: mod/photos.php:685 mod/photos.php:774
#: mod/photos.php:683 mod/photos.php:772
msgid "New album name: "
msgstr "اسم الألبوم الجديد: "
#: mod/photos.php:686
#: mod/photos.php:684
msgid "or select existing album:"
msgstr "أو اختر ألبومًا موجودًا:"
#: mod/photos.php:687
#: mod/photos.php:685
msgid "Do not show a status post for this upload"
msgstr "لا تظهر مشاركة حالة لهذا الملف المرفوع"
#: mod/photos.php:690 mod/photos.php:1051 src/Content/Conversation.php:389
#: mod/photos.php:688 mod/photos.php:1049 src/Content/Conversation.php:391
#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:174
msgid "Permissions"
msgstr "الأُذونات"
#: mod/photos.php:755
#: mod/photos.php:753
msgid "Do you really want to delete this photo album and all its photos?"
msgstr "أتريد حذف هذا الألبوم وكافة محتوياته؟"
#: mod/photos.php:756 mod/photos.php:779
#: mod/photos.php:754 mod/photos.php:777
msgid "Delete Album"
msgstr "احذف الألبوم"
#: mod/photos.php:757 mod/photos.php:857 src/Content/Conversation.php:404
#: mod/photos.php:755 mod/photos.php:855 src/Content/Conversation.php:406
#: src/Module/Contact/Follow.php:158 src/Module/Contact/Revoke.php:92
#: src/Module/Contact/Unfollow.php:112
#: src/Module/Media/Attachment/Browser.php:64
#: src/Module/Media/Photo/Browser.php:76 src/Module/Post/Edit.php:158
#: src/Module/Post/Tag/Remove.php:95 src/Module/Profile/RemoteFollow.php:120
#: src/Module/Post/Tag/Remove.php:96 src/Module/Profile/RemoteFollow.php:120
#: src/Module/Security/TwoFactor/SignOut.php:111
msgid "Cancel"
msgstr "ألغ"
#: mod/photos.php:783
#: mod/photos.php:781
msgid "Edit Album"
msgstr "عدّل الألبوم"
#: mod/photos.php:784
#: mod/photos.php:782
msgid "Drop Album"
msgstr "احذف الألبوم"
#: mod/photos.php:788
#: mod/photos.php:786
msgid "Show Newest First"
msgstr "اعرض الأحدث أولًا"
#: mod/photos.php:790
#: mod/photos.php:788
msgid "Show Oldest First"
msgstr "اعرض الأقدم أولًا"
#: mod/photos.php:811 src/Module/Profile/Photos.php:335
#: mod/photos.php:809 src/Module/Profile/Photos.php:343
msgid "View Photo"
msgstr "اعرض الصور"
#: mod/photos.php:843
#: mod/photos.php:841
msgid "Permission denied. Access to this item may be restricted."
msgstr "رُفض الإذن. قد يكون الوصول إلى هذا العنصر مقيدا."
#: mod/photos.php:845
#: mod/photos.php:843
msgid "Photo not available"
msgstr "الصورة غير متوفرة"
#: mod/photos.php:855
#: mod/photos.php:853
msgid "Do you really want to delete this photo?"
msgstr "أتريد حذف هذه الصورة؟"
#: mod/photos.php:856 mod/photos.php:1056
#: mod/photos.php:854 mod/photos.php:1054
msgid "Delete Photo"
msgstr "احذف الصورة"
#: mod/photos.php:954
#: mod/photos.php:952
msgid "View photo"
msgstr "اعرض الصورة"
#: mod/photos.php:956
#: mod/photos.php:954
msgid "Edit photo"
msgstr "عدّل الصورة"
#: mod/photos.php:957
#: mod/photos.php:955
msgid "Delete photo"
msgstr "احذف الصورة"